/* style/promotions-deposit-bonus.css */
.page-promotions-deposit-bonus {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f8f8;
}

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

.page-promotions-deposit-bonus__hero {
    background: linear-gradient(135deg, #0A6847 0%, #3d8a6b 100%); /* Adjusted for better contrast with text */
    color: #fff;
    padding: 80px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    overflow: hidden;
}

.page-promotions-deposit-bonus__hero-content {
    flex: 1;
    max-width: 60%;
    z-index: 1;
    padding-left: 20px;
}

.page-promotions-deposit-bonus__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #FFD700; /* Gold for emphasis */
}

.page-promotions-deposit-bonus__hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
    opacity: 0.9;
    color: #e0e0e0;
}

.page-promotions-deposit-bonus__hero-image-container {
    flex: 1;
    max-width: 40%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

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

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

.page-promotions-deposit-bonus__section--intro {
    background-color: #fff;
}

.page-promotions-deposit-bonus__section-title {
    font-size: 2.5em;
    color: #0A6847;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

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

.page-promotions-deposit-bonus__text {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #444;
    text-align: justify;
}

.page-promotions-deposit-bonus__highlight {
    color: #0A6847;
    font-weight: bold;
}

.page-promotions-deposit-bonus__link--inline {
    color: #0A6847;
    text-decoration: none;
    font-weight: bold;
}

.page-promotions-deposit-bonus__link--inline:hover {
    text-decoration: underline;
    color: #FFD700;
}

.page-promotions-deposit-bonus__button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-align: center;
    cursor: pointer;
}

.page-promotions-deposit-bonus__button--primary {
    background-color: #FFD700; /* Gold */
    color: #0A6847; /* Dark Green */
    border: 2px solid #FFD700;
}

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

.page-promotions-deposit-bonus__button--secondary {
    background-color: #0A6847; /* Dark Green */
    color: #FFD700; /* Gold */
    border: 2px solid #0A6847;
}

.page-promotions-deposit-bonus__button--secondary:hover {
    background-color: #074a31;
    transform: translateY(-2px);
}

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

.page-promotions-deposit-bonus__card {
    background-color: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 5px solid #0A6847;
}

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

.page-promotions-deposit-bonus__card-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(2px 4px 6px rgba(0,0,0,0.1));
}

.page-promotions-deposit-bonus__card-title {
    font-size: 1.5em;
    color: #0A6847;
    margin-bottom: 15px;
}

.page-promotions-deposit-bonus__card-text {
    font-size: 1em;
    color: #666;
}

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

.page-promotions-deposit-bonus__step-item {
    background-color: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    position: relative;
    border-bottom: 5px solid #FFD700;
}

.page-promotions-deposit-bonus__step-number {
    width: 50px;
    height: 50px;
    background-color: #0A6847;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8em;
    font-weight: bold;
    margin: -50px auto 20px auto;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions-deposit-bonus__step-title {
    font-size: 1.6em;
    color: #0A6847;
    margin-bottom: 15px;
}

.page-promotions-deposit-bonus__step-description {
    font-size: 1em;
    color: #666;
    margin-bottom: 20px;
}

.page-promotions-deposit-bonus__step-image {
    max-width: 100%;
    height: 180px;
    object-fit: contain;
    border-radius: 8px;
    margin-top: 15px;
}

.page-promotions-deposit-bonus__call-to-action {
    text-align: center;
    margin-top: 60px;
}

.page-promotions-deposit-bonus__text--small {
    font-size: 0.9em;
    color: #777;
    margin-top: 20px;
}

.page-promotions-deposit-bonus__section--terms {
    background-color: #f0fdf5; /* Lighter green background */
}

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

.page-promotions-deposit-bonus__list li {
    background-color: #e6f7ed;
    border-left: 5px solid #0A6847;
    padding: 15px 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    font-size: 1.05em;
    color: #333;
}

.page-promotions-deposit-bonus__list li strong {
    color: #0A6847;
}

.page-promotions-deposit-bonus__section--why-go99 {
    background-color: #fff;
}

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

.page-promotions-deposit-bonus__feature-item {
    background-color: #f9f9f9;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.page-promotions-deposit-bonus__feature-item:hover {
    border-color: #FFD700;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.page-promotions-deposit-bonus__feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
    color: #0A6847;
}

.page-promotions-deposit-bonus__feature-title {
    font-size: 1.4em;
    color: #0A6847;
    margin-bottom: 10px;
}

.page-promotions-deposit-bonus__feature-text {
    font-size: 0.95em;
    color: #666;
}

.page-promotions-deposit-bonus__section--faq {
    background-color: #f0fdf5;
}

.page-promotions-deposit-bonus__faq-items {
    margin-top: 40px;
}

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

.page-promotions-deposit-bonus__faq-question {
    font-size: 1.25em;
    color: #0A6847;
    padding: 20px;
    cursor: pointer;
    position: relative;
    margin: 0;
    background-color: #fefefe;
    border-bottom: 1px solid #eee;
}

.page-promotions-deposit-bonus__faq-question::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

.page-promotions-deposit-bonus__faq-question.active::after {
    content: '-';
    transform: translateY(-50%) rotate(180deg);
}

.page-promotions-deposit-bonus__faq-answer {
    font-size: 1.05em;
    color: #555;
    padding: 0 20px 20px 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

.page-promotions-deposit-bonus__faq-question.active + .page-promotions-deposit-bonus__faq-answer {
    max-height: 300px; /* Adjust based on expected content length */
    padding-top: 15px;
}

.page-promotions-deposit-bonus__cta-final {
    background: linear-gradient(45deg, #0A6847, #1A9267);
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.page-promotions-deposit-bonus__cta-title {
    font-size: 2.8em;
    color: #FFD700;
    margin-bottom: 20px;
}

.page-promotions-deposit-bonus__cta-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    opacity: 0.9;
    color: #e0e0e0;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-promotions-deposit-bonus__hero {
        flex-direction: column;
        text-align: center;
        padding: 60px 0;
    }

    .page-promotions-deposit-bonus__hero-content {
        max-width: 100%;
        padding-left: 0;
    }

    .page-promotions-deposit-bonus__hero-image-container {
        max-width: 80%;
        margin-top: 40px;
    }

    .page-promotions-deposit-bonus__hero-title {
        font-size: 2.5em;
    }

    .page-promotions-deposit-bonus__hero-description {
        font-size: 1.1em;
    }

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

@media (max-width: 768px) {
    .page-promotions-deposit-bonus__section {
        padding: 40px 0;
    }

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

    .page-promotions-deposit-bonus__hero-description {
        font-size: 1em;
    }

    .page-promotions-deposit-bonus__button {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-promotions-deposit-bonus__grid, .page-promotions-deposit-bonus__steps, .page-promotions-deposit-bonus__features-grid {
        grid-template-columns: 1fr;
    }

    .page-promotions-deposit-bonus__card, .page-promotions-deposit-bonus__step-item, .page-promotions-deposit-bonus__feature-item {
        padding: 25px;
    }

    .page-promotions-deposit-bonus__step-number {
        margin-top: -40px;
    }

    .page-promotions-deposit-bonus__cta-title {
        font-size: 2.2em;
    }

    .page-promotions-deposit-bonus__cta-description {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-promotions-deposit-bonus__hero {
        padding: 40px 0;
    }
    .page-promotions-deposit-bonus__hero-image-container {
        max-width: 90%;
    }
    .page-promotions-deposit-bonus__hero-title {
        font-size: 1.8em;
    }
    .page-promotions-deposit-bonus__section-title {
        font-size: 1.7em;
    }
    .page-promotions-deposit-bonus__list li {
        padding: 10px 15px;
        font-size: 0.95em;
    }
    .page-promotions-deposit-bonus__faq-question {
        font-size: 1.1em;
        padding: 15px;
    }
    .page-promotions-deposit-bonus__faq-answer {
        font-size: 0.95em;
        padding: 0 15px 15px 15px;
    }
    .page-promotions-deposit-bonus__cta-title {
        font-size: 1.8em;
    }
}