.page-promo {
    color: #333333; /* Dark text for default light body background */
}

.page-promo__hero-section {
    position: relative;
    overflow: hidden;
    padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
    padding-bottom: 60px;
    text-align: center;
    background-color: #007bff; /* Primary brand color for hero background */
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-promo__hero-container {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

.page-promo__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    z-index: 1;
}

.page-promo__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promo__hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
    line-height: 1.6;
    color: #f0f0f0;
}

.page-promo__hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.page-promo__hero-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-promo__hero-button--primary {
    background-color: #ffc107; /* Auxiliary brand color */
    color: #333333;
}

.page-promo__hero-button--primary:hover {
    background-color: #e0a800;
    transform: translateY(-2px);
}

.page-promo__hero-button--secondary {
    background-color: #ffffff;
    color: #007bff;
    border: 2px solid #007bff;
}

.page-promo__hero-button--secondary:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

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

.page-promo__section-title {
    font-size: 2.5em;
    color: #007bff;
    text-align: center;
    margin-bottom: 20px;
    padding-top: 40px;
}

.page-promo__section-description {
    font-size: 1.1em;
    line-height: 1.7;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #555555;
}

.page-promo__overview-section,
.page-promo__featured-section,
.page-promo__why-winzir-section,
.page-promo__getting-started-section,
.page-promo__responsible-gaming-section,
.page-promo__faq-section,
.page-promo__final-cta-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.page-promo__overview-section:nth-of-type(odd),
.page-promo__why-winzir-section:nth-of-type(odd),
.page-promo__faq-section:nth-of-type(odd) {
    background-color: #ffffff;
}

.page-promo__overview-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

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

.page-promo__overview-card:hover {
    transform: translateY(-5px);
}

.page-promo__overview-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-promo__overview-card-title {
    font-size: 1.8em;
    color: #007bff;
    margin-bottom: 15px;
}

.page-promo__overview-card-description {
    font-size: 1em;
    line-height: 1.6;
    color: #666666;
}

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

.page-promo__promo-card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.page-promo__promo-card:hover {
    transform: translateY(-5px);
}

.page-promo__promo-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.page-promo__promo-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.page-promo__promo-title {
    font-size: 1.8em;
    margin-bottom: 15px;
}

.page-promo__promo-title a {
    color: #007bff;
    text-decoration: none;
}

.page-promo__promo-title a:hover {
    text-decoration: underline;
}

.page-promo__promo-description {
    font-size: 1em;
    line-height: 1.6;
    color: #666666;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-promo__promo-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #ffc107;
    color: #333333;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

.page-promo__promo-button:hover {
    background-color: #e0a800;
}

.page-promo__why-winzir-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.page-promo__why-winzir-item {
    background-color: #ffffff;
    border-left: 5px solid #007bff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.page-promo__why-winzir-item-title {
    font-size: 1.6em;
    color: #007bff;
    margin-bottom: 10px;
}

.page-promo__why-winzir-item-description {
    font-size: 1em;
    line-height: 1.6;
    color: #666666;
}

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

.page-promo__step-card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 25px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-promo__step-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-promo__step-title {
    font-size: 1.6em;
    color: #007bff;
    margin-bottom: 10px;
}

.page-promo__step-description {
    font-size: 1em;
    line-height: 1.6;
    color: #666666;
}

.page-promo__actions-bottom {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 50px;
}

.page-promo__action-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-promo__action-button--primary {
    background-color: #007bff;
    color: #ffffff;
}

.page-promo__action-button--primary:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}

.page-promo__action-button--secondary {
    background-color: #ffc107;
    color: #333333;
}

.page-promo__action-button--secondary:hover {
    background-color: #e0a800;
    transform: translateY(-2px);
}

.page-promo__responsible-gaming-link {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
}

.page-promo__responsible-gaming-link:hover {
    text-decoration: underline;
}

.page-promo__faq-list {
    margin-top: 40px;
}

.page-promo__faq-item {
    background-color: #ffffff;
    border: 1px solid #eeeeee;
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 20px;
}

.page-promo__faq-question {
    font-size: 1.4em;
    color: #007bff;
    margin-bottom: 10px;
    cursor: pointer;
}

.page-promo__faq-answer {
    font-size: 1em;
    line-height: 1.6;
    color: #666666;
    display: none; /* Hidden by default, toggled by JS */
}

.page-promo__faq-item.active .page-promo__faq-answer {
    display: block;
}

.page-promo__final-cta-section {
    background-color: #007bff;
    color: #ffffff;
    text-align: center;
    padding: 80px 20px;
}

.page-promo__final-cta-section .page-promo__section-title {
    color: #ffffff;
}

.page-promo__final-cta-section .page-promo__section-description {
    color: #f0f0f0;
    margin-bottom: 40px;
}

.page-promo__final-cta-button {
    display: inline-block;
    padding: 18px 35px;
    background-color: #ffc107;
    color: #333333;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-promo__final-cta-button:hover {
    background-color: #e0a800;
    transform: translateY(-3px);
}

/* Media Queries for Responsiveness */
@media (max-width: 1024px) {
    .page-promo__hero-title {
        font-size: 3em;
    }
    .page-promo__hero-description {
        font-size: 1.1em;
    }
    .page-promo__section-title {
        font-size: 2em;
    }
    .page-promo__overview-image,
    .page-promo__promo-image {
        height: 200px;
    }
    .page-promo__featured-grid {
        grid-template-columns: 1fr;
    }
    .page-promo__promo-card {
        flex-direction: row;
    }
    .page-promo__promo-image {
        width: 40%;
        height: auto;
    }
    .page-promo__promo-content {
        width: 60%;
    }
}

@media (max-width: 768px) {
    .page-promo__hero-title {
        font-size: 2.5em;
    }
    .page-promo__hero-description {
        font-size: 1em;
    }
    .page-promo__hero-actions {
        flex-direction: column;
        gap: 15px;
    }
    .page-promo__hero-button,
    .page-promo__action-button,
    .page-promo__final-cta-button {
        width: 80%;
        margin: 0 auto;
    }
    .page-promo__overview-content,
    .page-promo__steps-grid,
    .page-promo__why-winzir-list {
        grid-template-columns: 1fr;
    }
    .page-promo__promo-card {
        flex-direction: column;
    }
    .page-promo__promo-image {
        width: 100%;
        height: 250px;
    }
    .page-promo__promo-content {
        width: 100%;
    }
    .page-promo__action-button--primary,
    .page-promo__action-button--secondary {
        width: 100%;
    }
    .page-promo__actions-bottom {
        flex-direction: column;
    }
    /* Ensure all images within .page-promo are responsive and don't overflow */
    .page-promo img {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .page-promo__hero-title {
        font-size: 2em;
    }
    .page-promo__section-title {
        font-size: 1.8em;
    }
    .page-promo__overview-card-title,
    .page-promo__promo-title,
    .page-promo__why-winzir-item-title,
    .page-promo__step-title,
    .page-promo__faq-question {
        font-size: 1.4em;
    }
    .page-promo__hero-button,
    .page-promo__action-button,
    .page-promo__final-cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-promo__promo-image {
        height: 200px;
    }
}