/* FAQ Section - Based on Figma Design */
.faq-section {
    background: #f8f8f8;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 80px;
    align-items: center;
    justify-content: center;
    padding: 112px 64px;
    position: relative;
    width: 100%;
}

.faq-container {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0;
    position: relative;
    flex-shrink: 0;
    max-width: 1200px;
    width: 100%;
}

.faq-title-wrapper {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    gap: 32px;
    height: 116px;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 0;
    position: relative;
    flex-shrink: 0;
    width: 100%;
}

.faq-title {
    font-family: 'Epilogue', sans-serif;
    font-weight: 500;
    font-size: 40px;
    line-height: 1.15;
    position: relative;
    flex-grow: 1;
    color: #061c3d;
    text-align: center;
    margin: 0;
}

.faq-accordion {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 0;
    position: relative;
    flex-shrink: 0;
    width: 858px;
    max-width: 100%;
}

.faq-accordion-item {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 0;
    position: relative;
    flex-shrink: 0;
    width: 100%;
}

.faq-divider {
    background: #a6a6a6;
    height: 1px;
    position: relative;
    flex-shrink: 0;
    width: 100%;
    border: 1px solid #a6a6a6;
}

.faq-item-title {
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    gap: 12px;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    padding: 20px 0;
    position: relative;
    flex-shrink: 0;
    width: 100%;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-item-title:hover {
    background-color: rgba(22, 73, 255, 0.05);
}

.faq-question-text {
    font-family: 'Epilogue', sans-serif;
    font-weight: 500;
    font-size: 24px;
    line-height: 1.15;
    position: relative;
    flex-grow: 1;
    color: #061c3d;
    text-align: left;
}

.faq-icon {
    position: relative;
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    transition: transform 0.3s ease;
}

.faq-icon.active {
    transform: rotate(45deg);
}

.faq-icon img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.faq-answer {
    box-sizing: border-box;
    padding: 0 0 20px 0;
    position: relative;
    flex-shrink: 0;
    width: 100%;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-answer p {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.5;
    color: #6a778b;
    margin: 0;
    padding-right: 44px;
}

.faq-answer.active {
    display: block !important;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .faq-section {
        padding: 80px 32px;
    }
    
    .faq-accordion {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .faq-section {
        padding: 60px 20px;
        gap: 60px;
    }
    
    .faq-title {
        font-size: 28px;
    }
    
    .faq-question-text {
        font-size: 18px;
        line-height: 1.3;
    }
    
    .faq-answer p {
        font-size: 14px;
        padding-right: 0;
    }
    
    .faq-icon {
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 480px) {
    .faq-title {
        font-size: 24px;
    }
    
    .faq-question-text {
        font-size: 16px;
    }
    
    .faq-item-title {
        padding: 16px 0;
    }
}