/* 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: #333333; /* Dark grey for readability */
    background-color: #f8f8f8; /* Light background */
}

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

/* Hero Section */
.page-terms-conditions__hero {
    background: linear-gradient(135deg, #B22222, #FFD700);
    color: #ffffff; /* White text on gradient background */
    padding: 60px 0;
    text-align: center;
}

.page-terms-conditions__title {
    font-size: 2.8em;
    margin-bottom: 15px;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-terms-conditions__subtitle {
    font-size: 1.2em;
    max-width: 700px;
    margin: 0 auto;
    color: #f0f0f0;
}

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

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

.page-terms-conditions__heading {
    font-size: 2em;
    color: #B22222; /* Deep red for main headings */
    margin-top: 30px;
    margin-bottom: 15px;
    border-bottom: 2px solid #FFD700; /* Gold accent */
    padding-bottom: 10px;
}

.page-terms-conditions__sub-heading {
    font-size: 1.5em;
    color: #666666; /* Darker grey for sub-headings */
    margin-top: 25px;
    margin-bottom: 10px;
}

.page-terms-conditions__article p {
    margin-bottom: 15px;
    font-size: 1.05em;
}

.page-terms-conditions__list {
    list-style-type: disc;
    margin-left: 25px;
    margin-bottom: 20px;
}

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

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

.page-terms-conditions__image--left {
    float: left;
    margin-right: 25px;
}

.page-terms-conditions__image--right {
    float: right;
    margin-left: 25px;
}

/* Clearfix for floated images */
.page-terms-conditions__article::after {
    content: "";
    display: table;
    clear: both;
}

/* Call to Action */
.page-terms-conditions__cta-wrapper {
    text-align: center;
    margin-top: 40px;
    padding: 30px;
    background-color: #f0f0f0;
    border-radius: 8px;
    border: 1px dashed #FFD700;
}

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

.page-terms-conditions__button {
    display: inline-block;
    padding: 15px 30px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    border-radius: 50px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-terms-conditions__button--primary {
    background-color: #B22222; /* Deep red button */
    color: #ffffff;
    border: 2px solid #B22222;
}

.page-terms-conditions__button--primary:hover {
    background-color: #D17A7A; /* Lighter red on hover */
    transform: translateY(-3px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-terms-conditions__hero {
        padding: 40px 0;
    }

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

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

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

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

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

    .page-terms-conditions__image {
        float: none;
        margin: 20px auto;
        display: block;
    }
    .page-terms-conditions__image--left, .page-terms-conditions__image--right {
        margin-right: auto;
        margin-left: auto;
    }
}

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

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