/* style/promotions-deposit-match-offer.css */
.page-promotions-deposit-match-offer {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0; /* Light grey for general text on dark background */
    background-color: #1A2A3A; /* Auxiliary color as main background */
}

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

.page-promotions-deposit-match-offer__hero {
    background: linear-gradient(135deg, #FFD700, #1A2A3A); /* Gold to dark blue gradient */
    padding: 100px 0;
    text-align: center;
    color: #1A2A3A; /* Dark text on lighter gradient part */
}

.page-promotions-deposit-match-offer__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #1A2A3A; /* Dark text on gold */
    line-height: 1.2;
}

.page-promotions-deposit-match-offer__hero-title .highlight {
    color: #8B4513; /* Darker shade for contrast on gold, like bronze */
}

.page-promotions-deposit-match-offer__hero-subtitle {
    font-size: 1.4em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #333;
}

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

.page-promotions-deposit-match-offer__section--intro,
.page-promotions-deposit-match-offer__section--terms {
    background-color: #2c3e50; /* Slightly lighter dark blue for content sections */
    color: #E0E0E0;
}

.page-promotions-deposit-match-offer__section-title {
    font-size: 2.5em;
    color: #FFD700; /* Gold for main titles */
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 15px;
}

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

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

.page-promotions-deposit-match-offer__content-wrapper {
    display: flex;
    gap: 40px;
    align-items: center;
}

.page-promotions-deposit-match-offer__content-wrapper--reversed {
    flex-direction: row-reverse;
}

.page-promotions-deposit-match-offer__text-content {
    flex: 1;
    font-size: 1.1em;
    line-height: 1.8;
}

.page-promotions-deposit-match-offer__text-content p {
    margin-bottom: 20px;
}

.page-promotions-deposit-match-offer__image-wrapper {
    flex: 1;
    text-align: center;
}

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

.page-promotions-deposit-match-offer__sub-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-promotions-deposit-match-offer__btn {
    display: inline-block;
    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;
    margin-top: 20px;
    cursor: pointer;
}

.page-promotions-deposit-match-offer__btn--primary {
    background-color: #FFD700;
    color: #1A2A3A;
}

.page-promotions-deposit-match-offer__btn--primary:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
}

.page-promotions-deposit-match-offer__btn--secondary {
    background-color: #1A2A3A;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-promotions-deposit-match-offer__btn--secondary:hover {
    background-color: #FFD700;
    color: #1A2A3A;
    transform: translateY(-3px);
}

.page-promotions-deposit-match-offer__btn--center {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: fit-content;
}

.page-promotions-deposit-match-offer__btn--large {
    padding: 18px 40px;
    font-size: 1.2em;
}

.page-promotions-deposit-match-offer__btn--inline {
    margin-left: 10px;
    margin-top: 0;
    padding: 10px 20px;
    font-size: 0.9em;
}

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

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

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

.page-promotions-deposit-match-offer__benefit-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px #FFD700);
}

.page-promotions-deposit-match-offer__benefit-card h3 {
    color: #FFD700;
    font-size: 1.5em;
    margin-bottom: 10px;
}

.page-promotions-deposit-match-offer__benefit-card p {
    color: #B0B0B0;
    font-size: 1em;
}

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

.page-promotions-deposit-match-offer__step-card {
    background-color: #1A2A3A;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid #333;
    position: relative;
    padding-top: 60px;
}

.page-promotions-deposit-match-offer__step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #FFD700;
    color: #1A2A3A;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2em;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-promotions-deposit-match-offer__step-card h3 {
    color: #FFD700;
    font-size: 1.5em;
    margin-bottom: 10px;
}

.page-promotions-deposit-match-offer__step-card p {
    color: #B0B0B0;
    font-size: 1em;
}

.page-promotions-deposit-match-offer__tip-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions-deposit-match-offer__tip-list li {
    background-color: #1A2A3A;
    margin-bottom: 15px;
    padding: 20px 25px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: flex-start;
    color: #E0E0E0;
    line-height: 1.6;
}

.page-promotions-deposit-match-offer__tip-list li::before {
    content: '✅';
    margin-right: 15px;
    font-size: 1.2em;
    line-height: 1.2;
}

.page-promotions-deposit-match-offer__tip-list li strong {
    color: #FFD700;
}

.page-promotions-deposit-match-offer__faq-item {
    background-color: #1A2A3A;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.page-promotions-deposit-match-offer__faq-question {
    color: #FFD700;
    font-size: 1.3em;
    padding: 20px 25px;
    cursor: pointer;
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

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

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

.page-promotions-deposit-match-offer__faq-item.active .page-promotions-deposit-match-offer__faq-answer {
    max-height: 200px; /* Adjust as needed for content length */
    padding: 0 25px 20px;
}

.page-promotions-deposit-match-offer__cta {
    text-align: center;
    background-color: #2c3e50;
    padding: 80px 0;
}

.page-promotions-deposit-match-offer__cta-text {
    font-size: 1.3em;
    max-width: 900px;
    margin: 0 auto 40px;
    color: #E0E0E0;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-promotions-deposit-match-offer__hero-title {
        font-size: 2.8em;
    }
    .page-promotions-deposit-match-offer__section-title {
        font-size: 2em;
    }
    .page-promotions-deposit-match-offer__content-wrapper {
        flex-direction: column;
    }
    .page-promotions-deposit-match-offer__content-wrapper--reversed {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .page-promotions-deposit-match-offer__hero {
        padding: 80px 0;
    }
    .page-promotions-deposit-match-offer__hero-title {
        font-size: 2.2em;
    }
    .page-promotions-deposit-match-offer__hero-subtitle {
        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__benefits-grid,
    .page-promotions-deposit-match-offer__steps-grid {
        grid-template-columns: 1fr;
    }
    .page-promotions-deposit-match-offer__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-promotions-deposit-match-offer__btn--large {
        padding: 15px 30px;
        font-size: 1.1em;
    }
    .page-promotions-deposit-match-offer__faq-question {
        font-size: 1.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: 1em;
    }
    .page-promotions-deposit-match-offer__section-title {
        font-size: 1.5em;
    }
    .page-promotions-deposit-match-offer__tip-list li,
    .page-promotions-deposit-match-offer__faq-item {
        padding: 15px;
    }
    .page-promotions-deposit-match-offer__faq-answer {
        padding: 0 15px 15px;
    }
    .page-promotions-deposit-match-offer__btn--inline {
        display: block;
        margin-top: 10px;
        margin-left: 0;
        width: 100%;
    }
}