/* FAQ Section Styles */
.faq-section {
    padding: 80px 0;
    background-color: #fff;
}

.faq-section .section-title h2 {
    color: #333;
    margin-bottom: 20px;
    font-weight: 600;
}

.faq-section .section-title p {
    color: #666;
    margin-bottom: 50px;
}

.faq-content .col-lg-10 {
    max-width: 90%;
}

.faq-list {
    max-width: 100%;
}

.faq-item {
    background: #fff;
    border: 2px solid #135e9e;
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    will-change: transform;
    backface-visibility: hidden;
}

.faq-item:hover {
    border-color: #135e9e;
    box-shadow: 0 2px 8px rgba(142, 68, 173, 0.1);
}

.faq-question {
    padding: 20px 60px 20px 25px;
    cursor: pointer;
    display: block;
    background: #fff;
    color: #333;
    font-weight: 500;
    font-size: 16px;
    border: none;
    width: 100%;
    text-align: left;
    position: relative;
    will-change: background-color;
}

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

.faq-question:focus {
    outline: none;
    background: #f8f9fa;
}

.faq-number {
    font-weight: 600;
    margin-right: 15px;
    font-size: 16px;
    color: #333;
}

.faq-text {
    line-height: 1.4;
    color: #333;
}

.faq-icon {
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background: #fbbf24;
    color: white;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 300;
    transition: all 0.2s ease;
    will-change: transform, background-color;
}

.faq-question[aria-expanded="true"] .faq-icon {
    background: #135e9e;
    transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
    background: #fff;
    border-top: 1px solid #eee;
    height: 0;
    overflow: hidden;
    transition: height 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: height;
}

.faq-answer.show {
    height: auto;
    min-height: 80px;
}

.faq-answer p {
    padding: 20px 25px;
    margin: 0;
    color: #555;
    line-height: 1.6;
    font-size: 15px;
}

/* Responsive Design */
@media (min-width: 1200px) {
    .faq-content .col-lg-10 {
        max-width: 95%;
    }
}

@media (max-width: 768px) {
    .faq-section {
        padding: 60px 0;
    }
    
    .faq-content .col-lg-10 {
        max-width: 100%;
    }
    
    .faq-question {
        padding: 18px 50px 18px 20px;
        font-size: 15px;
    }
    
    .faq-answer p {
        padding: 18px 20px;
        font-size: 14px;
    }
    
    .faq-number {
        font-size: 15px;
        margin-right: 10px;
    }
    
    .faq-icon {
        right: 20px;
        width: 28px;
        height: 28px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .faq-section {
        padding: 40px 0;
    }
    
    .faq-item {
        margin-bottom: 12px;
        border-radius: 8px;
    }
    
    .faq-question {
        padding: 15px 45px 15px 15px;
        font-size: 14px;
    }
    
    .faq-answer p {
        padding: 15px 15px;
        font-size: 13px;
        line-height: 1.5;
    }
    
    .faq-number {
        font-size: 14px;
        margin-right: 8px;
    }
    
    .faq-icon {
        right: 15px;
        width: 25px;
        height: 25px;
        font-size: 14px;
    }
    
    .faq-section .section-title h2 {
        font-size: 24px;
        margin-bottom: 15px;
    }
    
    .faq-section .section-title p {
        font-size: 14px;
        margin-bottom: 30px;
    }
}
