/* style/terms-conditions.css */

/* General styling for the terms and conditions page */
.page-terms-conditions {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #e0e0e0; /* Light grey for text on dark background */
    background-color: #0A1931; /* Main background color */
}

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

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

.page-terms-conditions__hero::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(10, 25, 49, 0) 70%);
    animation: rotateBackground 20s linear infinite;
    z-index: 0;
}

@keyframes rotateBackground {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.page-terms-conditions__hero .page-terms-conditions__container {
    position: relative;
    z-index: 1;
}

.page-terms-conditions__title {
    font-size: 3.5em;
    color: #FFD700; /* Accent color for title */
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: 700;
}

.page-terms-conditions__subtitle {
    font-size: 1.4em;
    color: #f0f0f0;
    margin-bottom: 30px;
    font-weight: 300;
}

.page-terms-conditions__cta-button {
    display: inline-block;
    background-color: #FFD700; /* Accent color for CTA button */
    color: #0A1931; /* Dark text on accent button */
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-terms-conditions__cta-button:hover {
    background-color: #e6c200; /* Slightly darker gold on hover */
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

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

.page-terms-conditions__article {
    background-color: #1a2a47; /* Slightly lighter dark background for article */
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

.page-terms-conditions__section-heading {
    font-size: 2em;
    color: #FFD700; /* Accent color for section headings */
    margin-top: 40px;
    margin-bottom: 20px;
    border-bottom: 2px solid #3e5372; /* Subtle divider */
    padding-bottom: 10px;
    font-weight: 600;
}

.page-terms-conditions__article h3 {
    font-size: 1.5em;
    color: #f0f0f0;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 500;
}

.page-terms-conditions__article p {
    margin-bottom: 15px;
    font-size: 1.1em;
    color: #c0c0c0; /* Lighter text for paragraphs */
}

.page-terms-conditions__article ul {
    list-style-type: disc;
    margin-left: 30px;
    margin-bottom: 20px;
}

.page-terms-conditions__article li {
    margin-bottom: 10px;
    font-size: 1.1em;
    color: #c0c0c0;
}

.page-terms-conditions__article strong {
    color: #FFD700; /* Highlight keywords with accent color */
}

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

.page-terms-conditions__cta-bottom {
    text-align: center;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px dashed #3e5372;
}

.page-terms-conditions__cta-bottom p {
    font-size: 1.3em;
    color: #f0f0f0;
    margin-bottom: 25px;
    font-weight: 400;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-terms-conditions__title {
        font-size: 2.5em;
    }

    .page-terms-conditions__subtitle {
        font-size: 1.2em;
    }

    .page-terms-conditions__section-heading {
        font-size: 1.8em;
    }

    .page-terms-conditions__article h3 {
        font-size: 1.3em;
    }

    .page-terms-conditions__article {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .page-terms-conditions__title {
        font-size: 2em;
    }

    .page-terms-conditions__subtitle {
        font-size: 1em;
    }

    .page-terms-conditions__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-terms-conditions__section-heading {
        font-size: 1.5em;
    }

    .page-terms-conditions__article h3 {
        font-size: 1.2em;
    }

    .page-terms-conditions__article p,
    .page-terms-conditions__article li {
        font-size: 0.95em;
    }

    .page-terms-conditions__article {
        padding: 15px;
    }
}