/* style/promotions.css */
.page-promotions {
    font-family: 'Arial', sans-serif;
    color: #f5f5f5; /* Light text for dark background */
    background-color: #0A192F; /* Main background color */
    line-height: 1.6;
}

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

.page-promotions__hero-section {
    background: linear-gradient(135deg, #0A192F 0%, #1a3a60 100%);
    padding: 100px 0;
    text-align: center;
    color: #FFD700;
    position: relative;
    overflow: hidden;
}

.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-subtitle {
    font-size: 1.3em;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #f5f5f5;
}

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

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

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

.page-promotions__btn--primary:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(255, 215, 0, 0.4);
}

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

.page-promotions__btn--secondary:hover {
    background-color: #FFD700;
    color: #0A192F;
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(255, 215, 0, 0.4);
}

.page-promotions__intro-section, 
.page-promotions__category-section, 
.page-promotions__how-to-participate, 
.page-promotions__why-choose, 
.page-promotions__faq-section, 
.page-promotions__cta-section {
    padding: 60px 0;
    background-color: #0A192F;
    color: #f5f5f5;
}

.page-promotions__section-title {
    font-size: 2.5em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-promotions__text-content {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #e0e0e0;
}

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

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

.page-promotions__promotion-item {
    background-color: #1a2a40;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions__promotion-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

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

.page-promotions__promotion-title a {
    color: #FFD700;
    text-decoration: none;
}

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

.page-promotions__promotion-description {
    font-size: 1em;
    color: #c0c0c0;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-promotions__promotion-image {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-promotions__btn--link {
    background-color: #0A192F;
    color: #FFD700;
    border: 1px solid #FFD700;
    padding: 10px 20px;
    font-size: 0.95em;
    margin-top: auto; /* Push to bottom */
}

.page-promotions__btn--link:hover {
    background-color: #FFD700;
    color: #0A192F;
}

.page-promotions__steps-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-promotions__steps-list li {
    background-color: #1a2a40;
    margin-bottom: 15px;
    padding: 20px;
    border-radius: 8px;
    font-size: 1.1em;
    color: #e0e0e0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

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

.page-promotions__steps-list li a {
    color: #FFD700;
    text-decoration: none;
}

.page-promotions__steps-list li a:hover {
    text-decoration: underline;
}

.page-promotions__mt-large {
    margin-top: 40px;
}

.page-promotions__bullet-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-promotions__bullet-list li {
    background-color: #1a2a40;
    margin-bottom: 15px;
    padding: 15px 20px;
    border-left: 5px solid #FFD700;
    border-radius: 5px;
    font-size: 1.1em;
    color: #e0e0e0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-promotions__faq-item {
    background-color: #1a2a40;
    margin-bottom: 20px;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

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

.page-promotions__faq-answer {
    font-size: 1.1em;
    color: #c0c0c0;
}

.page-promotions__cta-section {
    text-align: center;
    padding: 80px 0;
    background-color: #0A192F;
}

.page-promotions__cta-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 40px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-promotions__hero-title {
        font-size: 2.5em;
    }
    .page-promotions__hero-subtitle {
        font-size: 1em;
    }
    .page-promotions__section-title {
        font-size: 2em;
    }
    .page-promotions__promotion-list {
        grid-template-columns: 1fr;
    }
    .page-promotions__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-promotions__hero-actions, .page-promotions__cta-actions {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .page-promotions__hero-title {
        font-size: 2em;
    }
    .page-promotions__section-title {
        font-size: 1.8em;
    }
    .page-promotions__text-content, 
    .page-promotions__steps-list li, 
    .page-promotions__bullet-list li, 
    .page-promotions__faq-answer {
        font-size: 0.95em;
    }
    .page-promotions__faq-question {
        font-size: 1.2em;
    }
}