/**
 * FAQ Section Styles
 */

.faq-section {
    padding: 60px 0;
    background-color: #f7f9fc;
}

.faq-section .container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}

.faq-section .section-title {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: #222;
}

.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 16px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    background-color: #fff;
    overflow: hidden;
}

.faq-question {
    position: relative;
    padding: 20px 60px 20px 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #f5f5f5;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    font-family: var(--font-body);
    line-height: 1.6;
}

.faq-icon {
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
}

.faq-icon:before,
.faq-icon:after {
    content: '';
    position: absolute;
    background-color: #555;
    transition: transform 0.3s ease;
}

.faq-icon:before {
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    margin-top: -1px;
}

.faq-icon:after {
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    margin-left: -1px;
}

.faq-item.active .faq-icon:after {
    transform: rotate(90deg);
}

.faq-answer {
    display: none;
    padding: 0 24px 20px;
    color: #555;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-answer p {
    margin: 0 0 12px;
}

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

/* FAQ CTA Button */
.faq-cta {
    text-align: center;
    margin-top: 40px;
}

.faq-cta .start-button {
    display: inline-block;
    background-color: #ff6b00;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 0, 0.3);
    text-transform: uppercase;
}

.faq-cta .start-button:hover {
    background-color: #e05d00;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 6px 18px rgba(255, 107, 0, 0.4);
}

.faq-cta .start-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(255, 107, 0, 0.3);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .faq-section {
        padding: 40px 0;
    }
    
    .faq-section .section-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .faq-question h3 {
        font-size: 1.1rem;
    }    

    .faq-question {
        padding: 16px 50px 16px 16px;
    }
    
    .faq-icon {
        right: 16px;
    }
    
    .faq-answer {
        padding: 0 16px 16px;
    }
    
    .faq-cta .start-button {
        font-size: 1.3rem;
        padding: 14px 28px;
        width: 100%;
        max-width: 300px;
    }
} 