/* style/promotions-deposit-match-offer.css */
.page-promotions-deposit-match-offer {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
}

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

.page-promotions-deposit-match-offer__hero {
    background: linear-gradient(135deg, #1A237E, #2C3E50); /* Dark blue to a slightly lighter dark blue */
    color: #FFFFFF;
    padding: 80px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

@media (min-width: 768px) {
    .page-promotions-deposit-match-offer__hero {
        flex-direction: row;
        text-align: left;
        padding: 100px 20px;
    }
    .page-promotions-deposit-match-offer__hero-content {
        flex: 1;
        padding-right: 40px;
    }
    .page-promotions-deposit-match-offer__hero-image {
        flex: 1;
    }
}

.page-promotions-deposit-match-offer__hero h1 {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #FFB300; /* Amber gold for title */
    line-height: 1.2;
}

.page-promotions-deposit-match-offer__hero p {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #E0E0E0;
}

.page-promotions-deposit-match-offer__hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

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

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

.page-promotions-deposit-match-offer h2 {
    font-size: 2.2em;
    color: #1A237E; /* Dark blue for headings */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 10px;
}

.page-promotions-deposit-match-offer h2::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFB300;
    border-radius: 2px;
}

.page-promotions-deposit-match-offer h3 {
    font-size: 1.6em;
    color: #1A237E;
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-promotions-deposit-match-offer p {
    margin-bottom: 15px;
    color: #424242; /* Slightly lighter dark grey for body text */
}

.page-promotions-deposit-match-offer ul,
.page-promotions-deposit-match-offer ol {
    margin-bottom: 20px;
    padding-left: 25px;
}

.page-promotions-deposit-match-offer ul li,
.page-promotions-deposit-match-offer ol li {
    margin-bottom: 10px;
    color: #424242;
}

.page-promotions-deposit-match-offer strong {
    color: #1A237E;
}

.page-promotions-deposit-match-offer__cta-button {
    display: inline-block;
    background-color: #FFB300; /* Amber gold for CTA button */
    color: #1A237E; /* Dark blue text on amber gold button */
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-promotions-deposit-match-offer__cta-button:hover {
    background-color: #FFA000; /* Slightly darker amber on hover */
    transform: translateY(-2px);
}

.page-promotions-deposit-match-offer__cta-button--secondary {
    background-color: #1A237E;
    color: #FFB300;
    border: 2px solid #FFB300;
}

.page-promotions-deposit-match-offer__cta-button--secondary:hover {
    background-color: #2C3E50;
    color: #FFD54F;
}

.page-promotions-deposit-match-offer__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 30px;
    margin-bottom: 40px;
}

@media (min-width: 768px) {
    .page-promotions-deposit-match-offer__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .page-promotions-deposit-match-offer__grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.page-promotions-deposit-match-offer__grid-item {
    background-color: #FFFFFF;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.page-promotions-deposit-match-offer__grid-item:hover {
    transform: translateY(-5px);
}

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

.page-promotions-deposit-match-offer__steps {
    list-style: none;
    counter-reset: step-counter;
    padding: 0;
    margin-top: 30px;
    margin-bottom: 40px;
}

.page-promotions-deposit-match-offer__steps li {
    counter-increment: step-counter;
    margin-bottom: 20px;
    padding-left: 60px;
    position: relative;
    font-size: 1.1em;
    color: #424242;
}

.page-promotions-deposit-match-offer__steps li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    background-color: #FFB300;
    color: #1A237E;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2em;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-promotions-deposit-match-offer__faq {
    margin-top: 40px;
    border-top: 1px solid #EEE;
}

.page-promotions-deposit-match-offer__faq-item {
    border-bottom: 1px solid #EEE;
    padding: 20px 0;
}

.page-promotions-deposit-match-offer__faq-item h3 {
    margin-top: 0;
    margin-bottom: 10px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #1A237E;
    font-size: 1.3em;
}

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

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

.page-promotions-deposit-match-offer__faq-item p {
    display: none;
    padding-top: 10px;
    color: #555;
}

.page-promotions-deposit-match-offer__faq-item p.active {
    display: block;
}

.page-promotions-deposit-match-offer img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 40px auto;
    border-radius: 10px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.page-promotions-deposit-match-offer__cta-final {
    background-color: #1A237E; /* Dark blue background for final CTA */
    color: #FFFFFF;
    padding: 80px 20px;
    text-align: center;
}

.page-promotions-deposit-match-offer__cta-final h2 {
    color: #FFB300;
    margin-bottom: 20px;
}

.page-promotions-deposit-match-offer__cta-final h2::after {
    background-color: #FFB300;
}

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

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-promotions-deposit-match-offer__hero {
        padding: 60px 20px;
    }
    .page-promotions-deposit-match-offer__hero h1 {
        font-size: 2em;
    }
    .page-promotions-deposit-match-offer__hero p {
        font-size: 1em;
    }
    .page-promotions-deposit-match-offer h2 {
        font-size: 1.8em;
    }
    .page-promotions-deposit-match-offer h3 {
        font-size: 1.3em;
    }
    .page-promotions-deposit-match-offer__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-promotions-deposit-match-offer__grid-item {
        padding: 20px;
    }
    .page-promotions-deposit-match-offer__steps li {
        font-size: 1em;
        padding-left: 50px;
    }
    .page-promotions-deposit-match-offer__steps li::before {
        width: 35px;
        height: 35px;
        font-size: 1.1em;
    }
    .page-promotions-deposit-match-offer__faq-item h3 {
        font-size: 1.1em;
    }
    .page-promotions-deposit-match-offer__cta-final {
        padding: 60px 20px;
    }
    .page-promotions-deposit-match-offer__cta-final h2 {
        font-size: 1.8em;
    }
}