/* 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: #333;
    background-color: #f9f9f9;
}

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

/* Hero section */
.page-terms-conditions__hero-section {
    background: linear-gradient(135deg, #FFD700, #00BFFF);
    padding: 80px 0;
    color: #ffffff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-terms-conditions__hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.page-terms-conditions__hero-section .page-terms-conditions__container {
    position: relative;
    z-index: 2;
}

.page-terms-conditions__title {
    font-size: 3.2em;
    margin-bottom: 15px;
    font-weight: bold;
    color: #000000; /* Ensuring high contrast for title on gold/blue gradient */
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.page-terms-conditions__subtitle {
    font-size: 1.4em;
    color: #ffffff;
    max-width: 800px;
    margin: 0 auto;
}

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

.page-terms-conditions__article {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-terms-conditions__heading {
    font-size: 2.2em;
    color: #00BFFF; /* Deep blue for main headings */
    margin-top: 40px;
    margin-bottom: 20px;
    border-bottom: 2px solid #FFD700;
    padding-bottom: 10px;
}

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

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

.page-terms-conditions ul {
    list-style-type: disc;
    margin-left: 30px;
    margin-bottom: 20px;
    color: #555;
}

.page-terms-conditions ul li {
    margin-bottom: 10px;
    font-size: 1.1em;
}

.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.1);
}

.page-terms-conditions__link {
    color: #00BFFF;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-terms-conditions__link:hover {
    color: #FFD700;
    text-decoration: underline;
}

/* Call to Action Section */
.page-terms-conditions__cta-section {
    background-color: #00BFFF;
    color: #ffffff;
    padding: 60px 40px;
    text-align: center;
    border-radius: 8px;
    margin-top: 60px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.page-terms-conditions__cta-title {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold for CTA title */
    font-weight: bold;
}

.page-terms-conditions__cta-text {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: #e0e0e0;
}

.page-terms-conditions__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-terms-conditions__button {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    text-align: center;
    min-width: 180px;
}

.page-terms-conditions__button--primary {
    background-color: #FFD700; /* Gold background */
    color: #000000; /* Black text for contrast */
    border: 2px solid #FFD700;
}

.page-terms-conditions__button--primary:hover {
    background-color: #e6c200;
    border-color: #e6c200;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

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

.page-terms-conditions__button--secondary:hover {
    background-color: #FFD700;
    color: #000000;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

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

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

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

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

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

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

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

    .page-terms-conditions__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .page-terms-conditions__button {
        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__sub-heading {
        font-size: 1.2em;
    }

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

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

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

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

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