/* FAQ & CTA Section Styles */
.faq-cta-section {
    padding: 64px;
    background-color: #f4f9fd;
    display: flex;
    justify-content: center;
    border-top: 1px solid #e1e8ed;
}

.faq-container {
    max-width: 1200px;
    width: 100%;
    display: flex;
    gap: 64px;
}

.faq-left {
    flex: 1;
}

.faq-left h2 {
    font-size: 32px;
    font-weight: 700;
    color: #005E9E;
    margin-bottom: 12px;
}

.faq-left p {
    color: #4A4A4A;
    font-size: 16px;
    margin-bottom: 32px;
}

/* CTA Form in FAQ Section */
.cta-form-container {
    background-color: #ffffff;
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 50, 100, 0.08);
    border: 1px solid #e1e8ed;
}

.cta-form-container h3 {
    font-size: 20px;
    font-weight: 700;
    color: #022C49;
    margin-bottom: 8px;
}

.cta-form-container p {
    font-size: 14px;
    color: #666;
    margin-bottom: 24px;
}

.cta-inline-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cta-inline-form input {
    padding: 12px 16px;
    border: 1px solid #d1d9e0;
    border-radius: 4px;
    font-size: 14px;
    width: 100%;
    outline: none;
    transition: border-color 0.2s;
}

.cta-inline-form input:focus {
    border-color: #FF6600;
}

.cta-submit-btn {
    background-color: #FF6600;
    color: #ffffff;
    padding: 12px;
    border: none;
    border-radius: 4px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.cta-submit-btn:hover {
    background-color: #e65c00;
}

/* FAQ Accordion */
.faq-right {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background-color: transparent;
    border-bottom: 1px solid #e1e8ed;
    overflow: hidden;
}

.faq-question {
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
    gap: 16px;
}

.faq-question span {
    font-size: 18px;
    font-weight: 600;
    color: #022C49;
    transition: color 0.2s;
}

.faq-item.active .faq-question span {
    color: #FF6600;
}

.faq-icon {
    flex-shrink: 0;
}

.faq-icon.minus {
    display: none;
}

.faq-item.active .faq-icon.plus {
    display: none;
}

.faq-item.active .faq-icon.minus {
    display: block;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding-bottom: 24px;
    color: #4A4A4A;
    line-height: 1.6;
    font-size: 15px;
}

/* Tablet Responsive */
@media screen and (max-width: 1024px) {
    .faq-cta-section {
        padding: 48px 32px;
    }

    .faq-container {
        gap: 40px;
    }

    .faq-left h2 {
        font-size: 28px;
    }
}

/* Mobile Responsive */
@media screen and (max-width: 768px) {
    .faq-cta-section {
        padding: 40px 24px;
    }

    .faq-container {
        flex-direction: column;
        gap: 48px;
    }

    .faq-left {
        text-align: center;
    }

    .faq-left h2 {
        font-size: 24px;
    }

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

    .cta-form-container {
        text-align: left;
    }
}
