/* style/promotions-holiday-specials.css */
.page-promotions-holiday-specials {
    font-family: 'Arial', sans-serif;
    color: #FFFFFF; /* Light text on dark background */
    background-color: #0A2342; /* Main dark background */
    line-height: 1.6;
}

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

.page-promotions-holiday-specials h1,
.page-promotions-holiday-specials h2 {
    color: #FFD700; /* Gold for main headings */
    text-align: center;
    margin-bottom: 30px;
    font-weight: bold;
}

.page-promotions-holiday-specials h1 {
    font-size: 2.8em;
    padding-top: 40px;
}

.page-promotions-holiday-specials h2 {
    font-size: 2.2em;
    margin-top: 60px;
}

.page-promotions-holiday-specials h3 {
    color: #FFD700; /* Gold for subheadings */
    font-size: 1.6em;
    margin-top: 25px;
}

.page-promotions-holiday-specials h4 {
    color: #FFFFFF;
    font-size: 1.2em;
    margin-top: 15px;
}

.page-promotions-holiday-specials p {
    font-size: 1.1em;
    margin-bottom: 15px;
    color: #E0E0E0;
}

.page-promotions-holiday-specials a {
    color: #FFD700;
    text-decoration: none;
}

.page-promotions-holiday-specials a:hover {
    text-decoration: underline;
}

/* Hero Section */
.page-promotions-holiday-specials__hero {
    background: linear-gradient(135deg, #0A2342 0%, #1A3A5E 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-promotions-holiday-specials__hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-promotions-holiday-specials__hero p {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: #E0E0E0;
}

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

.page-promotions-holiday-specials__cta-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.page-promotions-holiday-specials__button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    text-transform: uppercase;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
    white-space: nowrap;
}

.page-promotions-holiday-specials__button--primary {
    background-color: #FFD700;
    color: #0A2342;
    border: 2px solid #FFD700;
}

.page-promotions-holiday-specials__button--primary:hover {
    background-color: #E6C200;
    color: #000000;
    transform: translateY(-3px);
    text-decoration: none;
}

.page-promotions-holiday-specials__button--secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-promotions-holiday-specials__button--secondary:hover {
    background-color: #FFD700;
    color: #0A2342;
    transform: translateY(-3px);
    text-decoration: none;
}

/* Introduction Section */
.page-promotions-holiday-specials__introduction {
    padding: 60px 0;
    background-color: #0A2342;
}

.page-promotions-holiday-specials__introduction p {
    text-align: justify;
    margin-bottom: 20px;
}

.page-promotions-holiday-specials__image-content {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 40px auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Promo Details Section */
.page-promotions-holiday-specials__promo-details {
    background-color: #1A3A5E;
    padding: 60px 0;
}

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

.page-promotions-holiday-specials__promo-card {
    background-color: #0A2342;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-promotions-holiday-specials__promo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-promotions-holiday-specials__promo-card h3 {
    margin-bottom: 15px;
    font-size: 1.5em;
}

.page-promotions-holiday-specials__promo-card p {
    color: #C0C0C0;
    font-size: 1em;
    flex-grow: 1;
    margin-bottom: 20px;
}

.page-promotions-holiday-specials__promo-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    object-fit: contain;
}

.page-promotions-holiday-specials__note {
    text-align: center;
    font-style: italic;
    margin-top: 40px;
    color: #AAAAAA;
    font-size: 0.95em;
}

/* How to Participate Section */
.page-promotions-holiday-specials__how-to-participate {
    padding: 60px 0;
    background-color: #0A2342;
}

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

.page-promotions-holiday-specials__step-card {
    background-color: #1A3A5E;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions-holiday-specials__step-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    object-fit: contain;
}

.page-promotions-holiday-specials__step-card h4 {
    color: #FFD700;
    margin-bottom: 10px;
}

.page-promotions-holiday-specials__step-card p {
    color: #C0C0C0;
    font-size: 0.95em;
}

.page-promotions-holiday-specials__cta-bottom {
    text-align: center;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Why Choose Section */
.page-promotions-holiday-specials__why-choose {
    background-color: #1A3A5E;
    padding: 60px 0;
}

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

.page-promotions-holiday-specials__advantage-card {
    background-color: #0A2342;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.page-promotions-holiday-specials__advantage-card:hover {
    transform: translateY(-5px);
}

.page-promotions-holiday-specials__advantage-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    object-fit: contain;
}

.page-promotions-holiday-specials__advantage-card h4 {
    color: #FFD700;
    margin-bottom: 10px;
}

.page-promotions-holiday-specials__advantage-card p {
    color: #C0C0C0;
    font-size: 0.95em;
    text-align: justify;
}

/* FAQ Section */
.page-promotions-holiday-specials__faq {
    padding: 60px 0;
    background-color: #0A2342;
}

.page-promotions-holiday-specials__faq-item {
    background-color: #1A3A5E;
    border-radius: 10px;
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.page-promotions-holiday-specials__faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #FFD700;
    font-size: 1.3em;
    margin: 0;
    transition: background-color 0.3s ease;
}

.page-promotions-holiday-specials__faq-question::after {
    content: '+';
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

.page-promotions-holiday-specials__faq-question.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-promotions-holiday-specials__faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
    background-color: #0A2342;
}

.page-promotions-holiday-specials__faq-answer p {
    padding-bottom: 20px;
    color: #E0E0E0;
    font-size: 1em;
}

.page-promotions-holiday-specials__faq-item.active .page-promotions-holiday-specials__faq-answer {
    max-height: 500px; /* Adjust as needed */
    padding-top: 15px;
    padding-bottom: 20px;
}

/* Final CTA Section */
.page-promotions-holiday-specials__final-cta {
    background-color: #0A2342;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-promotions-holiday-specials__final-cta h2 {
    font-size: 2.5em;
    color: #FFD700;
}

.page-promotions-holiday-specials__final-cta p {
    font-size: 1.2em;
    margin-bottom: 40px;
    color: #E0E0E0;
}

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

.page-promotions-holiday-specials__final-cta .page-promotions-holiday-specials__cta-group {
    position: relative;
    z-index: 2;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-promotions-holiday-specials h1 {
        font-size: 2.2em;
    }

    .page-promotions-holiday-specials h2 {
        font-size: 1.8em;
    }

    .page-promotions-holiday-specials h3 {
        font-size: 1.3em;
    }

    .page-promotions-holiday-specials__hero p {
        font-size: 1.1em;
    }

    .page-promotions-holiday-specials__button {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-promotions-holiday-specials__promo-grid,
    .page-promotions-holiday-specials__steps-grid,
    .page-promotions-holiday-specials__advantages-grid {
        grid-template-columns: 1fr;
    }

    .page-promotions-holiday-specials__cta-group {
        flex-direction: column;
        gap: 15px;
    }
}

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

    .page-promotions-holiday-specials h2 {
        font-size: 1.5em;
    }

    .page-promotions-holiday-specials__hero {
        padding: 60px 0;
    }

    .page-promotions-holiday-specials__button {
        width: 100%;
    }
}