body {
    font-family: 'Jost', sans-serif;
    background-color: #f8f9fa;
    color: #333;
}

/* Header Text Section */
.faq-header-text {
    padding: 50px 0;
    background-color: #6cace4;
    color: white;
    text-align: center;
    border-radius: 8px;
    margin-bottom: 30px;
}

.faq-header-text h1 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.faq-header-text h2 {
    font-size: 1.5rem;
    font-weight: 400;
}

/* Feature Sections */
.faq-feature-section {
    padding: 30px 0;
    background-color: white;
}

.faq-feature-section.alternate {
    background-color: #f1f8fc;
}

.feature-title {
    font-size: 1.75rem;
    color: #6cace4;
    font-weight: bold;
    margin-bottom: 10px;
}

.feature-text {
    font-size: 1rem;
    line-height: 1.6;
}

/* FAQ List Section */
.faq-list-section {
    padding: 30px 0;
}

.faq-item {
    background-color: white;
    padding: 15px 20px;
    margin-bottom: 15px;
    border-left: 4px solid #6cace4;
    border-radius: 5px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.faq-question {
    font-weight: 600;
    color: #6cace4;
}

.faq-answer {
    margin-top: 5px;
    color: #555;
    line-height: 1.5;
}

/* Links */
a {
    color: #6cace4;
    text-decoration: none;
    font-weight: 600;
}

a:hover {
    text-decoration: underline;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .faq-header-text {
        padding: 30px 15px;
        margin-bottom: 20px;
    }
    
    .faq-header-text h1 {
        font-size: 1.75rem;
    }
    
    .faq-header-text h2 {
        font-size: 1.1rem;
    }
    
    .faq-feature-section {
        padding: 20px 0;
    }
    
    .feature-title {
        font-size: 1.4rem;
    }
    
    .feature-text {
        font-size: 0.95rem;
    }
    
    .faq-list-section {
        padding: 20px 0;
    }
    
    .faq-item {
        padding: 12px 15px;
        margin-bottom: 12px;
    }
    
    .faq-question {
        font-size: 0.95rem;
    }
    
    .faq-answer {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .faq-header-text {
        padding: 20px 10px;
    }
    
    .faq-header-text h1 {
        font-size: 1.5rem;
    }
    
    .faq-header-text h2 {
        font-size: 1rem;
    }
    
    .feature-title {
        font-size: 1.2rem;
    }
    
    .faq-item {
        padding: 10px 12px;
    }
}
