/* style/promotions-terms-and-conditions.css */

.page-promotions-terms-and-conditions {
    font-family: 'Arial', sans-serif;
    color: #0A192F; /* Dark blue text on light background */
    line-height: 1.6;
    background-color: #f8f8f8;
}

.page-promotions-terms-and-conditions__hero {
    background: linear-gradient(135deg, #0A192F, #1e3a63); /* Dark blue gradient */
    padding: 80px 20px;
    color: #FFFFFF; /* White text on dark background */
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-promotions-terms-and-conditions__hero-content {
    max-width: 900px;
    z-index: 1;
    position: relative;
}

.page-promotions-terms-and-conditions__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold for title highlight */
    font-weight: bold;
}

.page-promotions-terms-and-conditions__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #e0e0e0;
}

.page-promotions-terms-and-conditions__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
    z-index: 0;
}

.page-promotions-terms-and-conditions__section {
    padding: 60px 0;
    border-bottom: 1px solid #e0e0e0;
}

.page-promotions-terms-and-conditions__section:last-of-type {
    border-bottom: none;
}

.page-promotions-terms-and-conditions__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 40px;
}

.page-promotions-terms-and-conditions__section-title {
    width: 100%;
    font-size: 2.5em;
    color: #0A192F; /* Dark blue title */
    margin-bottom: 40px;
    text-align: center;
    font-weight: bold;
}

.page-promotions-terms-and-conditions__content-block {
    flex: 2;
    min-width: 300px;
}

.page-promotions-terms-and-conditions__content-block h3 {
    font-size: 1.8em;
    color: #0A192F; /* Dark blue heading */
    margin-top: 30px;
    margin-bottom: 15px;
    border-left: 5px solid #FFD700; /* Gold accent */
    padding-left: 15px;
}

.page-promotions-terms-and-conditions__content-block p {
    margin-bottom: 15px;
    font-size: 1.1em;
    color: #333333;
}

.page-promotions-terms-and-conditions__content-block ul,
.page-promotions-terms-and-conditions__content-block ol {
    margin-bottom: 20px;
    padding-left: 25px;
}

.page-promotions-terms-and-conditions__content-block li {
    margin-bottom: 10px;
    color: #444444;
    font-size: 1.05em;
}

.page-promotions-terms-and-conditions__link {
    color: #FFD700; /* Gold link */
    text-decoration: none;
    font-weight: bold;
}

.page-promotions-terms-and-conditions__link:hover {
    text-decoration: underline;
}

.page-promotions-terms-and-conditions__button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    margin-top: 20px;
    cursor: pointer;
    border: none;
    font-size: 1.1em;
}

.page-promotions-terms-and-conditions__button--primary {
    background-color: #FFD700; /* Gold button */
    color: #0A192F; /* Dark blue text */
}

.page-promotions-terms-and-conditions__button--primary:hover {
    background-color: #e6c200;
}

.page-promotions-terms-and-conditions__button--secondary {
    background-color: #0A192F; /* Dark blue button */
    color: #FFD700; /* Gold text */
    border: 1px solid #FFD700;
}

.page-promotions-terms-and-conditions__button--secondary:hover {
    background-color: #1e3a63;
    color: #FFFFFF;
}

.page-promotions-terms-and-conditions__cta-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.page-promotions-terms-and-conditions__image {
    flex: 1;
    min-width: 250px;
    max-width: 400px;
    height: auto;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin: auto;
}

.page-promotions-terms-and-conditions__image--left {
    order: -1; /* Puts image to the left on larger screens */
}

.page-promotions-terms-and-conditions__image--right {
    order: 1; /* Puts image to the right on larger screens */
}

.page-promotions-terms-and-conditions__responsible-gaming,
.page-promotions-terms-and-conditions__dispute-resolution {
    background-color: #f0f4f7;
}

.page-promotions-terms-and-conditions__conclusion {
    text-align: center;
    background-color: #0A192F; /* Dark blue background */
    color: #FFFFFF; /* White text */
}

.page-promotions-terms-and-conditions__conclusion .page-promotions-terms-and-conditions__section-title {
    color: #FFD700; /* Gold title */
}

.page-promotions-terms-and-conditions__conclusion p {
    color: #e0e0e0;
    font-size: 1.1em;
    margin-bottom: 20px;
}

.highlight-text {
    color: #FFD700;
    font-weight: bold;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-promotions-terms-and-conditions__hero-title {
        font-size: 2.8em;
    }
    .page-promotions-terms-and-conditions__section-title {
        font-size: 2em;
    }
    .page-promotions-terms-and-conditions__content-block h3 {
        font-size: 1.5em;
    }
    .page-promotions-terms-and-conditions__container {
        flex-direction: column;
        align-items: center;
    }
    .page-promotions-terms-and-conditions__image--left,
    .page-promotions-terms-and-conditions__image--right {
        order: 0; /* Reset order for smaller screens */
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .page-promotions-terms-and-conditions__hero-title {
        font-size: 2.2em;
    }
    .page-promotions-terms-and-conditions__hero-description {
        font-size: 1em;
    }
    .page-promotions-terms-and-conditions__section-title {
        font-size: 1.8em;
    }
    .page-promotions-terms-and-conditions__content-block h3 {
        font-size: 1.3em;
    }
    .page-promotions-terms-and-conditions__button {
        padding: 10px 20px;
        font-size: 1em;
    }
    .page-promotions-terms-and-conditions__cta-group {
        flex-direction: column;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .page-promotions-terms-and-conditions__hero {
        padding: 60px 15px;
    }
    .page-promotions-terms-and-conditions__hero-title {
        font-size: 1.8em;
    }
    .page-promotions-terms-and-conditions__section {
        padding: 40px 0;
    }
    .page-promotions-terms-and-conditions__section-title {
        font-size: 1.5em;
    }
    .page-promotions-terms-and-conditions__container {
        padding: 0 15px;
    }
    .page-promotions-terms-and-conditions__image {
        min-width: unset;
        width: 100%;
    }
}