/* style/promotions-deposit-match-offer.css */
.page-promotions-deposit-match-offer {
    font-family: 'Arial', sans-serif;
    color: #0A2E36; /* Dark text for contrast */
    line-height: 1.6;
}

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

.page-promotions-deposit-match-offer__hero {
    background-color: #0A2E36; /* Main brand color for hero background */
    color: #FFFFFF; /* White text on dark background */
    padding: 80px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 40px;
    flex-wrap: wrap;
}

.page-promotions-deposit-match-offer__hero-content {
    max-width: 600px;
    z-index: 1;
}

.page-promotions-deposit-match-offer__title {
    font-size: 3.2em;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
    color: #E0B34C; /* Accent color for title */
}

.page-promotions-deposit-match-offer__subtitle {
    font-size: 1.5em;
    margin-bottom: 30px;
    color: #F0F0F0;
}

.page-promotions-deposit-match-offer__hero-image-wrapper {
    flex-shrink: 0;
    width: 400px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-promotions-deposit-match-offer__hero-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions-deposit-match-offer__cta-button {
    display: inline-block;
    background-color: #E0B34C; /* Accent color for CTA */
    color: #0A2E36; /* Dark text on accent background */
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-promotions-deposit-match-offer__cta-button:hover {
    background-color: #f0c56a; /* Slightly lighter accent on hover */
    transform: translateY(-3px);
}

.page-promotions-deposit-match-offer__cta-button--secondary {
    background-color: #0A2E36;
    color: #E0B34C;
    border: 2px solid #E0B34C;
}

.page-promotions-deposit-match-offer__cta-button--secondary:hover {
    background-color: #1a4a55;
    color: #f0c56a;
    transform: translateY(-3px);
}

.page-promotions-deposit-match-offer__cta-button--large {
    padding: 20px 40px;
    font-size: 1.4em;
}

.page-promotions-deposit-match-offer__section {
    padding: 60px 0;
    background-color: #F8F8F8;
    border-bottom: 1px solid #EEEEEE;
}

.page-promotions-deposit-match-offer__section:nth-of-type(even) {
    background-color: #FFFFFF;
}

.page-promotions-deposit-match-offer__section-title {
    font-size: 2.5em;
    color: #0A2E36;
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-promotions-deposit-match-offer__section p {
    font-size: 1.1em;
    margin-bottom: 15px;
    color: #333333;
}

.page-promotions-deposit-match-offer__section strong {
    color: #0A2E36;
}

.page-promotions-deposit-match-offer__section .highlight {
    color: #E0B34C;
}

.page-promotions-deposit-match-offer__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-promotions-deposit-match-offer__grid-item {
    background-color: #FDFDFD;
    border: 1px solid #EEEEEE;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.page-promotions-deposit-match-offer__grid-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-promotions-deposit-match-offer__feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    object-fit: contain;
}

.page-promotions-deposit-match-offer__grid-item h3 {
    font-size: 1.5em;
    color: #E0B34C;
    margin-bottom: 15px;
}

.page-promotions-deposit-match-offer__grid-item p {
    font-size: 1em;
    color: #555555;
}

.page-promotions-deposit-match-offer__how-to-claim .page-promotions-deposit-match-offer__section-title {
    margin-bottom: 50px;
}

.page-promotions-deposit-match-offer__steps {
    list-style: none;
    padding: 0;
    counter-reset: step-counter;
}

.page-promotions-deposit-match-offer__steps li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    position: relative;
    padding-left: 70px;
}

.page-promotions-deposit-match-offer__step-number {
    counter-increment: step-counter;
    position: absolute;
    left: 0;
    top: 0;
    width: 50px;
    height: 50px;
    background-color: #E0B34C;
    color: #0A2E36;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8em;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.page-promotions-deposit-match-offer__steps h3 {
    font-size: 1.6em;
    color: #0A2E36;
    margin-top: 0;
    margin-bottom: 10px;
}

.page-promotions-deposit-match-offer__steps p {
    font-size: 1.05em;
    color: #444444;
}

.page-promotions-deposit-match-offer__inline-link {
    color: #E0B34C;
    text-decoration: underline;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-promotions-deposit-match-offer__inline-link:hover {
    color: #0A2E36;
}

.page-promotions-deposit-match-offer__tips .page-promotions-deposit-match-offer__list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-promotions-deposit-match-offer__tips .page-promotions-deposit-match-offer__list li {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    font-size: 1.1em;
    color: #333333;
}

.page-promotions-deposit-match-offer__list-icon {
    width: 30px;
    height: 30px;
    margin-right: 15px;
    flex-shrink: 0;
    object-fit: contain;
}

.page-promotions-deposit-match-offer__faq {
    background-color: #F8F8F8;
}

.page-promotions-deposit-match-offer__faq-item {
    background-color: #FFFFFF;
    border: 1px solid #EEEEEE;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.page-promotions-deposit-match-offer__faq-item h3 {
    font-size: 1.4em;
    color: #0A2E36;
    margin-top: 0;
    margin-bottom: 15px;
}

.page-promotions-deposit-match-offer__faq-item p {
    font-size: 1em;
    color: #555555;
}

.page-promotions-deposit-match-offer__cta-final {
    background-color: #0A2E36; /* Main brand color for final CTA background */
    color: #FFFFFF;
    text-align: center;
    padding: 80px 0;
}

.page-promotions-deposit-match-offer__cta-final .page-promotions-deposit-match-offer__section-title {
    color: #E0B34C;
    margin-bottom: 30px;
}

.page-promotions-deposit-match-offer__cta-final p {
    font-size: 1.3em;
    margin-bottom: 40px;
    color: #F0F0F0;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-promotions-deposit-match-offer__hero {
        flex-direction: column;
        padding: 60px 20px;
    }

    .page-promotions-deposit-match-offer__hero-image-wrapper {
        width: 100%;
        height: auto;
        margin-top: 30px;
    }

    .page-promotions-deposit-match-offer__title {
        font-size: 2.5em;
    }

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

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

    .page-promotions-deposit-match-offer__grid {
        grid-template-columns: 1fr;
    }
}

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

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

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

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

    .page-promotions-deposit-match-offer__cta-button--large {
        padding: 15px 30px;
        font-size: 1.2em;
    }

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

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

    .page-promotions-deposit-match-offer__steps li {
        padding-left: 60px;
    }

    .page-promotions-deposit-match-offer__step-number {
        width: 40px;
        height: 40px;
        font-size: 1.5em;
    }

    .page-promotions-deposit-match-offer__steps h3 {
        font-size: 1.4em;
    }

    .page-promotions-deposit-match-offer__steps p,
    .page-promotions-deposit-match-offer__tips .page-promotions-deposit-match-offer__list li,
    .page-promotions-deposit-match-offer__faq-item p {
        font-size: 0.95em;
    }
}

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

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

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

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

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

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

    .page-promotions-deposit-match-offer__steps h3 {
        font-size: 1.2em;
    }
}