/* style/terms-conditions.css */
.page-terms-conditions {
    font-family: 'Arial', sans-serif;
    color: #f0f0f0; /* Light text for dark background */
    background-color: #1a1a1a; /* Dark background */
    line-height: 1.6;
}

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

.page-terms-conditions__hero-section {
    background: linear-gradient(135deg, #CC0000 0%, #330000 100%); /* Darker red gradient for hero */
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-terms-conditions__hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.1) 0%, rgba(204, 0, 0, 0.1) 50%, transparent 70%);
    animation: page-terms-conditions__pulse 15s infinite alternate;
    z-index: 0;
}

@keyframes page-terms-conditions__pulse {
    0% { transform: scale(1); opacity: 0.7; }
    100% { transform: scale(1.2); opacity: 0.9; }
}

.page-terms-conditions__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold for main title */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 1;
}

.page-terms-conditions__hero-subtitle {
    font-size: 1.2em;
    margin-bottom: 40px;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

.page-terms-conditions__hero-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.page-terms-conditions__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

.page-terms-conditions__btn--primary {
    background-color: #CC0000; /* Primary red */
    color: #ffffff; /* White text on red */
    border: 2px solid #CC0000;
}

.page-terms-conditions__btn--primary:hover {
    background-color: #e06666;
    border-color: #e06666;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-terms-conditions__btn--secondary {
    background-color: transparent;
    color: #FFD700; /* Gold text */
    border: 2px solid #FFD700;
}

.page-terms-conditions__btn--secondary:hover {
    background-color: #FFD700;
    color: #333333; /* Dark text on gold */
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-terms-conditions__btn--full-width {
    width: 100%;
    max-width: 400px;
    margin: 20px auto;
    display: block;
}

.page-terms-conditions__content-section {
    padding: 60px 0;
}

.page-terms-conditions__article {
    background-color: #0d0d0d;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.page-terms-conditions__section-title {
    font-size: 2.2em;
    color: #FFD700; /* Gold for section titles */
    margin-top: 40px;
    margin-bottom: 25px;
    border-bottom: 3px solid #CC0000;
    padding-bottom: 15px;
    position: relative;
}

.page-terms-conditions__section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 60px;
    height: 3px;
    background-color: #FFD700;
}

.page-terms-conditions__article p {
    margin-bottom: 1em;
    color: #e0e0e0;
}

.page-terms-conditions__article ul {
    list-style: disc;
    margin-left: 25px;
    margin-bottom: 1.5em;
    color: #e0e0e0;
}

.page-terms-conditions__article ul li {
    margin-bottom: 0.8em;
}

.page-terms-conditions__article strong {
    color: #FFD700;
}

.page-terms-conditions__image {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 10px;
    margin: 30px auto;
    display: block;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-terms-conditions__final-note {
    font-size: 1.1em;
    text-align: center;
    margin-top: 50px;
    margin-bottom: 30px;
    color: #FFD700;
}

.page-terms-conditions__final-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-terms-conditions__hero-title {
        font-size: 2.5em;
    }
    .page-terms-conditions__hero-subtitle {
        font-size: 1em;
    }
    .page-terms-conditions__hero-cta,
    .page-terms-conditions__final-cta {
        flex-direction: column;
        align-items: center;
    }
    .page-terms-conditions__btn {
        width: 80%;
        max-width: 300px;
    }
    .page-terms-conditions__article {
        padding: 25px;
    }
    .page-terms-conditions__section-title {
        font-size: 1.8em;
    }
}

@media (max-width: 480px) {
    .page-terms-conditions__hero-title {
        font-size: 2em;
    }
    .page-terms-conditions__hero-subtitle {
        font-size: 0.9em;
    }
    .page-terms-conditions__article {
        padding: 15px;
    }
    .page-terms-conditions__section-title {
        font-size: 1.5em;
    }
}