.page-terms-conditions {
    font-family: 'Arial', sans-serif;
    color: #e5dfd3; /* Light text for dark background */
    background-color: #1A202C;
    line-height: 1.6;
}

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

.page-terms-conditions__hero {
    background: linear-gradient(135deg, #1A202C 0%, #3a4a6b 100%); /* Dark blue gradient */
    padding: 80px 0;
    text-align: center;
    color: #FFD700; /* Gold for hero title */
    border-bottom: 2px solid #FFD700;
}

.page-terms-conditions__title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    color: #FFD700;
}

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

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

.page-terms-conditions__article {
    background-color: #2c3546; /* Slightly lighter dark blue for content background */
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

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

.page-terms-conditions__heading:first-of-type {
    margin-top: 0;
}

.page-terms-conditions__article p {
    margin-bottom: 15px;
    color: #e5dfd3;
}

.page-terms-conditions__highlight {
    color: #FFD700;
    font-weight: bold;
}

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

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

.page-terms-conditions__image {
    width: 100%;
    max-width: 600px;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
    object-fit: cover;
}

.page-terms-conditions__cta-section {
    text-align: center;
    margin-top: 50px;
    padding: 30px;
    background-color: #1A202C; /* Dark background for CTA */
    border-radius: 8px;
    border: 1px solid #FFD700;
}

.page-terms-conditions__cta-text {
    font-size: 1.4em;
    color: #e5dfd3;
    margin-bottom: 25px;
    font-weight: 500;
}

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

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

.page-terms-conditions__button--secondary {
    background-color: #3a4a6b; /* Secondary dark blue button */
    color: #FFD700; /* Gold text on secondary button */
    border: 1px solid #FFD700;
}

.page-terms-conditions__button--secondary:hover {
    background-color: #4a5c7d;
    color: #e6c200;
    transform: translateY(-3px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-terms-conditions__title {
        font-size: 2.5em;
    }

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

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

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

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

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

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

    .page-terms-conditions__hero {
        padding: 50px 0;
    }

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

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

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

    .page-terms-conditions__button {
        display: block;
        width: 90%;
        margin: 10px auto;
    }
}