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

.page-promotions-deposit-bonus__hero {
    background: linear-gradient(135deg, #003366, #1a4d80);
    color: #fff;
    padding: 80px 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 40px;
    text-align: center;
}

.page-promotions-deposit-bonus__hero-content {
    max-width: 700px;
}

.page-promotions-deposit-bonus__hero-title {
    font-size: 3em;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #FFCC00;
}

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

.page-promotions-deposit-bonus__hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

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

.page-promotions-deposit-bonus__button--primary {
    background-color: #FFCC00;
    color: #003366;
    border-color: #FFCC00;
}

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

.page-promotions-deposit-bonus__button--secondary {
    background-color: transparent;
    color: #FFCC00;
    border-color: #FFCC00;
}

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

.page-promotions-deposit-bonus__hero-image-container {
    flex-shrink: 0;
    width: 100%;
    max-width: 500px;
    margin-top: 30px;
}

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

.page-promotions-deposit-bonus__section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.page-promotions-deposit-bonus__section:nth-of-type(odd) {
    background-color: #fefefe;
}

.page-promotions-deposit-bonus__section:nth-of-type(even) {
    background-color: #e9eef2;
}

.page-promotions-deposit-bonus__section-title {
    font-size: 2.5em;
    color: #003366;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

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

.page-promotions-deposit-bonus__section-intro {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions-deposit-bonus__features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    text-align: left;
}

.page-promotions-deposit-bonus__feature-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border-top: 5px solid #003366;
    transition: transform 0.3s ease;
}

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

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

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

.page-promotions-deposit-bonus__offer-card {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid #eee;
    transition: border-color 0.3s ease;
}

.page-promotions-deposit-bonus__offer-card:hover {
    border-color: #FFCC00;
}

.page-promotions-deposit-bonus__offer-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
}

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

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

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

.page-promotions-deposit-bonus__step-item {
    background-color: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    position: relative;
    padding-top: 60px;
}

.page-promotions-deposit-bonus__step-number {
    position: absolute;
    top: 20px;
    left: 25px;
    background-color: #FFCC00;
    color: #003366;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

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

.page-promotions-deposit-bonus__inline-link {
    color: #003366;
    text-decoration: underline;
    font-weight: bold;
}

.page-promotions-deposit-bonus__inline-link:hover {
    color: #FFCC00;
}

.page-promotions-deposit-bonus__image-wrapper {
    margin-top: 40px;
    text-align: center;
}

.page-promotions-deposit-bonus__process-image, .page-promotions-deposit-bonus__info-image, .page-promotions-deposit-bonus__support-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.page-promotions-deposit-bonus__terms-list {
    list-style: none;
    padding: 0;
    text-align: left;
    max-width: 800px;
    margin: 0 auto 30px;
}

.page-promotions-deposit-bonus__terms-list li {
    background-color: #fff;
    margin-bottom: 15px;
    padding: 20px;
    border-left: 5px solid #FFCC00;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    color: #333;
}

.page-promotions-deposit-bonus__terms-list li strong {
    color: #003366;
    font-size: 1.1em;
    display: block;
    margin-bottom: 5px;
}

.page-promotions-deposit-bonus__warning {
    background-color: #fff3cd;
    color: #856404;
    border: 1px solid #ffeeba;
    padding: 15px;
    border-radius: 5px;
    max-width: 800px;
    margin: 20px auto 40px;
    text-align: left;
}

.page-promotions-deposit-bonus__tips-list {
    list-style: none;
    padding: 0;
    text-align: left;
    max-width: 800px;
    margin: 0 auto;
}

.page-promotions-deposit-bonus__tips-list li {
    background-color: #fff;
    margin-bottom: 15px;
    padding: 20px;
    border-left: 5px solid #003366;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    color: #333;
}

.page-promotions-deposit-bonus__tips-list li strong {
    color: #003366;
    font-size: 1.1em;
    display: block;
    margin-bottom: 5px;
}

.page-promotions-deposit-bonus__faq-items {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

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

.page-promotions-deposit-bonus__faq-question {
    padding: 20px;
    margin: 0;
    font-size: 1.2em;
    color: #003366;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #eef4f8;
    border-bottom: 1px solid #e0e0e0;
}

.page-promotions-deposit-bonus__faq-question::after {
    content: '+';
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

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

.page-promotions-deposit-bonus__faq-answer {
    padding: 20px;
    background-color: #f9f9f9;
    border-top: 1px solid #eee;
    display: none;
    color: #555;
}

.page-promotions-deposit-bonus__faq-answer.active {
    display: block;
}

.page-promotions-deposit-bonus__cta-final {
    background-color: #003366;
    color: #fff;
    padding: 70px 20px;
    text-align: center;
}

.page-promotions-deposit-bonus__cta-final .page-promotions-deposit-bonus__section-title {
    color: #FFCC00;
}

.page-promotions-deposit-bonus__cta-final .page-promotions-deposit-bonus__section-intro {
    color: #e0e0e0;
    margin-bottom: 50px;
}

.page-promotions-deposit-bonus__final-actions {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-promotions-deposit-bonus__final-actions .page-promotions-deposit-bonus__button--primary {
    background-color: #FFCC00;
    color: #003366;
    border-color: #FFCC00;
}

.page-promotions-deposit-bonus__final-actions .page-promotions-deposit-bonus__button--primary:hover {
    background-color: #e6b800;
}

.page-promotions-deposit-bonus__final-actions .page-promotions-deposit-bonus__button--secondary {
    background-color: transparent;
    color: #FFCC00;
    border-color: #FFCC00;
}

.page-promotions-deposit-bonus__final-actions .page-promotions-deposit-bonus__button--secondary:hover {
    background-color: #FFCC00;
    color: #003366;
}

.highlight-keyword {
    color: #FFCC00;
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-promotions-deposit-bonus__hero {
        padding: 60px 15px;
        flex-direction: column;
    }

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

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

    .page-promotions-deposit-bonus__hero-actions {
        flex-direction: column;
        gap: 15px;
    }

    .page-promotions-deposit-bonus__button {
        width: 100%;
        max-width: 300px;
    }

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

    .page-promotions-deposit-bonus__section {
        padding: 40px 15px;
    }

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

    .page-promotions-deposit-bonus__hero-image-container {
        margin-top: 20px;
    }
}

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

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

    .page-promotions-deposit-bonus__button {
        padding: 12px 20px;
        font-size: 1em;
    }
    
    .page-promotions-deposit-bonus__faq-question {
        font-size: 1.1em;
        padding: 15px;
    }
}