/* FAQ Section Styles */
.faq-section {
    width: 100%;
    position: relative;
    background: #e8e4d2;
    padding: 4rem 0;
}

.faq-container {
    margin: 0 auto;
    max-width: 800px;
    padding: 0 1.5rem;
}

/* Header */
.faq-header {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-title {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 300;
    color: #264570;
    margin: 0 0 1rem 0;
}

.faq-description {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 300;
    color: #264570;
    margin: 0;
}

/* Content */
.faq-content {
    display: flex;
    flex-direction: column;
}

.faq-item {
    border-bottom: 1px solid rgba(38, 69, 112, 0.2);
    background: rgba(255, 255, 255, 0.6);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(38, 69, 112, 0.3);
    background: rgba(255, 255, 255, 0.8);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: #264570;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: rgba(38, 69, 112, 0.8);
}

.faq-question span {
    flex: 1;
    margin-right: 1rem;
}

.faq-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: #264570;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 1.25rem 1.25rem;
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.6;
    color: rgba(38, 69, 112, 0.8);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

/* Media Query - Only one as requested */
@media (max-width: 768px) {
    .faq-section {
        padding: 3rem 0;
    }
    
    .faq-container {
        padding: 0 1rem;
    }
    
    .faq-title {
        font-size: 2rem;
    }
    
    .faq-question {
        padding: 1rem;
        font-size: 0.9rem;
    }
    
    .faq-answer p {
        padding: 0 1rem 1rem;
        font-size: 0.85rem;
    }
}
