/* style/promotions.css */
.page-promotions {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0;
    background-color: #0A246A;
    line-height: 1.6;
}

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

.page-promotions__hero {
    background: linear-gradient(135deg, #0A246A 0%, #1A3A8A 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-promotions__hero-title {
    font-size: 3.2em;
    color: #FFD700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
    line-height: 1.2;
}

.page-promotions__hero-description {
    font-size: 1.2em;
    color: #E0E0E0;
    max-width: 800px;
    margin: 0 auto 40px;
}

.page-promotions__cta-button {
    display: inline-block;
    background-color: #FFD700;
    color: #0A246A;
    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;
    border: none;
    cursor: pointer;
}

.page-promotions__cta-button:hover {
    background-color: #E6C200;
    transform: translateY(-3px);
}

.page-promotions__cta-button--hero {
    padding: 18px 40px;
    font-size: 1.3em;
}

.page-promotions__hero-image-wrapper {
    position: absolute;
    bottom: -50px; /* Adjust as needed */
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 800px;
    opacity: 0.2;
    z-index: 0;
}

.page-promotions__hero-image {
    width: 100%;
    height: auto;
    display: block;
}

.page-promotions__intro, .page-promotions__promo-list, .page-promotions__how-to-claim, .page-promotions__faq, .page-promotions__cta-bottom {
    padding: 60px 0;
    text-align: center;
}

.page-promotions__section-title {
    font-size: 2.5em;
    color: #FFD700;
    margin-bottom: 25px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.page-promotions__subtitle {
    font-size: 1.1em;
    color: #C0C0C0;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions__section-text {
    font-size: 1.05em;
    color: #E0E0E0;
    max-width: 900px;
    margin: 0 auto;
}

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

.page-promotions__promo-card {
    background-color: #1A3A8A;
    border-radius: 12px;
    padding: 30px;
    text-align: left;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

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

.page-promotions__promo-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    filter: brightness(0.9);
}

.page-promotions__promo-card-title {
    font-size: 1.7em;
    color: #FFD700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.page-promotions__promo-card-description {
    color: #D0D0D0;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-promotions__detail-button {
    display: inline-block;
    background-color: transparent;
    color: #FFD700;
    padding: 10px 20px;
    border: 2px solid #FFD700;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.95em;
    margin-right: 15px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.page-promotions__detail-button:hover {
    background-color: #FFD700;
    color: #0A246A;
}

.page-promotions__cta-button--small {
    padding: 10px 20px;
    font-size: 0.95em;
    margin-top: 10px;
}

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

.page-promotions__step-card {
    background-color: #1A3A8A;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
    text-align: center;
    position: relative;
}

.page-promotions__step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: #FFD700;
    color: #0A246A;
    border-radius: 50%;
    font-size: 1.8em;
    font-weight: bold;
    margin-bottom: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-promotions__step-title {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-promotions__step-description {
    color: #D0D0D0;
    margin-bottom: 20px;
}

.page-promotions__step-image {
    width: 100%;
    max-width: 200px;
    height: auto;
    margin-top: 15px;
    border-radius: 8px;
    filter: grayscale(20%) brightness(0.8);
}

.page-promotions__faq {
    background-color: #0A246A;
}

.page-promotions__accordion {
    max-width: 900px;
    margin: 40px auto 0;
    text-align: left;
}

.page-promotions__accordion-item {
    margin-bottom: 15px;
    border: 1px solid #FFD700;
    border-radius: 8px;
    overflow: hidden;
}

.page-promotions__accordion-header {
    background-color: #1A3A8A;
    color: #FFD700;
    padding: 18px 25px;
    width: 100%;
    text-align: left;
    border: none;
    cursor: pointer;
    font-size: 1.15em;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.page-promotions__accordion-header:hover {
    background-color: #2A4C9C;
}

.page-promotions__accordion-icon {
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

.page-promotions__accordion-header.active .page-promotions__accordion-icon {
    transform: rotate(45deg);
}

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

.page-promotions__accordion-content.active {
    max-height: 300px; /* Adjust based on content */
    padding: 15px 25px 25px;
}

.page-promotions__accordion-content p {
    color: #D0D0D0;
    font-size: 1.0em;
}

.page-promotions__accordion-content a {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
}

.page-promotions__accordion-content a:hover {
    text-decoration: underline;
}

.page-promotions__cta-bottom {
    background: linear-gradient(45deg, #1A3A8A 0%, #0A246A 100%);
    padding: 80px 0;
}

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

/* Responsive Design */
@media (max-width: 992px) {
    .page-promotions__hero-title {
        font-size: 2.8em;
    }
    .page-promotions__section-title {
        font-size: 2em;
    }
    .page-promotions__promo-grid, .page-promotions__steps {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    .page-promotions__promo-card {
        padding: 25px;
    }
    .page-promotions__promo-card-title {
        font-size: 1.5em;
    }
    .page-promotions__hero-image-wrapper {
        display: none; /* Hide image on smaller screens */
    }
}

@media (max-width: 768px) {
    .page-promotions__hero {
        padding: 60px 0;
    }
    .page-promotions__hero-title {
        font-size: 2.2em;
    }
    .page-promotions__hero-description {
        font-size: 1em;
    }
    .page-promotions__cta-button--hero {
        padding: 15px 30px;
        font-size: 1.1em;
    }
    .page-promotions__intro, .page-promotions__promo-list, .page-promotions__how-to-claim, .page-promotions__faq, .page-promotions__cta-bottom {
        padding: 40px 0;
    }
    .page-promotions__section-title {
        font-size: 1.8em;
    }
    .page-promotions__subtitle {
        font-size: 1em;
    }
    .page-promotions__promo-card {
        padding: 20px;
    }
    .page-promotions__promo-card-title {
        font-size: 1.4em;
    }
    .page-promotions__detail-button, .page-promotions__cta-button--small {
        font-size: 0.9em;
        padding: 8px 15px;
    }
    .page-promotions__step-number {
        width: 45px;
        height: 45px;
        font-size: 1.6em;
    }
    .page-promotions__step-title {
        font-size: 1.3em;
    }
    .page-promotions__accordion-header {
        font-size: 1em;
        padding: 15px 20px;
    }
    .page-promotions__accordion-content {
        padding: 10px 20px 20px;
    }
    .page-promotions__cta-button--large {
        padding: 15px 30px;
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .page-promotions__hero-title {
        font-size: 1.8em;
    }
    .page-promotions__section-title {
        font-size: 1.5em;
    }
    .page-promotions__promo-grid, .page-promotions__steps {
        grid-template-columns: 1fr;
    }
    .page-promotions__promo-card-image {
        height: 180px;
    }
    .page-promotions__promo-card-title {
        font-size: 1.2em;
    }
    .page-promotions__accordion-header {
        font-size: 0.9em;
        padding: 12px 15px;
    }
    .page-promotions__accordion-content p {
        font-size: 0.9em;
    }
    .page-promotions__cta-button--hero, .page-promotions__cta-button--large {
        font-size: 1em;
        padding: 12px 25px;
    }
}