.page-promo {
    color: #333333;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-top: var(--header-offset, 120px); /* Ensures content is below fixed header */
}

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

.page-promo__hero-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    color: #ffffff;
    text-align: center;
    padding-bottom: 60px; /* Add some padding below content */
}

.page-promo__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    filter: brightness(0.6);
    z-index: 1;
    min-width: 200px;
    min-height: 200px;
}

.page-promo__hero-content {
    position: relative;
    z-index: 2;
    padding: 80px 20px;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 400px; /* Ensure hero section has a minimum height */
}

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

.page-promo__hero-description {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    color: #f0f0f0;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.page-promo__cta-button {
    display: inline-block;
    background-color: #FFD700;
    color: #8B0000;
    padding: 15px 35px;
    border-radius: 50px;
    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__cta-button:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
}

.page-promo__cta-button--large {
    padding: 18px 45px;
    font-size: 1.4em;
}

.page-promo__promotions-grid {
    background-color: #f9f9f9;
    padding: 80px 0;
}

.page-promo__section-title {
    font-size: 2.8em;
    color: #8B0000;
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-promo__section-intro {
    font-size: 1.1em;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px auto;
    color: #555555;
}

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

.page-promo__card {
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    padding-bottom: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    min-width: 200px; /* Ensure card itself doesn't shrink too much */
}

.page-promo__card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.page-promo__card-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    margin-bottom: 20px;
    min-width: 200px;
    min-height: 200px;
}

.page-promo__card-title {
    font-size: 1.8em;
    color: #8B0000;
    margin: 0 20px 15px 20px;
    font-weight: bold;
}

.page-promo__card-description {
    font-size: 1em;
    color: #666666;
    padding: 0 20px;
    margin-bottom: 25px;
    flex-grow: 1;
}

.page-promo__card-button {
    display: inline-block;
    background-color: #8B0000;
    color: #FFD700;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-promo__card-button:hover {
    background-color: #6a0000;
    transform: translateY(-2px);
}

.page-promo__terms-section,
.page-promo__faq-section {
    padding: 80px 0;
    background-color: #f0f0f0;
}

.page-promo__terms-section {
    background-color: #ffffff;
}

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

.page-promo__terms-list {
    list-style: disc;
    max-width: 800px;
    margin: 0 auto 30px auto;
    padding-left: 20px;
    color: #444444;
}

.page-promo__terms-item {
    margin-bottom: 10px;
    font-size: 1em;
}

.page-promo__link {
    color: #8B0000;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-promo__link:hover {
    color: #FFD700;
    text-decoration: underline;
}

.page-promo__read-more-text {
    text-align: center;
    font-size: 1em;
    margin-top: 30px;
    color: #555555;
}

.page-promo__faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.page-promo__faq-item {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    margin-bottom: 20px;
    padding: 25px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.page-promo__faq-question {
    font-size: 1.4em;
    color: #8B0000;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-promo__faq-answer {
    font-size: 1em;
    color: #555555;
}

.page-promo__cta-section {
    background-color: #8B0000;
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
}

.page-promo__cta-section .page-promo__section-title {
    color: #FFD700;
}

.page-promo__cta-section .page-promo__section-intro {
    color: #f0f0f0;
    margin-bottom: 40px;
}

/* Responsive Design */
@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: 2.2em;
    }
    .page-promo__card-title {
        font-size: 1.6em;
    }
}

@media (max-width: 768px) {
    .page-promo__hero-content {
        padding: 60px 15px;
        min-height: 300px;
    }
    .page-promo__hero-title {
        font-size: 2.5em;
    }
    .page-promo__hero-description {
        font-size: 1em;
    }
    .page-promo__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-promo__cta-button--large {
        padding: 15px 35px;
        font-size: 1.2em;
    }
    .page-promo__promotions-grid,
    .page-promo__terms-section,
    .page-promo__faq-section,
    .page-promo__cta-section {
        padding: 60px 0;
    }
    .page-promo__section-title {
        font-size: 2em;
    }
    .page-promo__section-intro {
        margin-bottom: 40px;
    }
    .page-promo__grid {
        grid-template-columns: 1fr;
    }
    .page-promo__card-image {
        height: 180px;
    }
    .page-promo__card-title {
        font-size: 1.4em;
    }
    .page-promo__card-description {
        font-size: 0.95em;
    }
    /* Ensure all content area images are responsive and do not cause overflow */
    .page-promo img {
        max-width: 100%;
        height: auto;
        min-width: 200px;
        min-height: 200px;
    }
    .page-promo__card-image {
        width: 100%; /* Override to ensure it fills card width */
        height: auto; /* Maintain aspect ratio */
    }
}

@media (max-width: 480px) {
    .page-promo__hero-content {
        padding: 40px 10px;
    }
    .page-promo__hero-title {
        font-size: 2em;
    }
    .page-promo__hero-description {
        font-size: 0.9em;
    }
    .page-promo__section-title {
        font-size: 1.8em;
    }
    .page-promo__terms-list,
    .page-promo__faq-list {
        padding-left: 15px;
    }
    .page-promo__faq-question {
        font-size: 1.2em;
    }
    .page-promo__faq-answer {
        font-size: 0.9em;
    }
    .page-promo__cta-button--large {
        padding: 12px 25px;
        font-size: 1em;
    }
}