/* style/terms-conditions.css */

/* General Page Styling */
.page-terms-conditions {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f8f8;
}

.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);
    color: #fff;
    padding: 80px 0;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-terms-conditions__hero-title {
    font-size: 3.5em;
    margin-bottom: 15px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    color: #fff; /* Ensure contrast on gradient background */
}

.page-terms-conditions__hero-subtitle {
    font-size: 1.5em;
    opacity: 0.9;
    max-width: 800px;
    margin: 0 auto;
    color: #f0f0f0; /* Ensure contrast on gradient background */
}

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

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

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

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

.page-terms-conditions__article ul {
    list-style: disc inside;
    margin-bottom: 20px;
    padding-left: 20px;
}

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

.page-terms-conditions__article strong {
    color: #00BFFF;
}

.page-terms-conditions__image-inline {
    display: block;
    max-width: 100px;
    height: auto;
    margin: 20px auto;
    border-radius: 8px;
}

.page-terms-conditions__image-fullwidth {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 30px 0;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-terms-conditions__final-note {
    font-size: 1.2em;
    font-weight: bold;
    text-align: center;
    margin-top: 40px;
    color: #FFD700; /* Main color for emphasis */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

/* Call to Action Buttons */
.page-terms-conditions__cta-group {
    text-align: center;
    margin-top: 50px;
}

.page-terms-conditions__button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    margin: 0 15px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.page-terms-conditions__button--primary {
    background-color: #FFD700; /* Main color */
    color: #333; /* Dark text for contrast */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-terms-conditions__button--primary:hover {
    background-color: #e6c200; /* Slightly darker gold */
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-terms-conditions__button--secondary {
    background-color: #00BFFF; /* Auxiliary color */
    color: #ffffff; /* Light text for contrast */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-terms-conditions__button--secondary:hover {
    background-color: #0099cc; /* Slightly darker blue */
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* 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__heading {
        font-size: 1.8em;
    }

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

    .page-terms-conditions__button {
        display: block;
        margin: 15px auto;
        width: 80%;
    }
}

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

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

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

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

    .page-terms-conditions__hero-section,
    .page-terms-conditions__content-section {
        padding: 40px 0;
    }
}