/* style/promotions.css */
.page-promotions {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333333; /* Default text color for light background */
    background-color: #ffffff; /* Explicitly set based on instructions */
}

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

/* Hero Section */
.page-promotions__hero-section {
    position: relative;
    padding: 120px 0 60px;
    background-color: #017439;
    color: #ffffff;
    text-align: center;
    overflow: hidden;
}

.page-promotions__hero-content {
    position: relative;
    z-index: 2;
    padding-top: var(--header-offset, 120px); /* Apply header offset */
    padding-bottom: 40px;
}

.page-promotions__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #FFFF00; /* Register and Login font color for emphasis */
}

.page-promotions__hero-description {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 30px;
}

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

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

/* General Sections */
.page-promotions__overview-section,
.page-promotions__featured-section,
.page-promotions__terms-section,
.page-promotions__faq-section {
    padding: 60px 0;
    background-color: #ffffff;
    color: #333333;
}

.page-promotions__dark-bg {
    background-color: #017439;
    color: #ffffff;
}

.page-promotions__light-bg {
    background-color: #ffffff;
    color: #333333;
}

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

.page-promotions__dark-bg .page-promotions__section-title {
    color: #ffffff;
}

.page-promotions__text-block {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: justify;
}

/* Buttons */
.page-promotions__btn-primary,
.page-promotions__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;
    cursor: pointer;
    text-align: center;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-promotions__btn-primary {
    background-color: #C30808; /* Register/Login color */
    color: #FFFF00; /* Register/Login font color */
    border: 2px solid #C30808;
}

.page-promotions__btn-primary:hover {
    background-color: #e02c2c;
    border-color: #e02c2c;
}

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

.page-promotions__dark-bg .page-promotions__btn-secondary {
    color: #ffffff;
    border-color: #ffffff;
}