/* style/promotions-first-deposit.css */
.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 20px;
}

.page-promotions-first-deposit__hero-section {
    background: linear-gradient(135deg, #007BFF 0%, #4da3ff 100%); /* Lighter shade of blue for gradient */
    color: #fff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-promotions-first-deposit__main-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-promotions-first-deposit__subtitle {
    font-size: 1.2em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #e0e0e0;
}

.page-promotions-first-deposit__cta-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    margin: 10px;
    cursor: pointer;
}

.page-promotions-first-deposit__cta-button--primary {
    background-color: #FFC107; /* Accent color for primary CTA */
    color: #333; /* Dark text for contrast */
    border: 2px solid #FFC107;
}

.page-promotions-first-deposit__cta-button--primary:hover {
    background-color: #e0a800;
    transform: translateY(-3px);
}

.page-promotions-first-deposit__cta-button--secondary {
    background-color: #007BFF; /* Main color for secondary CTA */
    color: #fff;
    border: 2px solid #007BFF;
}

.page-promotions-first-deposit__cta-button--secondary:hover {
    background-color: #0056b3;
    transform: translateY(-3px);
}

.page-promotions-first-deposit__cta-button--outline {
    background-color: transparent;
    color: #007BFF;
    border: 2px solid #007BFF;
}

.page-promotions-first-deposit__cta-button--outline:hover {
    background-color: #007BFF;
    color: #fff;
    transform: translateY(-3px);
}

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

.page-promotions-first-deposit__content-section {
    padding: 60px 0;
    background-color: #fff;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.page-promotions-first-deposit__content-section:nth-of-type(odd) {
    background-color: #f0f7ff; /* Light blue tint for alternating sections */
}

.page-promotions-first-deposit__section-title {
    font-size: 2.2em;
    color: #007BFF;
    margin-bottom: 30px;
    text-align: center;
    font-weight: bold;
    position: relative;
}

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

.page-promotions-first-deposit__what-is-bonus p {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: justify;
}

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

.page-promotions-first-deposit__step-item {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
    border-top: 5px solid #007BFF;
}

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

.page-promotions-first-deposit__step-image {
    max-width: 100%;
    height: 150px;
    object-fit: contain;
    margin-bottom: 20px;
}

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

.page-promotions-first-deposit__step-item p {
    font-size: 1em;
    color: #555;
    margin-bottom: 20px;
}

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

.page-promotions-first-deposit__list li {
    background-color: #f9f9f9;
    border-left: 5px solid #FFC107;
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.page-promotions-first-deposit__list-title {
    font-size: 1.3em;
    color: #007BFF;
    margin-bottom: 10px;
}

.page-promotions-first-deposit__list li p {
    font-size: 1em;
    color: #444;
    text-align: justify;
}

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

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

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

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

.page-promotions-first-deposit__feature-title {
    font-size: 1.4em;
    color: #007BFF;
    margin-bottom: 15px;
}

.page-promotions-first-deposit__feature-item p {
    font-size: 1em;
    color: #555;
}

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

.page-promotions-first-deposit__advice-list li {
    background-color: #fefcf5; /* Lighter tint of yellow for advice */
    border-left: 5px solid #007BFF;
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.page-promotions-first-deposit__advice-list li p {
    font-size: 1em;
    color: #444;
    text-align: justify;
}

.page-promotions-first-deposit__accordion {
    margin-top: 40px;
}

.page-promotions-first-deposit__accordion-item {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-promotions-first-deposit__accordion-header {
    font-size: 1.2em;
    color: #007BFF;
    padding: 18px 25px;
    cursor: pointer;
    background-color: #f0f7ff;
    border-bottom: 1px solid #ddd;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.page-promotions-first-deposit__accordion-header:hover {
    background-color: #e0efff;
}

.page-promotions-first-deposit__accordion-header::after {
    content: '+';
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

.page-promotions-first-deposit__accordion-header.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-promotions-first-deposit__accordion-content {
    padding: 0 25px;
    background-color: #fff;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-promotions-first-deposit__accordion-content p {
    padding-bottom: 20px;
    color: #555;
    font-size: 1em;
    text-align: justify;
}

.page-promotions-first-deposit__accordion-header.active + .page-promotions-first-deposit__accordion-content {
    max-height: 200px; /* Adjust as needed for content height */
    padding-top: 15px;
    padding-bottom: 20px;
}

.page-promotions-first-deposit__cta-bottom {
    text-align: center;
    padding: 80px 0;
    background-color: #007BFF;
    color: #fff;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-promotions-first-deposit__cta-bottom .page-promotions-first-deposit__section-title {
    color: #fff;
}

.page-promotions-first-deposit__cta-bottom .page-promotions-first-deposit__section-title::after {
    background-color: #FFC107;
}

.page-promotions-first-deposit__cta-bottom p {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #e0e0e0;
}

.page-promotions-first-deposit__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-promotions-first-deposit__main-title {
        font-size: 2em;
    }
    .page-promotions-first-deposit__subtitle {
        font-size: 1em;
    }
    .page-promotions-first-deposit__section-title {
        font-size: 1.8em;
    }
    .page-promotions-first-deposit__steps-grid,
    .page-promotions-first-deposit__features-grid {
        grid-template-columns: 1fr;
    }
    .page-promotions-first-deposit__step-item,
    .page-promotions-first-deposit__feature-item {
        padding: 20px;
    }
    .page-promotions-first-deposit__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-promotions-first-deposit__accordion-header {
        font-size: 1.1em;
        padding: 15px 20px;
    }
}

@media (max-width: 480px) {
    .page-promotions-first-deposit__hero-section {
        padding: 60px 0;
    }
    .page-promotions-first-deposit__main-title {
        font-size: 1.6em;
    }
    .page-promotions-first-deposit__subtitle {
        font-size: 0.9em;
    }
    .page-promotions-first-deposit__section-title {
        font-size: 1.5em;
    }
    .page-promotions-first-deposit__cta-buttons {
        flex-direction: column;
    }
    .page-promotions-first-deposit__cta-button {
        width: 80%;
        margin: 5px auto;
    }
}