.faqs .header {
    background: linear-gradient(135deg, #0066cc, #004499);
    color: white;
    padding: 40px 0;
    text-align: center;
    margin-bottom: 40px;
    border-radius: 10px;
}

.faqs .header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: 700;
	color:#fff;
}

.seabim-benefits {
    background: #e8f4fd;
    border: 2px solid #0066cc;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 40px;
    text-align: center;
}

.seabim-benefits h2 {
    color: #0066cc;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.benefits-grid {
    display: grid
;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.benefit-item {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.seabim-benefits h2 {
    color: #0066cc;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.benefit-item h3 {
    color: #0066cc;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.toc {
    background: white;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.toc h2 {
    color: #0066cc;
    margin-bottom: 15px;
}
.toc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
}
.toc-item {
    background: #f8f9fa;
    padding: 10px;
    border-radius: 5px;
    border-left: 3px solid #0066cc;
}
.toc-item a {
    color: #0066cc;
    text-decoration: none;
    display: flex;
    justify-content: space-between;
}

.faq-section {
    background: white;
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.faq-section h2 {
    background: #0066cc;
    color: white;
    padding: 15px 20px;
    margin: 0;
}
.accordion-item {
    border-bottom: 1px solid #eee;
}

.accordion-header
 {
    background: #f8f9fa;
    padding: 15px 20px;
    cursor: pointer;
    border: none;
    width: 100%;
    text-align: left;
    font-weight: 600;
    color: #0066cc;
    display: flex;
    justify-content: space-between;
    transition: background 0.3s;
}
.accordion-header.active {
    background: #0066cc;
    color: white;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.accordion-body {
    padding: 15px 20px;
    color: #555;
}

.accordion-content.active {
    max-height: 800px;
}
