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

.page-promotions-terms-conditions {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0;
    line-height: 1.6;
    background-color: #0A192F;
}

.page-promotions-terms-conditions__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-promotions-terms-conditions__hero-section {
    background: linear-gradient(135deg, #0A192F 0%, #1A3A5F 100%);
    padding: 80px 0;
    text-align: center;
    color: #FFD700;
    position: relative;
    overflow: hidden;
}

.page-promotions-terms-conditions__hero-section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    filter: blur(50px);
}

.page-promotions-terms-conditions__hero-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    filter: blur(50px);
}

.page-promotions-terms-conditions__main-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: bold;
}

.page-promotions-terms-conditions__subtitle {
    font-size: 1.5em;
    color: #E0E0E0;
    margin-bottom: 40px;
}

.page-promotions-terms-conditions__content-section {
    padding: 60px 0;
    background-color: #0A192F;
}

.page-promotions-terms-conditions__section-title {
    font-size: 2.5em;
    color: #FFD700;
    margin-top: 50px;
    margin-bottom: 25px;
    border-bottom: 3px solid #FFD700;
    padding-bottom: 10px;
    text-align: left;
    font-weight: bold;
}

.page-promotions-terms-conditions__sub-section-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-top: 35px;
    margin-bottom: 15px;
    text-align: left;
    font-weight: 600;
}

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

.page-promotions-terms-conditions ul {
    list-style: disc inside;
    margin-bottom: 20px;
    padding-left: 20px;
}

.page-promotions-terms-conditions ul li {
    font-size: 1.1em;
    margin-bottom: 10px;
    color: #C0C0C0;
}

.page-promotions-terms-conditions__button {
    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, transform 0.3s ease;
    margin: 10px;
    cursor: pointer;
}

.page-promotions-terms-conditions__button--primary {
    background-color: #FFD700;
    color: #0A192F;
    border: 2px solid #FFD700;
}

.page-promotions-terms-conditions__button--primary:hover {
    background-color: #E0B500;
    color: #000;
    transform: translateY(-3px);
}

.page-promotions-terms-conditions__button--secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-promotions-terms-conditions__button--secondary:hover {
    background-color: #FFD700;
    color: #0A192F;
    transform: translateY(-3px);
}

.page-promotions-terms-conditions__image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 30px 0;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
    object-fit: cover;
}

.page-promotions-terms-conditions__image--full-width {
    width: 100%;
    max-height: 450px;
}

.page-promotions-terms-conditions__image--left {
    float: left;
    width: 45%;
    margin-right: 20px;
    margin-bottom: 20px;
    max-height: 300px;
}

.page-promotions-terms-conditions__image--right {
    float: right;
    width: 45%;
    margin-left: 20px;
    margin-bottom: 20px;
    max-height: 300px;
}

.page-promotions-terms-conditions__cta-section {
    background-color: #1A3A5F;
    padding: 60px 0;
    text-align: center;
    color: #E0E0E0;
    clear: both;
}

.page-promotions-terms-conditions__cta-title {
    font-size: 3em;
    color: #FFD700;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-promotions-terms-conditions__cta-description {
    font-size: 1.3em;
    margin-bottom: 40px;
    color: #C0C0C0;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-promotions-terms-conditions__main-title {
        font-size: 2.8em;
    }
    .page-promotions-terms-conditions__subtitle {
        font-size: 1.2em;
    }
    .page-promotions-terms-conditions__section-title {
        font-size: 2em;
    }
    .page-promotions-terms-conditions__sub-section-title {
        font-size: 1.5em;
    }
    .page-promotions-terms-conditions__image--left,
    .page-promotions-terms-conditions__image--right {
        float: none;
        width: 100%;
        margin: 20px 0;
    }
}

@media (max-width: 768px) {
    .page-promotions-terms-conditions__hero-section {
        padding: 60px 0;
    }
    .page-promotions-terms-conditions__main-title {
        font-size: 2.2em;
    }
    .page-promotions-terms-conditions__subtitle {
        font-size: 1em;
    }
    .page-promotions-terms-conditions__section-title {
        font-size: 1.8em;
    }
    .page-promotions-terms-conditions__sub-section-title {
        font-size: 1.3em;
    }
    .page-promotions-terms-conditions p,
    .page-promotions-terms-conditions ul li {
        font-size: 1em;
    }
    .page-promotions-terms-conditions__button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-promotions-terms-conditions__cta-title {
        font-size: 2.5em;
    }
    .page-promotions-terms-conditions__cta-description {
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .page-promotions-terms-conditions__hero-section {
        padding: 40px 0;
    }
    .page-promotions-terms-conditions__main-title {
        font-size: 1.8em;
    }
    .page-promotions-terms-conditions__subtitle {
        font-size: 0.9em;
    }
    .page-promotions-terms-conditions__section-title {
        font-size: 1.5em;
    }
    .page-promotions-terms-conditions__sub-section-title {
        font-size: 1.1em;
    }
    .page-promotions-terms-conditions p,
    .page-promotions-terms-conditions ul li {
        font-size: 0.95em;
    }
    .page-promotions-terms-conditions__button {
        padding: 10px 20px;
        font-size: 0.9em;
        margin: 5px;
    }
    .page-promotions-terms-conditions__cta-title {
        font-size: 2em;
    }
    .page-promotions-terms-conditions__cta-description {
        font-size: 1em;
    }
}