/* style/terms-conditions.css */

/* Base styles for the terms and conditions page */
.page-terms-conditions {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f8f8;
}

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

/* Hero Section */
.page-terms-conditions__hero {
    background: linear-gradient(135deg, #0A2E36 0%, #1a4f5c 100%); /* Darker gradient for hero */
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-terms-conditions__title {
    font-size: 3.2em;
    margin-bottom: 15px;
    font-weight: bold;
    color: #E0B400; /* Accent color for main title */
}

.page-terms-conditions__subtitle {
    font-size: 1.3em;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
}

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

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

.page-terms-conditions__heading {
    font-size: 2.2em;
    color: #0A2E36; /* Main color for headings */
    margin-top: 40px;
    margin-bottom: 20px;
    border-bottom: 2px solid #E0B400; /* Accent color for border */
    padding-bottom: 10px;
}

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

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

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

.page-terms-conditions__article a {
    color: #0A2E36; /* Main color for internal links */
    text-decoration: none;
    font-weight: bold;
}

.page-terms-conditions__article a:hover {
    text-decoration: underline;
    color: #E0B400; /* Accent color on hover */
}

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

.page-terms-conditions__image--left {
    float: left;
    width: 45%;
    margin-right: 30px;
    margin-bottom: 20px;
}

.page-terms-conditions__image--right {
    float: right;
    width: 45%;
    margin-left: 30px;
    margin-bottom: 20px;
}

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

/* Call to Action */
.page-terms-conditions__cta-wrapper {
    text-align: center;
    background-color: #0A2E36; /* Main color for CTA background */
    padding: 40px;
    border-radius: 10px;
    margin-top: 50px;
    color: #ffffff;
}

.page-terms-conditions__cta-text {
    font-size: 1.6em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #ffffff;
}

.page-terms-conditions__cta-subtext {
    font-size: 1.1em;
    margin-top: 25px;
    margin-bottom: 20px;
    color: #ffffff;
    opacity: 0.8;
}

.page-terms-conditions__btn {
    display: inline-block;
    background-color: #E0B400; /* Accent color for primary button */
    color: #0A2E36; /* Dark text for contrast */
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: 2px solid transparent;
    margin: 10px;
}

.page-terms-conditions__btn:hover {
    background-color: #f0c830; /* Lighter accent on hover */
    transform: translateY(-3px);
    border-color: #0A2E36;
}

.page-terms-conditions__btn--secondary {
    background-color: transparent;
    color: #E0B400; /* Accent color for secondary button text */
    border: 2px solid #E0B400; /* Accent color for border */
}

.page-terms-conditions__btn--secondary:hover {
    background-color: #E0B400;
    color: #0A2E36;
    transform: translateY(-3px);
}

.page-terms-conditions__link-btn {
    display: inline-block;
    background-color: #E0B400;
    color: #0A2E36;
    padding: 8px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9em;
    transition: background-color 0.3s ease;
    margin-left: 5px;
    white-space: nowrap;
}

.page-terms-conditions__link-btn:hover {
    background-color: #f0c830;
    text-decoration: none;
}

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

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

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

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

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

    .page-terms-conditions__heading {
        font-size: 1.8em;
        margin-top: 30px;
    }

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

    .page-terms-conditions__image--left,
    .page-terms-conditions__image--right {
        float: none;
        width: 100%;
        margin: 20px 0;
    }

    .page-terms-conditions__cta-wrapper {
        padding: 30px 20px;
    }

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

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

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

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

    .page-terms-conditions__btn {
        width: 100%;
        margin: 10px 0;
    }
    .page-terms-conditions__cta-text {
        font-size: 1.1em;
    }
}