/* style/terms-conditions.css */

/* Base Styles for Terms and Conditions Page */
.page-terms-conditions {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #E0E0E0; /* Light grey for body text on dark background */
    background-color: #0A192F; /* Main dark background */
}

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

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

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

.page-terms-conditions__subtitle {
    font-size: 1.3em;
    color: #B0B0B0;
    max-width: 700px;
    margin: 0 auto;
}

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

.page-terms-conditions__heading {
    font-size: 2.2em;
    color: #FFD700; /* Gold for main section headings */
    margin-top: 40px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 215, 0, 0.3);
    padding-bottom: 10px;
}

.page-terms-conditions__sub-heading {
    font-size: 1.6em;
    color: #F0F0F0;
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-terms-conditions p {
    margin-bottom: 15px;
    font-size: 1.1em;
    color: #E0E0E0;
}

.page-terms-conditions ul,
.page-terms-conditions ol {
    margin-bottom: 20px;
    padding-left: 25px;
    color: #E0E0E0;
}

.page-terms-conditions ul li,
.page-terms-conditions ol li {
    margin-bottom: 10px;
    font-size: 1.05em;
    color: #D0D0D0;
}

.page-terms-conditions a {
    color: #FFD700; /* Gold for inline links */
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-terms-conditions a:hover {
    color: #FFA500; /* Darker gold on hover */
    text-decoration: underline;
}

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

/* Call to Action Button */
.page-terms-conditions__cta-wrapper {
    text-align: center;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px dashed rgba(255, 215, 0, 0.2);
}

.page-terms-conditions__cta-wrapper p {
    font-size: 1.2em;
    color: #E0E0E0;
    margin-bottom: 25px;
}

.page-terms-conditions__btn {
    display: inline-block;
    background-color: #FFD700; /* Gold button background */
    color: #0A192F; /* Dark text on gold button */
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-terms-conditions__btn:hover {
    background-color: #FFA500; /* Darker gold on hover */
    color: #000;
    transform: translateY(-3px);
    text-decoration: none;
}

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

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

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

    .page-terms-conditions__sub-heading {
        font-size: 1.4em;
    }

    .page-terms-conditions p,
    .page-terms-conditions ul li,
    .page-terms-conditions ol li {
        font-size: 1em;
    }

    .page-terms-conditions__btn {
        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: 40px 0;
    }

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

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