/* style/terms-conditions.css */

/* Base styles for the terms and conditions page */
.page-terms-conditions {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #e5e5e5; /* Light text for dark background */
    background-color: #1A1A1A; /* Main dark background */
}

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

/* Hero Section */
.page-terms-conditions__hero {
    background: linear-gradient(135deg, #1A1A1A 0%, #333333 100%);
    padding: 80px 0;
    text-align: center;
    border-bottom: 2px solid #FFD700;
}

.page-terms-conditions__title {
    font-size: 3.5em;
    color: #FFD700; /* Accent color for main title */
    margin-bottom: 20px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.page-terms-conditions__subtitle {
    font-size: 1.2em;
    color: #cccccc;
    max-width: 800px;
    margin: 0 auto;
}

/* Content Sections */
.page-terms-conditions__section {
    padding: 60px 0;
    background-color: #1A1A1A;
    position: relative;
    overflow: hidden;
}

.page-terms-conditions__section--alt {
    background-color: #222222; /* Slightly lighter dark background for contrast */
}

.page-terms-conditions__heading {
    font-size: 2.2em;
    color: #FFD700; /* Accent color for section headings */
    margin-bottom: 30px;
    border-bottom: 2px solid rgba(255, 215, 0, 0.5);
    padding-bottom: 10px;
    font-weight: 600;
}

.page-terms-conditions__paragraph {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #e5e5e5;
}

.page-terms-conditions__list {
    list-style: disc inside;
    margin-left: 20px;
    margin-bottom: 20px;
    color: #e5e5e5;
}

.page-terms-conditions__list li {
    margin-bottom: 10px;
    font-size: 1.1em;
}

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

/* Call to Action Section */
.page-terms-conditions__section--cta {
    background-color: #1A1A1A;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-terms-conditions__cta-content {
    position: relative;
    z-index: 2;
    color: #e5e5e5;
}

.page-terms-conditions__heading--cta {
    font-size: 2.8em;
    color: #FFD700;
    margin-bottom: 20px;
    border-bottom: none;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.page-terms-conditions__paragraph--cta {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-terms-conditions__button:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

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

.page-terms-conditions__button--secondary:hover {
    background-color: rgba(255, 215, 0, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(255, 215, 0, 0.2);
}

.page-terms-conditions__image--cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
    z-index: 1;
    filter: grayscale(100%);
}

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

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

    .page-terms-conditions__paragraph,
    .page-terms-conditions__list li {
        font-size: 1em;
    }

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

    .page-terms-conditions__heading--cta {
        font-size: 2em;
    }

    .page-terms-conditions__paragraph--cta {
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .page-terms-conditions__hero {
        padding: 60px 0;
    }

    .page-terms-conditions__title {
        font-size: 2em;
    }

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

    .page-terms-conditions__section {
        padding: 40px 0;
    }

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

    .page-terms-conditions__button {
        display: block;
        width: calc(100% - 40px);
        margin: 10px auto;
    }

    .page-terms-conditions__heading--cta {
        font-size: 1.6em;
    }

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