/* Forecast CTA Section Styles */
.forecast-cta-section {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
}

.forecast-wrapper {
    background-color: var(--zmq-bone-tinted, #ECE7DD);
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.forecast-bg-left {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: auto;
    max-width: 50%;
    object-fit: cover;
    z-index: 1;
}

.forecast-bg-right {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: auto;
    max-width: 50%;
    object-fit: cover;
    z-index: 1;
}

.forecast-content {
    z-index: 2;
}

.forecast-cta-title {
    font-size: 3.5rem;
    font-weight: 500;
    color: #111827;
    margin-bottom: 20px;
    line-height: 1.2;
}

.forecast-cta-subtitle {
    font-size: 1rem;
    color: #6B7280;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.forecast-btn-primary {
    background: #111827;
    color: #fff;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none;
    transition: 0.3s;
    display: inline-block;
}

.forecast-btn-primary:hover {
    background: #000;
    color: #fff;
}

.forecast-btn-secondary {
    background: var(--zmq-bone-tinted, #ECE7DD);
    color: var(--zmq-navy, #1E3A5F);
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none;
    transition: 0.3s;
    border: 1px solid #D1D5DB;
}

.forecast-btn-secondary:hover {
    background: var(--zmq-slate-200, #D9D3C6);
}

/* Responsive adjustments for forecast CTA */
@media (max-width: 767px) {
    .forecast-cta-title {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }

    .forecast-cta-subtitle {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }

    .forecast-wrapper {
        min-height: 300px;
    }

    .forecast-btn-primary,
    .forecast-btn-secondary {
        padding: 10px 16px;
        font-size: 0.9rem;
    }

    .forecast-bg-left,
    .forecast-bg-right {
        max-width: 100%;
        opacity: 0.3;
    }
}

@media (max-width: 600px) {
    .forecast-bg-left {
        top: 84px !important;
    }

    .forecast-bg-right {
        top: 84px !important;
    }
}

/* FAQ Section Styles */
.faq-section {
    padding: 4rem 0;
    background: white;
}

.faq-subsection {
    background: var(--zmq-bone-tinted, #ECE7DD);
    padding: 2rem;
    border-radius: 30px;
}

.faq-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.faq-subtitle {
    text-align: center;
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.faq-item {
    background: white;
    border: 2px solid #f1f5f9;
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--zmq-navy, #1E3A5F);
}

.faq-item:active {
    border-color: var(--zmq-navy, #1E3A5F);
}

.faq-question {
    padding: 1.5rem;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-dark);
    cursor: pointer;
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
    line-height: 1.6;
    display: none;
}

.faq-answer.show {
    display: block;
}

.faq-icon {
    transition: transform 0.3s ease;
    color: var(--zmq-navy, #1E3A5F);
}

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

/* FAQ Mobile Responsiveness */
@media (max-width: 767px) {
    .faq-title {
        font-size: 2rem;
    }

    .faq-subtitle {
        font-size: 0.9rem;
    }

    .faq-item {
        margin-bottom: 0.75rem;
    }

    .faq-question {
        padding: 1rem;
        font-size: 0.95rem;
    }

    .faq-answer {
        padding: 0 1rem 1rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .faq-title {
        font-weight: 400 !important;
    }

    .faq-subtitle {
        font-size: 1.14rem !important;
    }
}
