/* FAQ Section */
.faq-section {
    background: #F7F7F7;
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: rgba(99, 171, 69, 0.05);
    border-radius: 50%;
    z-index: 0;
}

.faq-section .container {
    position: relative;
    z-index: 1;
}

.faq-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* FAQ Item */
.faq-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #E1E4E5;
}

.faq-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-color: #63AB45;
}

/* FAQ Question */
.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
    background: white;
}

.faq-question:hover {
    background: #F7F7F7;
}

.faq-question h4 {
    font-size: 18px;
    font-weight: 600;
    color: #0A1F24;
    margin: 0;
    flex: 1;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.faq-question:hover h4 {
    color: #63AB45;
}

.faq-question i {
    font-size: 16px;
    color: #63AB45;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-question[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.faq-question[aria-expanded="true"] {
    background: linear-gradient(135deg, rgba(99, 171, 69, 0.05) 0%, rgba(17, 61, 72, 0.05) 100%);
    border-bottom: 2px solid #63AB45;
}

.faq-question[aria-expanded="true"] h4 {
    color: #63AB45;
    font-weight: 700;
}

/* FAQ Answer */
.faq-answer {
    transition: all 0.3s ease;
}

.faq-content {
    padding: 0 30px 25px 30px;
    color: #687179;
    font-size: 15px;
    line-height: 1.8;
}

.faq-content p {
    margin-bottom: 15px;
    color: #687179;
}

.faq-content p:last-child {
    margin-bottom: 0;
}

.faq-content strong {
    color: #0A1F24;
    font-weight: 700;
}

.faq-content a {
    color: #63AB45;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.faq-content a:hover {
    color: #113D48;
    text-decoration: underline;
}

.faq-content sup {
    font-size: 12px;
    vertical-align: super;
}

/* Active State Animation */
.faq-item.active {
    border-color: #63AB45;
}

.faq-item.active .faq-question {
    background: linear-gradient(135deg, rgba(99, 171, 69, 0.05) 0%, rgba(17, 61, 72, 0.05) 100%);
}

/* Responsive Design */
@media (max-width: 992px) {
    .faq-question {
        padding: 20px 25px;
    }

    .faq-question h4 {
        font-size: 16px;
    }

    .faq-content {
        padding: 0 25px 20px 25px;
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .faq-column {
        gap: 15px;
    }

    .faq-question {
        padding: 18px 20px;
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .faq-question h4 {
        font-size: 15px;
    }

    .faq-question i {
        position: absolute;
        right: 20px;
        top: 20px;
    }

    .faq-content {
        padding: 0 20px 18px 20px;
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .faq-question {
        padding: 15px 18px;
    }

    .faq-question h4 {
        font-size: 14px;
        padding-right: 30px;
    }

    .faq-content {
        padding: 0 18px 15px 18px;
        font-size: 13px;
    }
}

