/* style/resources-latest-promotions-guide.css */

/* Base styles and container for the page */
.page-resources-latest-promotions-guide {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #ffffff; /* Default text color for dark body background */
    background-color: #1a1a1a; /* Matching shared.css body background for consistency */
}

.page-resources-latest-promotions-guide__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
}

/* Section specific styles */
.page-resources-latest-promotions-guide__hero-section {
    position: relative;
    padding: 120px 0 60px; /* Adjust padding-top to account for fixed header */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    min-height: 600px; /* Minimum height for hero */
}

.page-resources-latest-promotions-guide__hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Dark overlay for text readability */
    z-index: 1;
}

.page-resources-latest-promotions-guide__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.page-resources-latest-promotions-guide__hero-section .page-resources-latest-promotions-guide__container {
    position: relative;
    z-index: 2;
}

.page-resources-latest-promotions-guide__hero-title {
    font-size: 3.5em;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-resources-latest-promotions-guide__hero-description {
    font-size: 1.3em;
    color: #f0f0f0;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-resources-latest-promotions-guide__hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap; /* Ensure buttons wrap on smaller screens */
}

/* General section styles */
.page-resources-latest-promotions-guide__intro-section,
.page-resources-latest-promotions-guide__guide-section,
.page-resources-latest-promotions-guide__benefits-section,
.page-resources-latest-promotions-guide__faq-section {
    background-color: #ffffff; /* Light background for contrast */
    color: #333333; /* Dark text for light background */
    padding: 60px 0;
}

.page-resources-latest-promotions-guide__promotions-types,
.page-resources-latest-promotions-guide__terms-section,
.page-resources-latest-promotions-guide__video-section,
.page-resources-latest-promotions-guide__cta-final-section {
    background-color: #1a1a1a; /* Dark background */
    color: #ffffff; /* Light text */
    padding: 60px 0;
}

.page-resources-latest-promotions-guide__section-title {
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 20px;
    color: #26A9E0; /* Brand color for titles */
}

.page-resources-latest-promotions-guide__section-description {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px;
}

/* Buttons */
.page-resources-latest-promotions-guide__btn-primary,
.page-resources-latest-promotions-guide__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    box-sizing: border-box; /* Crucial for button responsiveness */
    text-align: center;
    white-space: normal; /* Allow text to wrap */
    word-wrap: break-word; /* Allow text to break words */
}