/* style/terms-conditions.css */
.page-terms-conditions {
    font-family: 'Arial', sans-serif;
    color: #f0f0f0; /* Default text color for contrast on dark backgrounds */
    background-color: #0A2342; /* Main dark background */
    line-height: 1.6;
}

.page-terms-conditions__hero {
    background: linear-gradient(135deg, #0A2342, #1a3a60); /* Dark blue gradient */
    padding: 80px 20px;
    text-align: center;
    color: #FFD700; /* Gold for hero title */
    position: relative;
    overflow: hidden;
    border-bottom: 2px solid #FFD700; /* Gold accent line */
}

.page-terms-conditions__hero-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.page-terms-conditions__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #FFD700; /* Gold for main title */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-terms-conditions__hero-subtitle {
    font-size: 1.4em;
    color: #e0e0e0; /* Lighter grey for subtitle */
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-terms-conditions__hero-button {
    display: inline-block;
    background-color: #FFD700; /* Gold button */
    color: #0A2342; /* Dark blue text on gold */
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.page-terms-conditions__hero-button:hover {
    background-color: #e6c200; /* Slightly darker gold on hover */
    transform: translateY(-3px);
}

.page-terms-conditions__content {
    padding: 60px 20px;
    background-color: #0A2342; /* Main dark background */
}

.page-terms-conditions__content-container {
    max-width: 1000px;
    margin: 0 auto;
}

.page-terms-conditions__article {
    background-color: #1a3a60; /* Slightly lighter dark blue for article background */
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

.page-terms-conditions__heading {
    font-size: 2.2em;
    color: #FFD700; /* Gold for headings */
    margin-top: 40px;
    margin-bottom: 20px;
    border-bottom: 2px solid rgba(255, 215, 0, 0.3);
    padding-bottom: 10px;
}

.page-terms-conditions__article p {
    font-size: 1.1em;
    margin-bottom: 15px;
    color: #e0e0e0; /* Lighter grey for paragraphs */
}

.page-terms-conditions__article ul {
    list-style-type: disc;
    margin-left: 25px;
    margin-bottom: 20px;
    color: #e0e0e0;
}

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

.page-terms-conditions__article a {
    color: #FFD700; /* Gold for links */
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-terms-conditions__article a:hover {
    color: #e6c200; /* Darker gold on hover */
    text-decoration: underline;
}

.page-terms-conditions__button {
    display: inline-block;
    background-color: #FFD700; /* Gold button */
    color: #0A2342; /* Dark blue text on gold */
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1em;
    margin-top: 20px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-terms-conditions__button:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
}

.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.3);
}

.page-terms-conditions__cta-banner {
    background-color: #FFD700; /* Gold background for CTA */
    padding: 50px 20px;
    text-align: center;
    color: #0A2342; /* Dark blue text on gold */
}

.page-terms-conditions__cta-container {
    max-width: 800px;
    margin: 0 auto;
}

.page-terms-conditions__cta-title {
    font-size: 2.5em;
    margin-bottom: 15px;
    font-weight: bold;
    color: #0A2342;
}

.page-terms-conditions__cta-text {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #2c4c7c; /* A slightly lighter dark blue for text */
}

.page-terms-conditions__cta-button {
    display: inline-block;
    background-color: #0A2342; /* Dark blue button */
    color: #FFD700; /* Gold text on dark blue */
    padding: 18px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.page-terms-conditions__cta-button:hover {
    background-color: #1a3a60; /* Lighter dark blue on hover */
    transform: translateY(-3px);
}

.highlight {
    color: #FFD700;
    font-weight: bold;
}

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

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

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

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

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

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

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

    .page-terms-conditions__cta-banner {
        padding: 40px 15px;
    }

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

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

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

@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__cta-title {
        font-size: 1.8em;
    }
}