/* style/promotions-welcome-bonus.css */
.page-promotions-welcome-bonus {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f8f8;
}

.page-promotions-welcome-bonus__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-promotions-welcome-bonus__hero-section {
    background-color: #0A2463;
    background-image: linear-gradient(135deg, #0A2463 0%, #1f46b5 100%); /* Slightly lighter blue for gradient */
    color: #ffffff;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-promotions-welcome-bonus__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
}

.page-promotions-welcome-bonus__hero-title .highlight {
    color: #E0B94A; /* Gold for emphasis */
}

.page-promotions-welcome-bonus__hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions-welcome-bonus__cta-button {
    display: inline-block;
    background-color: #E0B94A; /* Gold button */
    color: #0A2463; /* Dark blue text for contrast */
    padding: 15px 30px;
    border-radius: 8px;
    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-welcome-bonus__cta-button:hover {
    background-color: #f5db9c; /* Lighter gold on hover */
    transform: translateY(-3px);
}

.page-promotions-welcome-bonus__cta-button--small {
    padding: 10px 20px;
    font-size: 1em;
}

.page-promotions-welcome-bonus__cta-button--large {
    padding: 20px 40px;
    font-size: 1.3em;
}

.page-promotions-welcome-bonus__hero-image {
    position: absolute;
    bottom: 0;
    right: -5%;
    width: 400px;
    height: auto;
    opacity: 0.7;
    z-index: 0;
    display: none; /* Hide on small screens */
}

@media (min-width: 768px) {
    .page-promotions-welcome-bonus__hero-image {
        display: block;
    }
}

.page-promotions-welcome-bonus__section-title {
    font-size: 2.5em;
    color: #0A2463;
    margin-top: 60px;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
}

.page-promotions-welcome-bonus__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #E0B94A;
    margin: 15px auto 0;
    border-radius: 2px;
}

.page-promotions-welcome-bonus__content-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.page-promotions-welcome-bonus__content-section p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #444;
}

.page-promotions-welcome-bonus__content-section .highlight {
    color: #0A2463;
    font-weight: bold;
}

.page-promotions-welcome-bonus__text-link {
    color: #0A2463;
    text-decoration: underline;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-promotions-welcome-bonus__text-link:hover {
    color: #E0B94A;
}

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

.page-promotions-welcome-bonus__card {
    background-color: #f4f4f4;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-promotions-welcome-bonus__card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-promotions-welcome-bonus__card-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    object-fit: contain;
}

.page-promotions-welcome-bonus__card-title {
    font-size: 1.5em;
    color: #0A2463;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-promotions-welcome-bonus__card p {
    font-size: 1em;
    color: #555;
}

.page-promotions-welcome-bonus__image-full-width {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    border-radius: 10px;
    margin: 40px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.page-promotions-welcome-bonus__steps-list {
    list-style: none;
    padding: 0;
    margin: 40px 0;
}

.page-promotions-welcome-bonus__steps-list li {
    background-color: #f9f9f9;
    border-left: 5px solid #E0B94A;
    margin-bottom: 25px;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-promotions-welcome-bonus__step-title {
    font-size: 1.4em;
    color: #0A2463;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-promotions-welcome-bonus__step-title .highlight {
    color: #E0B94A;
}

.page-promotions-welcome-bonus__checklist {
    list-style: none;
    padding: 0;
    margin: 40px 0;
}

.page-promotions-welcome-bonus__checklist li {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 20px 25px;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
}

.page-promotions-welcome-bonus__checklist li::before {
    content: '✓';
    color: #E0B94A;
    font-weight: bold;
    font-size: 1.5em;
    margin-right: 15px;
    display: inline-block;
    min-width: 25px;
    vertical-align: top;
}

.page-promotions-welcome-bonus__list-item-title {
    font-size: 1.3em;
    color: #0A2463;
    margin-top: 0;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-promotions-welcome-bonus__tips-list {
    list-style: none;
    padding: 0;
    margin: 40px 0;
}

.page-promotions-welcome-bonus__tips-list li {
    background-color: #f0f7ff; /* Light blue background for tips */
    border-left: 4px solid #0A2463;
    padding: 18px 25px;
    margin-bottom: 15px;
    border-radius: 6px;
    font-size: 1.1em;
    color: #333;
}

.page-promotions-welcome-bonus__tips-list li strong {
    color: #0A2463;
}

.page-promotions-welcome-bonus__benefits-list {
    list-style: none;
    padding: 0;
    margin: 40px 0;
}

.page-promotions-welcome-bonus__benefits-list li {
    background-color: #e6f7ff; /* Lighter blue for benefits */
    border-radius: 8px;
    padding: 20px 25px;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
}

.page-promotions-welcome-bonus__benefits-list li::before {
    content: '★';
    color: #E0B94A;
    font-weight: bold;
    font-size: 1.5em;
    margin-right: 15px;
    display: inline-block;
    min-width: 25px;
    vertical-align: top;
}

.page-promotions-welcome-bonus__cta-block {
    background-color: #0A2463;
    color: #ffffff;
    padding: 50px 30px;
    border-radius: 10px;
    text-align: center;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
}

.page-promotions-welcome-bonus__cta-block-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #E0B94A;
}

.page-promotions-welcome-bonus__cta-block p {
    font-size: 1.2em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #f0f0f0;
}

.page-promotions-welcome-bonus__cta-image {
    position: absolute;
    bottom: 0;
    left: -5%;
    width: 300px;
    height: auto;
    opacity: 0.6;
    z-index: 0;
    display: none; /* Hide on small screens */
}

@media (min-width: 768px) {
    .page-promotions-welcome-bonus__cta-image {
        display: block;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-promotions-welcome-bonus__hero-title {
        font-size: 2.2em;
    }

    .page-promotions-welcome-bonus__hero-subtitle {
        font-size: 1em;
    }

    .page-promotions-welcome-bonus__section-title {
        font-size: 1.8em;
    }

    .page-promotions-welcome-bonus__card {
        padding: 20px;
    }

    .page-promotions-welcome-bonus__card-title {
        font-size: 1.3em;
    }

    .page-promotions-welcome-bonus__steps-list li, .page-promotions-welcome-bonus__checklist li, .page-promotions-welcome-bonus__tips-list li, .page-promotions-welcome-bonus__benefits-list li {
        padding: 15px;
    }

    .page-promotions-welcome-bonus__step-title, .page-promotions-welcome-bonus__list-item-title {
        font-size: 1.2em;
    }

    .page-promotions-welcome-bonus__cta-block-title {
        font-size: 2em;
    }

    .page-promotions-welcome-bonus__cta-block p {
        font-size: 1em;
    }
}

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

    .page-promotions-welcome-bonus__hero-subtitle {
        font-size: 0.9em;
    }

    .page-promotions-welcome-bonus__section-title {
        font-size: 1.5em;
    }

    .page-promotions-welcome-bonus__cta-button {
        font-size: 0.9em;
        padding: 12px 25px;
    }

    .page-promotions-welcome-bonus__cta-button--large {
        font-size: 1.1em;
        padding: 15px 30px;
    }

    .page-promotions-welcome-bonus__cta-block-title {
        font-size: 1.8em;
    }
}