/* style/promotions-first-deposit.css */

:root {
    --page-promotions-first-deposit-primary-color: #0A246A;
    --page-promotions-first-deposit-secondary-color: #FFD700;
    --page-promotions-first-deposit-text-dark: #333333;
    --page-promotions-first-deposit-text-light: #FFFFFF;
    --page-promotions-first-deposit-bg-light: #F8F9FA;
    --page-promotions-first-deposit-bg-dark: #0A246A;
    --page-promotions-first-deposit-accent-color: #f5db95;
    --page-promotions-first-deposit-border-color: #e0e0e0;
}

.page-promotions-first-deposit {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--page-promotions-first-deposit-text-dark);
}

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

.page-promotions-first-deposit .bg-light {
    background-color: var(--page-promotions-first-deposit-bg-light);
}

.page-promotions-first-deposit .bg-dark {
    background-color: var(--page-promotions-first-deposit-bg-dark);
    color: var(--page-promotions-first-deposit-text-light);
}

.page-promotions-first-deposit .bg-dark .page-promotions-first-deposit__section-title,
.page-promotions-first-deposit .bg-dark .page-promotions-first-deposit__section-description {
    color: var(--page-promotions-first-deposit-text-light);
}

.page-promotions-first-deposit__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.page-promotions-first-deposit__section-title {
    font-size: 2.5em;
    color: var(--page-promotions-first-deposit-primary-color);
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.page-promotions-first-deposit__section-title .highlight {
    color: var(--page-promotions-first-deposit-secondary-color);
}

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

.page-promotions-first-deposit__section-description {
    font-size: 1.1em;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto;
    color: var(--page-promotions-first-deposit-text-dark);
}

.page-promotions-first-deposit__hero {
    background: linear-gradient(135deg, var(--page-promotions-first-deposit-primary-color) 0%, #1a3a8a 100%);
    color: var(--page-promotions-first-deposit-text-light);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-promotions-first-deposit__hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:abstract,geometric,pattern]') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 0;
}

.page-promotions-first-deposit__hero > .page-promotions-first-deposit__container {
    position: relative;
    z-index: 1;
}

.page-promotions-first-deposit__hero-title {
    font-size: 3.8em;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
    color: var(--page-promotions-first-deposit-text-light);
}

.page-promotions-first-deposit__hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: var(--page-promotions-first-deposit-accent-color);
}

.page-promotions-first-deposit__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.2em;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
}

.page-promotions-first-deposit__btn.primary-btn {
    background-color: var(--page-promotions-first-deposit-secondary-color);
    color: var(--page-promotions-first-deposit-primary-color);
    border: 2px solid var(--page-promotions-first-deposit-secondary-color);
}

.page-promotions-first-deposit__btn.primary-btn:hover {
    background-color: #e6c200;
    border-color: #e6c200;
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions-first-deposit__btn.secondary-btn {
    background-color: transparent;
    color: var(--page-promotions-first-deposit-primary-color);
    border: 2px solid var(--page-promotions-first-deposit-primary-color);
}

.page-promotions-first-deposit__btn.secondary-btn:hover {
    background-color: var(--page-promotions-first-deposit-primary-color);
    color: var(--page-promotions-first-deposit-text-light);
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions-first-deposit__btn.large-btn {
    padding: 18px 40px;
    font-size: 1.3em;
}

.page-promotions-first-deposit__intro .page-promotions-first-deposit__content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

@media (min-width: 768px) {
    .page-promotions-first-deposit__intro .page-promotions-first-deposit__content-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.page-promotions-first-deposit__image-wrapper {
    text-align: center;
}

.page-promotions-first-deposit__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.page-promotions-first-deposit__text-content p {
    margin-bottom: 15px;
    font-size: 1.05em;
}

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

.page-promotions-first-deposit__offer-card {
    background-color: var(--page-promotions-first-deposit-text-light);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 5px solid var(--page-promotions-first-deposit-secondary-color);
}

.page-promotions-first-deposit__offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.page-promotions-first-deposit__card-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.1));
}

.page-promotions-first-deposit__card-title {
    font-size: 1.5em;
    color: var(--page-promotions-first-deposit-primary-color);
    margin-bottom: 15px;
}

.page-promotions-first-deposit__card-description {
    font-size: 1em;
    color: var(--page-promotions-first-deposit-text-dark);
}

.page-promotions-first-deposit__cta-section {
    text-align: center;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--page-promotions-first-deposit-border-color);
}

.page-promotions-first-deposit__cta-section p {
    font-size: 1.3em;
    margin-bottom: 25px;
    color: var(--page-promotions-first-deposit-primary-color);
    font-weight: bold;
}

.page-promotions-first-deposit__guide .page-promotions-first-deposit__steps {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 900px;
}

.page-promotions-first-deposit__steps li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
    position: relative;
    padding-left: 80px;
}

.page-promotions-first-deposit__steps li:last-child {
    margin-bottom: 0;
}

.page-promotions-first-deposit__step-icon {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 60px;
    background-color: var(--page-promotions-first-deposit-secondary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-promotions-first-deposit__icon-small {
    width: 35px;
    height: 35px;
    filter: invert(1);
}

.page-promotions-first-deposit__step-content h3 {
    font-size: 1.6em;
    color: var(--page-promotions-first-deposit-primary-color);
    margin-top: 0;
    margin-bottom: 10px;
}

.page-promotions-first-deposit__step-content p {
    font-size: 1.05em;
    margin-bottom: 10px;
}

.page-promotions-first-deposit__link-text {
    color: var(--page-promotions-first-deposit-primary-color);
    text-decoration: underline;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-promotions-first-deposit__link-text:hover {
    color: var(--page-promotions-first-deposit-secondary-color);
}

.page-promotions-first-deposit__cta-bottom {
    text-align: center;
    margin-top: 60px;
}

.page-promotions-first-deposit__cta-bottom p {
    font-size: 1.3em;
    margin-bottom: 25px;
    color: var(--page-promotions-first-deposit-primary-color);
    font-weight: bold;
}

.page-promotions-first-deposit__terms .page-promotions-first-deposit__list {
    list-style: none;
    padding: 0;
    max-width: 900px;
    margin: 0 auto;
}

.page-promotions-first-deposit__terms .page-promotions-first-deposit__list li {
    background-color: var(--page-promotions-first-deposit-text-light);
    border-left: 5px solid var(--page-promotions-first-deposit-primary-color);
    padding: 15px 20px;
    margin-bottom: 15px;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    font-size: 1.05em;
}

.page-promotions-first-deposit__terms p {
    text-align: center;
    margin-top: 30px;
    font-style: italic;
    color: var(--page-promotions-first-deposit-text-dark);
}

.page-promotions-first-deposit__faq-item {
    background-color: var(--page-promotions-first-deposit-bg-light);
    border: 1px solid var(--page-promotions-first-deposit-border-color);
    border-radius: 8px;
    margin-bottom: 20px;
    overflow: hidden;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions-first-deposit__faq-question {
    font-size: 1.3em;
    color: var(--page-promotions-first-deposit-primary-color);
    padding: 20px;
    margin: 0;
    cursor: pointer;
    background-color: var(--page-promotions-first-deposit-text-light);
    border-bottom: 1px solid var(--page-promotions-first-deposit-border-color);
    position: relative;
    transition: background-color 0.3s ease;
}

.page-promotions-first-deposit__faq-question:hover {
    background-color: #f0f0f0;
}

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

.page-promotions-first-deposit__faq-item.active .page-promotions-first-deposit__faq-question::after {
    transform: translateY(-50%) rotate(45deg);
}

.page-promotions-first-deposit__faq-answer {
    padding: 0 20px 20px 20px;
    margin: 0;
    font-size: 1.05em;
    color: var(--page-promotions-first-deposit-text-dark);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

.page-promotions-first-deposit__faq-item.active .page-promotions-first-deposit__faq-answer {
    max-height: 200px; /* Adjust as needed */
    padding-top: 15px;
}

.page-promotions-first-deposit__conclusion {
    text-align: center;
    padding: 80px 0;
}

.page-promotions-first-deposit__conclusion .page-promotions-first-deposit__section-description {
    color: var(--page-promotions-first-deposit-accent-color);
    margin-bottom: 40px;
}

.page-promotions-first-deposit__conclusion .page-promotions-first-deposit__btn {
    margin-top: 20px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-promotions-first-deposit__hero-title {
        font-size: 3em;
    }
    .page-promotions-first-deposit__hero-subtitle {
        font-size: 1.3em;
    }
    .page-promotions-first-deposit__section-title {
        font-size: 2em;
    }
    .page-promotions-first-deposit__section-description {
        font-size: 1em;
    }
    .page-promotions-first-deposit__offer-card-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    .page-promotions-first-deposit__steps li {
        padding-left: 60px;
    }
    .page-promotions-first-deposit__step-icon {
        width: 50px;
        height: 50px;
    }
    .page-promotions-first-deposit__icon-small {
        width: 30px;
        height: 30px;
    }
    .page-promotions-first-deposit__step-content h3 {
        font-size: 1.4em;
    }
}

@media (max-width: 767px) {
    .page-promotions-first-deposit__hero {
        padding: 80px 0;
    }
    .page-promotions-first-deposit__hero-title {
        font-size: 2.5em;
    }
    .page-promotions-first-deposit__hero-subtitle {
        font-size: 1.1em;
    }
    .page-promotions-first-deposit__btn {
        padding: 12px 25px;
        font-size: 1.1em;
    }
    .page-promotions-first-deposit__section-title {
        font-size: 1.8em;
    }
    .page-promotions-first-deposit__intro .page-promotions-first-deposit__content-grid {
        grid-template-columns: 1fr;
    }
    .page-promotions-first-deposit__steps li {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding-left: 0;
    }
    .page-promotions-first-deposit__step-icon {
        position: static;
        margin-bottom: 20px;
    }
    .page-promotions-first-deposit__step-content h3 {
        font-size: 1.3em;
    }
    .page-promotions-first-deposit__faq-question {
        font-size: 1.1em;
    }
}