/* style/promotions-deposit-match-offer.css */

/* Base Styles for the specific page */
.page-promotions-deposit-match-offer {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f9fa;
}

.page-promotions-deposit-match-offer__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.page-promotions-deposit-match-offer__hero {
    background: linear-gradient(135deg, #007bff 0%, #28a745 100%); /* Primary to secondary color gradient */
    color: #fff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 450px;
}

.page-promotions-deposit-match-offer__hero-title {
    font-size: 3.2em;
    margin-bottom: 15px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    color: #fff; /* Ensure high contrast */
}

.page-promotions-deposit-match-offer__hero-subtitle {
    font-size: 1.4em;
    margin-bottom: 30px;
    max-width: 800px;
    color: #e0e0e0; /* Slightly lighter for contrast on dark gradient */
}

.page-promotions-deposit-match-offer__cta-button {
    display: inline-block;
    background-color: #ff8400; /* Complementary color for strong CTA */
    color: #fff;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border: none;
    cursor: pointer;
}

.page-promotions-deposit-match-offer__cta-button:hover {
    background-color: #e67300;
    transform: translateY(-2px);
}

.page-promotions-deposit-match-offer__hero-image {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    z-index: 0;
}

.page-promotions-deposit-match-offer__hero .page-promotions-deposit-match-offer__container {
    position: relative;
    z-index: 1;
}

/* General Section Styling */
.page-promotions-deposit-match-offer__section {
    padding: 60px 0;
    background-color: #fff;
    border-bottom: 1px solid #eee;
}

.page-promotions-deposit-match-offer__section--alt-bg {
    background-color: #f0f8ff; /* Light blue tint for contrast */
}

.page-promotions-deposit-match-offer__section--faq-bg {
    background-color: #e6f7ff; /* Even lighter blue for FAQ */
}

.page-promotions-deposit-match-offer__section-title {
    font-size: 2.5em;
    color: #0056b3; /* Darker primary for headings */
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-promotions-deposit-match-offer__subsection-title {
    font-size: 1.8em;
    color: #007bff;
    margin-top: 30px;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-promotions-deposit-match-offer__text-block {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #444; /* Good contrast on light backgrounds */
}

.page-promotions-deposit-match-offer__list {
    list-style-type: disc;
    margin-left: 25px;
    margin-bottom: 20px;
    color: #444;
}

.page-promotions-deposit-match-offer__list li {
    margin-bottom: 10px;
    font-size: 1.05em;
}

.page-promotions-deposit-match-offer__list li strong {
    color: #007bff;
}

.page-promotions-deposit-match-offer__numbered-list {
    list-style-type: decimal;
    margin-left: 25px;
    margin-bottom: 20px;
    color: #444;
}

.page-promotions-deposit-match-offer__numbered-list li {
    margin-bottom: 10px;
    font-size: 1.05em;
}

.page-promotions-deposit-match-offer__secondary-button {
    display: inline-block;
    background-color: #28a745; /* Secondary color for action */
    color: #fff;
    padding: 10px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: bold;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
    margin-top: 20px;
}

.page-promotions-deposit-match-offer__secondary-button:hover {
    background-color: #1e7e34;
}

/* Steps Grid */
.page-promotions-deposit-match-offer__steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-promotions-deposit-match-offer__step-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-promotions-deposit-match-offer__step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-promotions-deposit-match-offer__step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.page-promotions-deposit-match-offer__step-title {
    font-size: 1.6em;
    color: #007bff;
    margin-bottom: 15px;
}

.page-promotions-deposit-match-offer__step-description {
    font-size: 1em;
    color: #555;
    flex-grow: 1;
}

.page-promotions-deposit-match-offer__step-button {
    display: inline-block;
    background-color: #007bff; /* Primary color for step buttons */
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1em;
    font-weight: bold;
    margin-top: 25px;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-promotions-deposit-match-offer__step-button:hover {
    background-color: #0056b3;
}

/* Features Grid */
.page-promotions-deposit-match-offer__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-promotions-deposit-match-offer__feature-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions-deposit-match-offer__feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.page-promotions-deposit-match-offer__feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.1));
}

.page-promotions-deposit-match-offer__feature-title {
    font-size: 1.5em;
    color: #28a745; /* Secondary color for feature titles */
    margin-bottom: 15px;
}

.page-promotions-deposit-match-offer__feature-description {
    font-size: 1em;
    color: #666;
}

/* FAQ Accordion */
.page-promotions-deposit-match-offer__faq-accordion {
    margin-top: 40px;
}

.page-promotions-deposit-match-offer__faq-item {
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-promotions-deposit-match-offer__faq-question {
    font-size: 1.2em;
    color: #007bff;
    padding: 20px 25px;
    margin: 0;
    cursor: pointer;
    background-color: #f9f9f9;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.page-promotions-deposit-match-offer__faq-question::after {
    content: '+';
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

.page-promotions-deposit-match-offer__faq-question.active {
    background-color: #eaf6ff;
    color: #0056b3;
}

.page-promotions-deposit-match-offer__faq-question.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-promotions-deposit-match-offer__faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
    background-color: #fff;
}

.page-promotions-deposit-match-offer__faq-answer p {
    padding-bottom: 20px;
    margin: 0;
    color: #555;
}

/* Final CTA Section */
.page-promotions-deposit-match-offer__cta-final {
    background: linear-gradient(135deg, #28a745 0%, #007bff 100%); /* Reverse gradient */
    color: #fff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-promotions-deposit-match-offer__cta-final-title {
    font-size: 2.8em;
    margin-bottom: 15px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    color: #fff;
}

.page-promotions-deposit-match-offer__cta-final-subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 700px;
    color: #e0e0e0;
}

.page-promotions-deposit-match-offer__cta-final-image {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
    z-index: 0;
}

.page-promotions-deposit-match-offer__cta-final .page-promotions-deposit-match-offer__container {
    position: relative;
    z-index: 1;
}

/* Highlight text within titles */
.page-promotions-deposit-match-offer .highlight-text {
    color: #ff8400; /* Complementary color for emphasis */
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-promotions-deposit-match-offer__hero-title {
        font-size: 2.5em;
    }

    .page-promotions-deposit-match-offer__hero-subtitle {
        font-size: 1.2em;
    }

    .page-promotions-deposit-match-offer__section-title {
        font-size: 2em;
    }

    .page-promotions-deposit-match-offer__subsection-title {
        font-size: 1.6em;
    }

    .page-promotions-deposit-match-offer__cta-final-title {
        font-size: 2.2em;
    }

    .page-promotions-deposit-match-offer__cta-final-subtitle {
        font-size: 1.1em;
    }
}

@media (max-width: 768px) {
    .page-promotions-deposit-match-offer__hero {
        padding: 60px 0;
    }

    .page-promotions-deposit-match-offer__hero-title {
        font-size: 2em;
    }

    .page-promotions-deposit-match-offer__hero-subtitle {
        font-size: 1em;
    }

    .page-promotions-deposit-match-offer__cta-button {
        padding: 12px 25px;
        font-size: 1.1em;
    }

    .page-promotions-deposit-match-offer__section {
        padding: 40px 0;
    }

    .page-promotions-deposit-match-offer__section-title {
        font-size: 1.8em;
    }

    .page-promotions-deposit-match-offer__subsection-title {
        font-size: 1.4em;
    }

    .page-promotions-deposit-match-offer__text-block, .page-promotions-deposit-match-offer__list li, .page-promotions-deposit-match-offer__numbered-list li {
        font-size: 0.95em;
    }

    .page-promotions-deposit-match-offer__steps-grid, .page-promotions-deposit-match-offer__features-grid {
        grid-template-columns: 1fr;
    }

    .page-promotions-deposit-match-offer__step-card, .page-promotions-deposit-match-offer__feature-card {
        padding: 25px;
    }

    .page-promotions-deposit-match-offer__step-title {
        font-size: 1.4em;
    }

    .page-promotions-deposit-match-offer__feature-title {
        font-size: 1.3em;
    }

    .page-promotions-deposit-match-offer__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
    }

    .page-promotions-deposit-match-offer__faq-answer p {
        padding-bottom: 15px;
    }

    .page-promotions-deposit-match-offer__cta-final {
        padding: 60px 0;
    }

    .page-promotions-deposit-match-offer__cta-final-title {
        font-size: 1.8em;
    }

    .page-promotions-deposit-match-offer__cta-final-subtitle {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-promotions-deposit-match-offer__hero-title {
        font-size: 1.8em;
    }

    .page-promotions-deposit-match-offer__hero-subtitle {
        font-size: 0.9em;
    }

    .page-promotions-deposit-match-offer__cta-button {
        padding: 10px 20px;
        font-size: 1em;
    }

    .page-promotions-deposit-match-offer__section-title {
        font-size: 1.5em;
    }

    .page-promotions-deposit-match-offer__subsection-title {
        font-size: 1.2em;
    }

    .page-promotions-deposit-match-offer__faq-question {
        font-size: 1em;
        padding: 12px 15px;
    }

    .page-promotions-deposit-match-offer__cta-final-title {
        font-size: 1.6em;
    }

    .page-promotions-deposit-match-offer__cta-final-subtitle {
        font-size: 0.9em;
    }
}