/* style/terms-conditions.css */
.page-terms-conditions {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0; /* Light gray text for dark background */
    background-color: #0A192F; /* Main dark background */
    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, #0A192F, #1F304B);
    padding: 80px 0 60px;
    text-align: center;
    border-bottom: 2px solid #FFD700;
}

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

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

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

.page-terms-conditions__section {
    margin-bottom: 40px;
    background-color: #1F304B;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

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

.page-terms-conditions__section p {
    margin-bottom: 15px;
    color: #E0E0E0;
}

.page-terms-conditions__section ul {
    list-style: disc inside;
    margin-left: 20px;
    color: #E0E0E0;
}

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

.page-terms-conditions__section strong {
    color: #FFD700;
}

.page-terms-conditions__image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 25px;
    margin-bottom: 25px;
    display: block;
    object-fit: cover;
    width: 100%;
    height: 250px;
}

.page-terms-conditions__cta {
    text-align: center;
    padding: 50px 0;
    background-color: #1F304B;
    border-radius: 8px;
    margin-top: 40px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-terms-conditions__cta .page-terms-conditions__heading {
    border-bottom: none;
    margin-bottom: 25px;
}

.page-terms-conditions__button {
    display: inline-block;
    background-color: #FFD700; /* Gold button */
    color: #0A192F; /* Dark text on gold */
    padding: 14px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    margin: 10px;
    border: none;
    cursor: pointer;
}

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

.page-terms-conditions__button--secondary {
    background-color: #0A192F;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-terms-conditions__button--secondary:hover {
    background-color: #FFD700;
    color: #0A192F;
    transform: translateY(-2px);
}

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

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

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

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

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

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

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

    .page-terms-conditions__button {
        display: block;
        width: fit-content;
        margin: 10px auto;
    }
    .page-terms-conditions__image {
        height: 180px;
    }
}