/* style/promotions-bonus-terms.css */
:root {
    --primary-color: #FFD700;
    --secondary-color: #8B0000;
    --text-color-dark: #333333;
    --text-color-light: #ffffff;
    --background-color-light: #f4f4f4;
    --border-color: #e0e0e0;
}

.page-promotions-bonus-terms {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-color-dark);
    background-color: var(--background-color-light);
}

/* Hero Section */
.page-promotions-bonus-terms__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    padding-top: var(--header-offset, 120px);
    background-color: #1a1a1a; /* Dark background for hero to make gold/red pop */
    color: var(--text-color-light);
    overflow: hidden;
}

.page-promotions-bonus-terms__hero-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.page-promotions-bonus-terms__hero-image {
    width: 100%;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.page-promotions-bonus-terms__hero-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-promotions-bonus-terms__hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    padding: 0 15px;
}

.page-promotions-bonus-terms__hero-title {
    font-size: 3.2em;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-promotions-bonus-terms__hero-description {
    font-size: 1.3em;
    color: var(--text-color-light);
    max-width: 800px;
    margin: 0 auto 30px auto;
}

.page-promotions-bonus-terms__cta-button {
    display: inline-block;
    padding: 18px 45px;
    background: var(--primary-color);
    color: var(--text-color-light);
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.2em;
    font-weight: bold;
    margin-top: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    border: none;
    cursor: pointer;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-promotions-bonus-terms__cta-button:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* General Section Styles */
.page-promotions-bonus-terms__section {
    padding: 60px 20px;
    background-color: var(--background-color-light);
    color: var(--text-color-dark);
}

.page-promotions-bonus-terms__section:nth-of-type(even) {
    background-color: #fcfcfc;
}

.page-promotions-bonus-terms__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: border-box;
}

.page-promotions-bonus-terms__section-title {
    font-size: 2.5em;
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
}

.page-promotions-bonus-terms__text-block {
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 30px;
    text-align: justify;
}