/* 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 main text on dark background */
    background-color: #1A237E; /* Dark blue auxiliary color for background */
}

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

/* Hero Section */
.page-terms-conditions__hero {
    background: linear-gradient(135deg, #1A237E 0%, #0D114A 100%); /* Dark blue gradient */
    color: #FFD700; /* Gold for hero text */
    padding: 80px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.page-terms-conditions__hero-title {
    font-size: 3.2em;
    margin-bottom: 15px;
    font-weight: bold;
    color: #FFD700; /* Gold */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-terms-conditions__hero-subtitle {
    font-size: 1.4em;
    color: #FFEB3B; /* Slightly lighter gold/yellow */
    max-width: 800px;
    margin-bottom: 30px;
}

.page-terms-conditions__hero-image-wrapper {
    width: 100%;
    max-width: 600px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.page-terms-conditions__hero-image {
    width: 100%;
    height: auto;
    display: block;
}

/* Content Section */
.page-terms-conditions__content-section {
    padding: 50px 0;
    background-color: #1A237E; /* Dark blue */
}

.page-terms-conditions__article {
    background-color: #2C3A8D; /* Slightly lighter dark blue for article background */
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.page-terms-conditions__section-title {
    font-size: 2.2em;
    color: #FFD700; /* Gold */
    margin-top: 40px;
    margin-bottom: 25px;
    border-bottom: 3px solid #FFD700;
    padding-bottom: 10px;
    font-weight: bold;
}

.page-terms-conditions__subsection-title {
    font-size: 1.7em;
    color: #FFEB3B; /* Lighter gold/yellow */
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-terms-conditions__article p {
    margin-bottom: 15px;
    font-size: 1.1em;
    color: #E0E0E0; /* Light gray */
}

.page-terms-conditions__article ul {
    list-style-type: disc;
    margin-left: 30px;
    margin-bottom: 20px;
    color: #E0E0E0; /* Light gray */
}

.page-terms-conditions__article ul li {
    margin-bottom: 8px;
    font-size: 1.05em;
}

.page-terms-conditions__article strong {
    color: #FFD700; /* Gold for emphasis */
}

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

/* Call to Action */
.page-terms-conditions__cta-wrapper {
    text-align: center;
    margin-top: 50px;
    padding: 30px;
    background-color: #1A237E; /* Dark blue */
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.page-terms-conditions__cta-button {
    display: inline-block;
    background-color: #FFD700; /* Gold button */
    color: #1A237E; /* Dark blue text on gold */
    padding: 15px 30px;
    font-size: 1.3em;
    font-weight: bold;
    text-decoration: none;
    border-radius: 50px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-terms-conditions__cta-button:hover {
    background-color: #FFEB3B; /* Lighter gold on hover */
    transform: translateY(-3px);
}

.page-terms-conditions__cta-text {
    margin-top: 20px;
    font-size: 1.1em;
    color: #E0E0E0; /* Light gray */
}

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

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

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

    .page-terms-conditions__subsection-title {
        font-size: 1.4em;
    }

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

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

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

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

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

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

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

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

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