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

/* General page styling */
.page-promotions-first-deposit {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f9fa;
}

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

.page-promotions-first-deposit__section {
    padding: 60px 0;
    text-align: center;
}

.page-promotions-first-deposit__section--about,
.page-promotions-first-deposit__section--guide,
.page-promotions-first-deposit__section--safety {
    background-color: #ffffff;
}

.page-promotions-first-deposit__section--details,
.page-promotions-first-deposit__section--benefits,
.page-promotions-first-deposit__section--app,
.page-promotions-first-deposit__section--faq,
.page-promotions-first-deposit__section--call-to-action {
    background-color: #e9ecef;
}

.page-promotions-first-deposit__heading {
    font-size: 2.5em;
    color: #007bff; /* Primary color */
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 10px;
}

.page-promotions-first-deposit__heading::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #ffc107; /* Secondary color */
    border-radius: 2px;
}

.page-promotions-first-deposit__text-block {
    max-width: 800px;
    margin: 0 auto 30px auto;
    font-size: 1.1em;
    color: #555;
}

/* Buttons */
.page-promotions-first-deposit__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1.1em;
    border: none;
}

.page-promotions-first-deposit__btn--primary {
    background-color: #007bff; /* Primary color */
    color: #ffffff;
}

.page-promotions-first-deposit__btn--primary:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-promotions-first-deposit__btn--secondary {
    background-color: #ffc107; /* Secondary color */
    color: #333;
}

.page-promotions-first-deposit__btn--secondary:hover {
    background-color: #e0a800;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-promotions-first-deposit__btn--small {
    padding: 8px 18px;
    font-size: 0.9em;
    border-radius: 30px;
    margin-top: 15px;
}

.page-promotions-first-deposit__btn--large {
    padding: 15px 35px;
    font-size: 1.2em;
}

/* Hero Section */
.page-promotions-first-deposit__hero {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%); /* Darker primary for background */
    color: #ffffff;
    padding: 80px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.page-promotions-first-deposit__hero-content {
    max-width: 600px;
    text-align: left;
    padding: 0 15px;
}

.page-promotions-first-deposit__title {
    font-size: 3.5em;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #ffc107; /* Secondary color for title */
}

.page-promotions-first-deposit__subtitle {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: #e0e0e0;
}

.page-promotions-first-deposit__hero-image {
    flex-shrink: 0;
    max-width: 450px;
}

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

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

.page-promotions-first-deposit__detail-card {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.page-promotions-first-deposit__card-title {
    font-size: 1.5em;
    color: #007bff; /* Primary color */
    margin-bottom: 15px;
}

.page-promotions-first-deposit__detail-card p,
.page-promotions-first-deposit__list {
    color: #555;
    font-size: 1em;
}

.page-promotions-first-deposit__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-promotions-first-deposit__list li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 25px;
}

.page-promotions-first-deposit__list li::before {
    content: '✔';
    color: #ffc107; /* Secondary color */
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Benefits Grid */
.page-promotions-first-deposit__benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-promotions-first-deposit__benefit-item {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.page-promotions-first-deposit__benefit-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
}

.page-promotions-first-deposit__benefit-title {
    font-size: 1.4em;
    color: #007bff;
    margin-bottom: 10px;
}

.page-promotions-first-deposit__benefit-item p {
    color: #555;
}

.page-promotions-first-deposit__cta-bottom {
    margin-top: 50px;
}

/* Guide Steps */
.page-promotions-first-deposit__guide-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-promotions-first-deposit__step {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    position: relative;
}

.page-promotions-first-deposit__step-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

.page-promotions-first-deposit__step-title {
    font-size: 1.6em;
    color: #007bff;
    margin-bottom: 15px;
}

.page-promotions-first-deposit__step p {
    color: #555;
    margin-bottom: 20px;
}

/* App Section */
.page-promotions-first-deposit__section--app {
    background: linear-gradient(90deg, #007bff, #0056b3);
    color: #ffffff;
    padding: 80px 0;
}

.page-promotions-first-deposit__app-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    text-align: left;
}

.page-promotions-first-deposit__app-text {
    max-width: 600px;
}

.page-promotions-first-deposit__app-text .page-promotions-first-deposit__heading {
    color: #ffc107;
    text-align: left;
}

.page-promotions-first-deposit__app-text .page-promotions-first-deposit__heading::after {
    left: 0;
    transform: translateX(0);
}

.page-promotions-first-deposit__app-text p {
    font-size: 1.1em;
    color: #e0e0e0;
    margin-bottom: 30px;
}

.page-promotions-first-deposit__app-image {
    flex-shrink: 0;
    max-width: 350px;
}

/* FAQ Section */
.page-promotions-first-deposit__faq-items {
    margin-top: 40px;
    text-align: left;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions-first-deposit__faq-item {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 20px 25px;
    margin-bottom: 15px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.06);
}

.page-promotions-first-deposit__faq-question {
    font-size: 1.3em;
    color: #007bff;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

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

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

.page-promotions-first-deposit__faq-answer {
    font-size: 1em;
    color: #555;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    padding-top: 0;
}

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

/* Call to Action Section */
.page-promotions-first-deposit__section--call-to-action {
    background-color: #007bff; /* Primary color */
    color: #ffffff;
    padding: 70px 0;
}

.page-promotions-first-deposit__section--call-to-action .page-promotions-first-deposit__heading {
    color: #ffc107;
}

.page-promotions-first-deposit__section--call-to-action .page-promotions-first-deposit__text-block {
    color: #e0e0e0;
    margin-bottom: 40px;
}

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

    .page-promotions-first-deposit__hero-content {
        text-align: center;
        max-width: 100%;
    }

    .page-promotions-first-deposit__title {
        font-size: 2.8em;
    }

    .page-promotions-first-deposit__app-content {
        flex-direction: column;
        text-align: center;
    }

    .page-promotions-first-deposit__app-text .page-promotions-first-deposit__heading {
        text-align: center;
    }

    .page-promotions-first-deposit__app-text .page-promotions-first-deposit__heading::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .page-promotions-first-deposit__heading {
        font-size: 2em;
    }

    .page-promotions-first-deposit__title {
        font-size: 2.2em;
    }

    .page-promotions-first-deposit__subtitle,
    .page-promotions-first-deposit__text-block p,
    .page-promotions-first-deposit__app-text p {
        font-size: 1em;
    }

    .page-promotions-first-deposit__section {
        padding: 40px 0;
    }

    .page-promotions-first-deposit__details-grid,
    .page-promotions-first-deposit__benefits-grid,
    .page-promotions-first-deposit__guide-steps {
        grid-template-columns: 1fr;
    }

    .page-promotions-first-deposit__detail-card,
    .page-promotions-first-deposit__benefit-item,
    .page-promotions-first-deposit__step,
    .page-promotions-first-deposit__faq-item {
        padding: 20px;
    }
}

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

    .page-promotions-first-deposit__heading {
        font-size: 1.8em;
    }

    .page-promotions-first-deposit__btn {
        padding: 10px 20px;
        font-size: 1em;
    }

    .page-promotions-first-deposit__btn--large {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-promotions-first-deposit__card-title,
    .page-promotions-first-deposit__benefit-title,
    .page-promotions-first-deposit__step-title {
        font-size: 1.3em;
    }

    .page-promotions-first-deposit__faq-question {
        font-size: 1.1em;
    }
}