:root {
    --primary-color: #11A84E;
    --secondary-color: #22C768;
    --button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    --card-bg: #11271B;
    --background-color: #08160F;
    --text-main-color: #F2FFF6;
    --text-secondary-color: #A7D9B8;
    --border-color: #2E7A4E;
    --glow-color: #57E38D;
    --gold-color: #F2C14E;
    --divider-color: #1E3A2A;
    --deep-green: #0A4B2C;
}

.page-promotions {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-main-color); /* Default text color for the page */
    background-color: var(--background-color); /* Main background for the page */
}

/* Hero Section */
.page-promotions__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column; /* Ensure image is above content */
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    padding-top: 10px; /* Small top padding, body handles header offset */
    text-align: center;
    overflow: hidden;
    background-color: var(--background-color); /* Fallback/background for hero */
}

.page-promotions__hero-image {
    width: 100%;
    height: auto;
    max-height: 675px; /* Limit height for aesthetic */
    object-fit: cover;
    display: block;
    margin-bottom: 30px; /* Space between image and content */
    border-radius: 10px;
    filter: none; /* Ensure no CSS filter */
}

.page-promotions__hero-content {
    position: relative;
    max-width: 900px;
    width: 100%; /* Ensure content area takes full width for responsive max-width */
    z-index: 2;
}

.page-promotions__main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem); /* Responsive font size for H1 */
    color: var(--gold-color);
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
    text-shadow: 0 0 10px rgba(87, 227, 141, 0.5); /* Subtle glow */
}

.page-promotions__tagline {
    font-size: 1.25rem;
    color: var(--text-secondary-color);
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions__cta-buttons {
    display: flex;
    flex-wrap: wrap; /* Allow wrapping on small screens */
    justify-content: center;
    gap: 20px;
}

.page-promotions__btn-primary,
.page-promotions__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    max-width: 100%; /* Ensure buttons don't overflow */
    box-sizing: border-box;
    white-space: normal; /* Allow text to wrap */
    word-wrap: break-word; /* Break long words */
}

.page-promotions__btn-primary {
    background: var(--button-gradient);
    color: #ffffff; /* White text for primary button */
    border: 2px solid transparent;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-promotions__btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    opacity: 0.9;
}

.page-promotions__btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-promotions__btn-secondary:hover {
    background: var(--primary-color);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-promotions__btn-small {
    padding: 10px 20px;
    font-size: 0.9rem;
}

/* General Section Styling */
.page-promotions__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.page-promotions__section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--gold-color);
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    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: var(--glow-color);
    border-radius: 2px;
}

.page-promotions__text-block {
    font-size: 1rem;
    color: var(--text-main-color);
    margin-bottom: 20px;
    text-align: justify;
}

.page-promotions__text-secondary {
    color: var(--text-secondary-color);
}

.page-promotions__light-bg {
    background-color: #ffffff; /* Use white for light background for contrast */
    color: #333333; /* Dark text for light background */
    padding: 60px 0;
}

.page-promotions__light-bg .page-promotions__section-title {
    color: var(--primary-color); /* Primary color for titles on light background */
}

.page-promotions__light-bg .page-promotions__text-block,
.page-promotions__light-bg .page-promotions__numbered-list li {
    color: #333333; /* Ensure dark text on light background */
}

.page-promotions__light-bg a {
    color: var(--primary-color);
    text-decoration: underline;
}

.page-promotions__dark-bg {
    background-color: var(--background-color);
    color: var(--text-main-color);
    padding: 60px 0;
}

.page-promotions__dark-bg a {
    color: var(--glow-color);
    text-decoration: underline;
}

.page-promotions__dark-bg .page-promotions__text-block,
.page-promotions__dark-bg .page-promotions__feature-list li,
.page-promotions__card-description,
.page-promotions__faq-answer {
    color: var(--text-secondary-color); /* Use secondary text color on dark backgrounds */
}
.page-promotions__dark-bg .page-promotions__section-title,
.page-promotions__card-title {
    color: var(--gold-color); /* Gold color for titles on dark backgrounds */
}

/* Promotions Grid */
.page-promotions__promotions-grid {
    padding-bottom: 80px;
}

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