/* style/index-exclusive-offer-analysis.css */
.page-index-exclusive-offer-analysis {
    font-family: 'Arial', sans-serif;
    color: #0A2463; /* Main text color */
    line-height: 1.6;
}

.page-index-exclusive-offer-analysis__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-index-exclusive-offer-analysis__hero {
    background: linear-gradient(135deg, #0A2463 0%, #3a5c9b 100%); /* Dark blue gradient */
    color: #FFFFFF;
    padding: 100px 0;
    text-align: center;
}

.page-index-exclusive-offer-analysis__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold for emphasis */
    font-weight: bold;
}

.page-index-exclusive-offer-analysis__hero-subtitle {
    font-size: 1.3em;
    max-width: 800px;
    margin: 0 auto 40px;
}

.page-index-exclusive-offer-analysis__section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.page-index-exclusive-offer-analysis__section:nth-of-type(even) {
    background-color: #eef2f7;
}

.page-index-exclusive-offer-analysis__section-title {
    font-size: 2.5em;
    color: #0A2463;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-index-exclusive-offer-analysis__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    border-radius: 2px;
}

.page-index-exclusive-offer-analysis__section p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #333;
    text-align: justify;
}

.page-index-exclusive-offer-analysis__section p strong {
    color: #0A2463;
}

.page-index-exclusive-offer-analysis__img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-top: 30px;
}

.page-index-exclusive-offer-analysis__img--centered {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.page-index-exclusive-offer-analysis__list-ordered,
.page-index-exclusive-offer-analysis__list-unordered {
    margin: 20px 0;
    padding-left: 25px;
}

.page-index-exclusive-offer-analysis__list-ordered li,
.page-index-exclusive-offer-analysis__list-unordered li {
    font-size: 1.1em;
    margin-bottom: 10px;
    color: #333;
}

.page-index-exclusive-offer-analysis__list-ordered li strong {
    color: #0A2463;
}

.page-index-exclusive-offer-analysis__list-unordered li::before {
    content: '•';
    color: #FFD700;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
}

.page-index-exclusive-offer-analysis__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-index-exclusive-offer-analysis__btn--primary {
    background-color: #FFD700; /* Gold button */
    color: #0A2463; /* Dark blue text */
    border: 2px solid #FFD700;
}

.page-index-exclusive-offer-analysis__btn--primary:hover {
    background-color: #e6c200;
    border-color: #e6c200;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-index-exclusive-offer-analysis__btn--secondary {
    background-color: #0A2463; /* Dark blue button */
    color: #FFD700; /* Gold text */
    border: 2px solid #0A2463;
    margin-left: 20px;
}

.page-index-exclusive-offer-analysis__btn--secondary:hover {
    background-color: #071b4a;
    border-color: #071b4a;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-index-exclusive-offer-analysis__btn--large {
    padding: 18px 40px;
    font-size: 1.3em;
}

.page-index-exclusive-offer-analysis__cta-group {
    text-align: center;
    margin-top: 40px;
}

.page-index-exclusive-offer-analysis__faq-item {
    background-color: #FFFFFF;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.page-index-exclusive-offer-analysis__faq-question {
    font-size: 1.4em;
    color: #0A2463;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-index-exclusive-offer-analysis__faq-answer {
    font-size: 1.1em;
    color: #555;
}

.page-index-exclusive-offer-analysis__section--call-to-action {
    background: linear-gradient(90deg, #0A2463 0%, #000000 100%);
    color: #FFFFFF;
    text-align: center;
    padding: 80px 0;
}

.page-index-exclusive-offer-analysis__section--call-to-action .page-index-exclusive-offer-analysis__section-title {
    color: #FFD700;
}

.page-index-exclusive-offer-analysis__section--call-to-action p {
    color: #fff;
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 1.2em;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-index-exclusive-offer-analysis__hero-title {
        font-size: 2.5em;
    }

    .page-index-exclusive-offer-analysis__hero-subtitle {
        font-size: 1em;
    }

    .page-index-exclusive-offer-analysis__section-title {
        font-size: 2em;
    }

    .page-index-exclusive-offer-analysis__section p,
    .page-index-exclusive-offer-analysis__list-ordered li,
    .page-index-exclusive-offer-analysis__list-unordered li,
    .page-index-exclusive-offer-analysis__faq-answer {
        font-size: 1em;
    }

    .page-index-exclusive-offer-analysis__btn {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-index-exclusive-offer-analysis__btn--large {
        padding: 15px 30px;
        font-size: 1.1em;
    }

    .page-index-exclusive-offer-analysis__btn--secondary {
        margin-left: 0;
        margin-top: 15px;
    }

    .page-index-exclusive-offer-analysis__cta-group {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .page-index-exclusive-offer-analysis__faq-question {
        font-size: 1.2em;
    }
}

@media (max-width: 480px) {
    .page-index-exclusive-offer-analysis__hero-title {
        font-size: 2em;
    }

    .page-index-exclusive-offer-analysis__section-title {
        font-size: 1.8em;
    }

    .page-index-exclusive-offer-analysis__hero {
        padding: 60px 0;
    }

    .page-index-exclusive-offer-analysis__section {
        padding: 40px 0;
    }
}