/* Existing styles remain unchanged */
/* Add these styles to the end of styles.css */

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: var(--accent-gray);
    cursor: pointer;
    transition: background 0.3s;
}

.faq-question:hover {
    background: #e0e0e0;
}

.faq-question h4 {
    font-family: 'Montserrat', 'Poppins', sans-serif;
    font-size: 1.5rem;
    margin: 0;
    color: var(--primary-blue);
}

.faq-question i {
    font-size: 1.5rem;
    color: var(--primary-blue);
}

.faq-answer {
    display: none;
    padding: 1.5rem;
    background: var(--secondary-white);
    border-radius: 0 0 8px 8px;
}

.faq-answer p {
    margin: 0;
    font-size: 1.1rem;
}

.theme-btn-2.btn-underline {
    color: var(--primary-blue);
    font-weight: bold;
    transition: color 0.3s;
}

.theme-btn-2.btn-underline:hover {
    color: #0056b3;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .faq-question h4 {
        font-size: 1.2rem;
    }
    .faq-answer p {
        font-size: 1rem;
    }
}