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

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

/* Hero Section */
.page-promotions__hero-section {
    background: linear-gradient(135deg, #003366 0%, #004488 100%); /* Dark blue gradient */
    color: #fff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-promotions__hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 204, 0, 0.1) 0%, transparent 70%); /* Subtle gold radial glow */
    animation: page-promotions__rotate 20s linear infinite;
    z-index: 0;
}

@keyframes page-promotions__rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.page-promotions__hero-section .page-promotions__container {
    position: relative;
    z-index: 1;
}

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

.page-promotions__hero-title .highlight {
    color: #FFCC00; /* Gold highlight for brand name */
}

.page-promotions__hero-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #e0e0e0;
}

.page-promotions__cta-button {
    display: inline-block;
    background-color: #FFCC00; /* Gold */
    color: #003366; /* Dark blue */
    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: #e6b800; /* Slightly darker gold */
    transform: translateY(-3px);
}

/* Content Section */
.page-promotions__content-section {
    padding: 60px 0;
    background-color: #fff;
}

.page-promotions__section-title {
    font-size: 2.5em;
    color: #003366; /* Dark blue */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

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

.page-promotions__subsection-title {
    font-size: 1.8em;
    color: #003366;
    margin-top: 40px;
    margin-bottom: 20px;
    border-left: 5px solid #FFCC00;
    padding-left: 15px;
}

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

.page-promotions__image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 30px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-promotions__image--full-width {
    max-width: 100%;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions__list {
    list-style: none;
    padding: 0;
    margin: 20px 0 40px;
}

.page-promotions__list li {
    background-color: #f0f8ff; /* Light blue for list items */
    margin-bottom: 10px;
    padding: 15px 20px;
    border-radius: 8px;
    border-left: 5px solid #003366;
    font-size: 1.05em;
    color: #333;
}

.page-promotions__list li strong {
    color: #003366; /* Dark blue for emphasis */
}

/* Promotions Grid */
.page-promotions__promotions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 60px;
}

.page-promotions__promotion-card {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    text-align: center;
    border: 1px solid #eee;
}

.page-promotions__promotion-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-promotions__card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid #eee;
}

.page-promotions__card-title {
    font-size: 1.5em;
    color: #003366;
    margin: 20px 15px 10px;
    flex-grow: 1;
}

.page-promotions__card-title a {
    text-decoration: none;
    color: #003366;
    transition: color 0.3s ease;
}

.page-promotions__card-title a:hover {
    color: #FFCC00;
}

.page-promotions__card-description {
    font-size: 0.95em;
    color: #666;
    padding: 0 15px 20px;
}

.page-promotions__card-button {
    display: inline-block;
    background-color: #FFCC00; /* Gold */
    color: #003366; /* Dark blue */
    padding: 12px 25px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.95em;
    margin: 0 15px 20px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-promotions__card-button:hover {
    background-color: #e6b800;
    transform: translateY(-2px);
}

/* Numbered List (How to Claim) */
.page-promotions__numbered-list {
    list-style: decimal;
    padding-left: 25px;
    margin: 30px 0 50px;
    font-size: 1.1em;
    color: #444;
}

.page-promotions__numbered-list li {
    margin-bottom: 15px;
    padding-left: 10px;
}

.page-promotions__numbered-list li strong {
    color: #003366;
}

/* FAQ Section */
.page-promotions__faq-section {
    margin-top: 40px;
    margin-bottom: 60px;
}

.page-promotions__faq-item {
    background-color: #f9f9f9;
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 20px 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-promotions__faq-question {
    font-size: 1.3em;
    color: #003366;
    margin-top: 0;
    margin-bottom: 10px;
}

.page-promotions__faq-answer {
    font-size: 1em;
    color: #555;
}

/* Action Area */
.page-promotions__action-area {
    text-align: center;
    margin-top: 50px;
    margin-bottom: 80px;
}

.page-promotions__cta-button--large {
    padding: 18px 40px;
    font-size: 1.3em;
    border-radius: 10px;
}

/* Related Content */
.page-promotions__related-content {
    background-color: #f0f8ff;
    padding: 50px 0;
    text-align: center;
}

.page-promotions__related-links {
    margin-top: 30px;
}

.page-promotions__related-link {
    display: inline-block;
    margin: 0 15px 15px;
    color: #003366;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    padding: 10px 20px;
    border: 2px solid #003366;
    border-radius: 25px;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.page-promotions__related-link:hover {
    background-color: #003366;
    color: #fff;
    border-color: #FFCC00;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-promotions__hero-title {
        font-size: 2.8em;
    }
    .page-promotions__section-title {
        font-size: 2em;
    }
    .page-promotions__promotions-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-promotions__hero-section {
        padding: 60px 0;
    }
    .page-promotions__hero-title {
        font-size: 2.2em;
    }
    .page-promotions__hero-description {
        font-size: 1em;
    }
    .page-promotions__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-promotions__section-title {
        font-size: 1.8em;
    }
    .page-promotions__subsection-title {
        font-size: 1.5em;
    }
    .page-promotions__text-block, .page-promotions__list li, .page-promotions__numbered-list li, .page-promotions__faq-answer {
        font-size: 0.95em;
    }
    .page-promotions__card-title {
        font-size: 1.3em;
    }
    .page-promotions__card-description {
        font-size: 0.9em;
    }
    .page-promotions__card-button {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    .page-promotions__faq-question {
        font-size: 1.1em;
    }
    .page-promotions__cta-button--large {
        padding: 15px 30px;
        font-size: 1.1em;
    }
    .page-promotions__related-link {
        font-size: 1em;
        padding: 8px 15px;
        margin: 0 10px 10px;
    }
}

@media (max-width: 480px) {
    .page-promotions__hero-title {
        font-size: 1.8em;
    }
    .page-promotions__section-title {
        font-size: 1.5em;
    }
    .page-promotions__promotions-grid {
        grid-template-columns: 1fr;
    }
    .page-promotions__card-image {
        height: 180px;
    }
    .page-promotions__subsection-title {
        font-size: 1.3em;
    }
}