:root {
    --primary-color: #0A1930; /* Dark Blue */
    --secondary-color: #E8A900; /* Gold */
    --text-light: #ffffff;
    --text-dark: #333333;
    --background-light: #f4f7f6;
    --background-dark: #0A1930;
    --border-color: #e0e0e0;
}

.page-terms-conditions {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--background-light);
}

/* Banner Section */
.page-terms-conditions__banner {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    background-color: var(--background-dark); /* Dark background for banner */
    color: var(--text-light);
    overflow: hidden;
}

.page-terms-conditions__banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding-bottom: 30px; /* Space for the image below on smaller screens */
}

.page-terms-conditions__banner-image {
    width: 100%;
    max-width: 1200px; /* Ensure image doesn't overflow */
    height: auto;
    max-height: 450px; /* Limit height for aesthetic */
    object-fit: cover;
    display: block;
    border-radius: 8px;
    margin-top: 30px; /* Space between text and image */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-terms-conditions__banner h1 {
    font-size: 3.2em;
    margin-bottom: 15px;
    color: var(--secondary-color);
    font-weight: bold;
}

.page-terms-conditions__banner p {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 30px auto;
    color: var(--text-light);
}

.page-terms-conditions__cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--secondary-color);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.1em;
    font-weight: bold;
    margin-top: 20px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-terms-conditions__cta-button:hover {
    background: #d49a00; /* Slightly darker gold on hover */
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* General Section Styling */
.page-terms-conditions__section {
    max-width: 1000px;
    margin: 40px auto;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-terms-conditions__section h2 {
    font-size: 2.2em;
    color: var(--primary-color);
    margin-bottom: 25px;
    border-bottom: 3px solid var(--secondary-color);
    padding-bottom: 10px;
    text-align: center;
}

.page-terms-conditions__section h3 {
    font-size: 1.6em;
    color: var(--primary-color);
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-terms-conditions__section p {
    font-size: 1.05em;
    margin-bottom: 20px;
    line-height: 1.8;
}

.page-terms-conditions__content-image {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    border-radius: 8px;
    margin: 30px 0;
    display: block;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Call to Action at the end */
.page-terms-conditions__call-to-action {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 60px 20px;
    text-align: center;
    margin-top: 50px;
}

.page-terms-conditions__cta-content h3 {
    font-size: 2.5em;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.page-terms-conditions__cta-content p {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 30px auto;
    color: var(--text-light);
}

.page-terms-conditions__cta-button--large {
    padding: 18px 50px;
    font-size: 1.3em;
}

/* Responsive design */
@media (max-width: 1024px) {
    .page-terms-conditions__section {
        margin: 30px auto;
        padding: 15px;
    }
    .page-terms-conditions__banner h1 {
        font-size: 2.8em;
    }
    .page-terms-conditions__section h2 {
        font-size: 2em;
    }
    .page-terms-conditions__cta-content h3 {
        font-size: 2.2em;
    }
}

@media (max-width: 768px) {
    .page-terms-conditions__banner {
        padding: 40px 15px;
    }
    .page-terms-conditions__banner-content {
        padding-bottom: 20px;
    }
    .page-terms-conditions__banner h1 {
        font-size: 2.2em;
    }
    .page-terms-conditions__banner p {
        font-size: 1em;
    }
    .page-terms-conditions__banner-image {
        max-height: 250px;
        margin-top: 20px;
    }
    .page-terms-conditions__cta-button {
        padding: 12px 30px;
        font-size: 1em;
    }
    .page-terms-conditions__section {
        margin: 20px auto;
        padding: 10px;
    }
    .page-terms-conditions__section h2 {
        font-size: 1.8em;
        margin-bottom: 15px;
    }
    .page-terms-conditions__section h3 {
        font-size: 1.4em;
        margin-top: 20px;
    }
    .page-terms-conditions__section p {
        font-size: 0.95em;
    }
    .page-terms-conditions__call-to-action {
        padding: 40px 15px;
    }
    .page-terms-conditions__cta-content h3 {
        font-size: 1.8em;
    }
    .page-terms-conditions__cta-content p {
        font-size: 1em;
    }
    .page-terms-conditions__cta-button--large {
        padding: 15px 35px;
        font-size: 1.1em;
    }
    .page-terms-conditions__content-image {
        margin: 20px 0;
        max-height: 300px;
    }
}

@media (max-width: 480px) {
    .page-terms-conditions__banner h1 {
        font-size: 1.8em;
    }
    .page-terms-conditions__section h2 {
        font-size: 1.5em;
    }
    .page-terms-conditions__cta-content h3 {
        font-size: 1.6em;
    }
    .page-terms-conditions__banner-image {
        max-height: 200px;
    }
}