:root {
    --primary-color: #003366;
    --secondary-color: #FFD700;
    --text-color-dark: #333333;
    --text-color-light: #ffffff;
    --bg-light: #f9f9f9;
    --bg-dark: #002244;
}

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

.page-terms-conditions__hero {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    background-color: var(--primary-color);
    color: var(--text-color-light);
    overflow: hidden;
}

.page-terms-conditions__hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

.page-terms-conditions__hero h1 {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: var(--secondary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-terms-conditions__hero p {
    font-size: 1.2em;
    line-height: 1.8;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-terms-conditions__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.15;
    z-index: 1;
}

.page-terms-conditions__hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.page-terms-conditions__section {
    max-width: 1000px;
    margin: 40px auto;
    padding: 20px 30px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

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

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

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

.page-terms-conditions__cta-button {
    display: inline-block;
    padding: 15px 35px;
    background: var(--secondary-color);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1em;
    font-weight: bold;
    margin-top: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-terms-conditions__cta-button:hover {
    background: #e6c200;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

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

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-terms-conditions__section {
        margin: 30px auto;
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .page-terms-conditions__hero {
        padding: 40px 15px;
    }

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

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

    .page-terms-conditions__section {
        margin: 20px auto;
        padding: 15px;
    }

    .page-terms-conditions__section h2 {
        font-size: 1.8em;
        margin-bottom: 20px;
    }

    .page-terms-conditions__section h3 {
        font-size: 1.4em;
        margin-top: 25px;
    }

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

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

    .page-terms-conditions__hero p {
        font-size: 0.9em;
    }

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

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

    .page-terms-conditions__section p {
        font-size: 0.95em;
    }

    .page-terms-conditions__cta-button {
        padding: 10px 20px;
        font-size: 0.9em;
    }
}