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

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

.page-promotions__hero {
    background: linear-gradient(135deg, #0A1931 0%, #1a3a6b 100%);
    color: #FFFFFF;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 450px;
}

.page-promotions__hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 20px;
}

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

.page-promotions__hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
    line-height: 1.8;
}

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

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

.page-promotions__btn--primary {
    background-color: #FFD700;
    color: #0A1931;
}

.page-promotions__btn--primary:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
}

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

.page-promotions__btn--secondary:hover {
    background-color: #FFD700;
    color: #0A1931;
    transform: translateY(-2px);
}

.page-promotions__section {
    padding: 60px 0;
}

.page-promotions__section:nth-of-type(even) {
    background-color: #1A2C4A;
}

.page-promotions__section-title {
    font-size: 2.5em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 10px;
}

.page-promotions__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    border-radius: 2px;
}

.page-promotions__text {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 20px auto;
    color: #B0B0B0;
}

.page-promotions__highlight {
    color: #FFD700;
    font-weight: bold;
}

.page-promotions__inline-link {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-promotions__inline-link:hover {
    color: #e6c200;
    text-decoration: underline;
}

.page-promotions__features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
    text-align: center;
}

.page-promotions__feature-item {
    background-color: #1A2C4A;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, background-color 0.3s ease;
    border: 1px solid #FFD70033;
}

.page-promotions__feature-item:hover {
    transform: translateY(-5px);
    background-color: #2a4168;
}

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

.page-promotions__feature-text {
    color: #B0B0B0;
    font-size: 1em;
}

.page-promotions__promo-categories .page-promotions__text {
    margin-bottom: 40px;
}

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

.page-promotions__category-card {
    background-color: #0A1931;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #FFD70055;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

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

.page-promotions__category-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-bottom: 1px solid #FFD70055;
}

.page-promotions__category-title {
    font-size: 1.6em;
    color: #FFD700;
    margin: 25px 15px 15px 15px;
}

.page-promotions__category-description {
    color: #B0B0B0;
    padding: 0 20px;
    margin-bottom: 25px;
    flex-grow: 1;
}

.page-promotions__category-card .page-promotions__btn--secondary {
    margin: 0 20px 25px 20px;
    width: calc(100% - 40px);
}

.page-promotions__how-to-claim .page-promotions__text {
    margin-bottom: 30px;
}

.page-promotions__steps-list {
    list-style: none;
    padding: 0;
    max-width: 900px;
    margin: 0 auto 40px auto;
    text-align: left;
}

.page-promotions__steps-list li {
    background-color: #1A2C4A;
    margin-bottom: 15px;
    padding: 20px 25px;
    border-radius: 8px;
    font-size: 1.1em;
    color: #E0E0E0;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    border-left: 5px solid #FFD700;
}

.page-promotions__steps-list li strong {
    color: #FFD700;
}

.page-promotions__terms .page-promotions__text {
    margin-bottom: 30px;
}

.page-promotions__terms-list {
    list-style-type: disc;
    padding-left: 40px;
    max-width: 900px;
    margin: 0 auto;
    color: #B0B0B0;
    font-size: 1.05em;
}

.page-promotions__terms-list li {
    margin-bottom: 15px;
}

.page-promotions__faq-item {
    background-color: #1A2C4A;
    border-radius: 8px;
    margin-bottom: 20px;
    padding: 25px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    border: 1px solid #FFD70033;
}

.page-promotions__faq-question {
    font-size: 1.4em;
    color: #FFD700;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-promotions__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2em;
    color: #FFD700;
    transition: transform 0.3s ease;
}

.page-promotions__faq-item.active .page-promotions__faq-question::after {
    content: '-';
}

.page-promotions__faq-answer {
    font-size: 1.05em;
    color: #B0B0B0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out;
}

.page-promotions__faq-item.active .page-promotions__faq-answer {
    max-height: 200px; /* Adjust based on content */
    padding-top: 15px;
}

.page-promotions__cta {
    background: linear-gradient(90deg, #0A1931, #1A2C4A);
    padding: 80px 0;
    text-align: center;
}

.page-promotions__cta-content {
    max-width: 900px;
}

.page-promotions__cta .page-promotions__section-title {
    color: #FFD700;
}

.page-promotions__cta .page-promotions__text {
    color: #E0E0E0;
    margin-bottom: 40px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-promotions__hero-title {
        font-size: 3em;
    }
    .page-promotions__hero-description {
        font-size: 1.1em;
    }
    .page-promotions__section-title {
        font-size: 2em;
    }
    .page-promotions__features, .page-promotions__category-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-promotions__hero {
        padding: 80px 0;
    }
    .page-promotions__hero-title {
        font-size: 2.5em;
    }
    .page-promotions__hero-description {
        font-size: 1em;
    }
    .page-promotions__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-promotions__section {
        padding: 40px 0;
    }
    .page-promotions__section-title {
        font-size: 1.8em;
    }
    .page-promotions__text {
        font-size: 0.95em;
    }
    .page-promotions__feature-title {
        font-size: 1.5em;
    }
    .page-promotions__category-image {
        height: 180px;
    }
    .page-promotions__category-title {
        font-size: 1.4em;
    }
    .page-promotions__steps-list li, .page-promotions__terms-list li, .page-promotions__faq-answer {
        font-size: 0.95em;
    }
    .page-promotions__faq-question {
        font-size: 1.2em;
    }
}

@media (max-width: 480px) {
    .page-promotions__hero {
        padding: 60px 0;
    }
    .page-promotions__hero-title {
        font-size: 2em;
    }
    .page-promotions__hero-description {
        font-size: 0.9em;
    }
    .page-promotions__btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    .page-promotions__section {
        padding: 30px 0;
    }
    .page-promotions__section-title {
        font-size: 1.5em;
    }
    .page-promotions__features, .page-promotions__category-grid {
        grid-template-columns: 1fr;
    }
    .page-promotions__container {
        padding: 0 15px;
    }
    .page-promotions__steps-list, .page-promotions__terms-list {
        padding-left: 20px;
    }
    .page-promotions__faq-question {
        font-size: 1.1em;
    }
}