/* 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 body text on dark background */
    background-color: #0F1D33; /* Slightly lighter dark blue for main content */
}

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

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

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

.page-terms-conditions__subtitle {
    font-size: 1.3em;
    color: #E0E0E0; /* Light gray for subtitle */
    max-width: 800px;
    margin: 0 auto;
}

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

.page-terms-conditions__article {
    background-color: #1A2B4C; /* Deep blue for article background */
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

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

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

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

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

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

.page-terms-conditions__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.2);
}

/* Call to Action Buttons */
.page-terms-conditions__cta-group {
    text-align: center;
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.page-terms-conditions__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.2s ease;
    white-space: nowrap; /* Prevent button text from wrapping */
}

.page-terms-conditions__btn--primary {
    background-color: #FFD700; /* Gold background */
    color: #1A2B4C; /* Deep blue text */
    border: 2px solid #FFD700;
}

.page-terms-conditions__btn--primary:hover {
    background-color: #e5c100; /* Darker gold on hover */
    transform: translateY(-2px);
}

.page-terms-conditions__btn--secondary {
    background-color: transparent;
    color: #FFD700; /* Gold text */
    border: 2px solid #FFD700;
}

.page-terms-conditions__btn--secondary:hover {
    background-color: #FFD700; /* Gold background on hover */
    color: #1A2B4C; /* Deep blue text on hover */
    transform: translateY(-2px);
}

/* Info Block Section */
.page-terms-conditions__info-block {
    background-color: #1A2B4C;
    padding: 50px 0;
    text-align: center;
    border-top: 2px solid #0F1D33;
}

.page-terms-conditions__info-block .page-terms-conditions__container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 30px;
}

.page-terms-conditions__info-item {
    flex: 1 1 300px;
    padding: 25px;
    background-color: #0F1D33; /* Dark blue for info items */
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.page-terms-conditions__info-item:hover {
    transform: translateY(-5px);
}

.page-terms-conditions__info-title {
    font-size: 1.5em;
    color: #FFD700; /* Gold for info titles */
    margin-bottom: 10px;
}

.page-terms-conditions__info-item p {
    color: #C0C0C0; /* Lighter gray for info text */
}

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

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

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

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

    .page-terms-conditions__cta-group {
        flex-direction: column;
        align-items: center;
    }

    .page-terms-conditions__btn {
        width: 80%;
        max-width: 300px;
    }
}

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

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

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

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

    .page-terms-conditions__info-block .page-terms-conditions__container {
        flex-direction: column;
        align-items: center;
    }

    .page-terms-conditions__info-item {
        flex-basis: 90%;
    }
}