/* style/terms-conditions.css */

/* Base styles for the page */
.page-terms-conditions {
    font-family: 'Arial', sans-serif;
    color: #e5e5d1; /* Light text for dark background */
    background-color: #1A1A2E; /* Main dark background */
    line-height: 1.6;
}

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

/* Hero Section */
.page-terms-conditions__hero {
    background: linear-gradient(135deg, #1A1A2E, #E94560);
    padding: 80px 0;
    text-align: center;
    color: #e5e5d1;
    border-bottom: 2px solid #E94560;
}

.page-terms-conditions__title {
    font-size: 3em;
    margin-bottom: 15px;
    color: #e5e5d1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

/* Content Section */
.page-terms-conditions__content-section {
    padding: 60px 0;
}

.page-terms-conditions__toc {
    background-color: #2a2a3e;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 40px;
    border: 1px solid #E94560;
}

.page-terms-conditions__toc-title {
    font-size: 1.8em;
    color: #E94560;
    margin-bottom: 20px;
    text-align: center;
}

.page-terms-conditions__toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-terms-conditions__toc-list li {
    margin-bottom: 10px;
}

.page-terms-conditions__toc-list a {
    color: #e5e5d1;
    text-decoration: none;
    font-size: 1.1em;
    transition: color 0.3s ease;
}

.page-terms-conditions__toc-list a:hover {
    color: #E94560;
    text-decoration: underline;
}

.page-terms-conditions__article h2 {
    font-size: 2.2em;
    color: #E94560;
    margin-top: 40px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(233, 69, 96, 0.3);
}

.page-terms-conditions__article h3 {
    font-size: 1.8em;
    color: #e5e5d1;
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-terms-conditions__article p {
    margin-bottom: 15px;
    color: #e5e5d1;
}

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

.page-terms-conditions__article ul li {
    margin-bottom: 8px;
    color: #e5e5d1;
}

.page-terms-conditions__article a {
    color: #E94560; /* Accent color for links */
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-terms-conditions__article a:hover {
    color: #f07d90;
    text-decoration: underline;
}

/* Call to Action */
.page-terms-conditions__cta {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background-color: #2a2a3e;
    border-radius: 8px;
    border: 1px solid #E94560;
}

.page-terms-conditions__cta p {
    font-size: 1.5em;
    margin-bottom: 25px;
    color: #e5e5d1;
}

.page-terms-conditions__button {
    display: inline-block;
    background-color: #E94560; /* Accent color for main button */
    color: #e5e5d1;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    margin: 10px;
}

.page-terms-conditions__button:hover {
    background-color: #f07d90;
    transform: translateY(-2px);
}

.page-terms-conditions__button--secondary {
    background-color: #1A1A2E;
    border: 1px solid #E94560;
}

.page-terms-conditions__button--secondary:hover {
    background-color: #2a2a3e;
    border-color: #f07d90;
}

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

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

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

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

    .page-terms-conditions__toc,
    .page-terms-conditions__cta {
        padding: 20px;
    }

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

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

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

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

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

    .page-terms-conditions__toc-list a {
        font-size: 0.9em;
    }

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

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