/* style/terms-conditions.css */

/* Base styles for the terms and conditions page */
.page-terms-conditions {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #E0E0E0; /* Light gray for general text on dark background */
    background-color: #0A2239; /* Main dark blue background */
}

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

/* Hero Section */
.page-terms-conditions__hero {
    background: linear-gradient(135deg, #0A2239 0%, #1A3A54 100%); /* Dark blue gradient */
    padding: 80px 0;
    text-align: center;
    color: #FFFFFF; /* White text for contrast */
    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, 34, 57, 0) 70%);
    opacity: 0.3;
    animation: page-terms-conditions__rotate 20s linear infinite;
}

@keyframes page-terms-conditions__rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.page-terms-conditions__title {
    font-size: 2.8em;
    color: #FFD700; /* Gold for main title */
    margin-bottom: 15px;
    font-weight: bold;
    position: relative;
    z-index: 1;
}

.page-terms-conditions__subtitle {
    font-size: 1.2em;
    color: #C0C0C0; /* Lighter gray for subtitle */
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

/* Main Content Sections */
.page-terms-conditions__content-sections {
    padding: 60px 0;
    background-color: #0A2239; /* Consistent dark blue background */
}

.page-terms-conditions__section {
    background-color: #1A3A54; /* Slightly lighter dark blue for sections */
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-terms-conditions__section:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-terms-conditions__section-title {
    font-size: 2em;
    color: #FFD700; /* Gold for section titles */
    margin-bottom: 20px;
    border-bottom: 2px solid #FFD700;
    padding-bottom: 10px;
}

.page-terms-conditions__sub-section-title {
    font-size: 1.5em;
    color: #FFD700; /* Gold for sub-section titles */
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-terms-conditions__section p {
    margin-bottom: 15px;
    color: #E0E0E0; /* Light gray for paragraphs */
}

.page-terms-conditions__section ul {
    list-style-type: disc;
    margin-left: 25px;
    margin-bottom: 15px;
    color: #E0E0E0;
}

.page-terms-conditions__section li {
    margin-bottom: 8px;
}

.page-terms-conditions__link-contact {
    color: #FFD700; /* Gold for contact links */
    text-decoration: underline;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-terms-conditions__link-contact:hover {
    color: #FFFFFF; /* White on hover */
}

/* Call to Action Button */
.page-terms-conditions__btn-primary {
    display: inline-block;
    background-color: #FFD700; /* Gold button background */
    color: #0A2239; /* Dark blue text on gold button */
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    z-index: 1;
}

.page-terms-conditions__btn-primary:hover {
    background-color: #FFC000; /* Slightly darker gold on hover */
    color: #000000; /* Black text on hover for better contrast */
    transform: translateY(-3px);
}

.page-terms-conditions__btn-large {
    padding: 15px 35px;
    font-size: 1.3em;
}

/* Image Styling */
.page-terms-conditions__image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* CTA Bottom Section */
.page-terms-conditions__cta-bottom {
    text-align: center;
    background-color: #1A3A54;
    padding: 50px 30px;
    border-radius: 10px;
    margin-top: 50px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-terms-conditions__cta-title {
    font-size: 2.5em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-terms-conditions__cta-description {
    font-size: 1.1em;
    color: #C0C0C0;
    margin-bottom: 30px;
}

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

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

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

    .page-terms-conditions__sub-section-title {
        font-size: 1.3em;
    }

    .page-terms-conditions__section {
        padding: 20px;
    }

    .page-terms-conditions__btn-primary {
        padding: 10px 20px;
        font-size: 1em;
    }

    .page-terms-conditions__btn-large {
        padding: 12px 25px;
        font-size: 1.1em;
    }

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

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

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

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

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

    .page-terms-conditions__sub-section-title {
        font-size: 1.1em;
    }

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

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

    .page-terms-conditions__section {
        margin-bottom: 30px;
    }

    .page-terms-conditions__cta-bottom {
        padding: 30px 15px;
    }

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