/* style/terms-conditions.css */
.page-terms-conditions {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0; /* Light gray for main text on dark background */
    background-color: #1A202C; /* Main dark background */
    line-height: 1.6;
}

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

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

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

.page-terms-conditions__hero-subtitle {
    font-size: 1.2em;
    color: #E0E0E0;
    max-width: 800px;
    margin: 0 auto;
}

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

.page-terms-conditions__section {
    background-color: #2D3748; /* Slightly lighter dark background for sections */
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.page-terms-conditions__section-title {
    font-size: 2.2em;
    color: #FFD700; /* Gold for section titles */
    margin-bottom: 20px;
    border-bottom: 1px solid #FFD700;
    padding-bottom: 10px;
    font-weight: bold;
}

.page-terms-conditions__sub-title {
    font-size: 1.6em;
    color: #FFD700; /* Gold for sub-titles */
    margin-top: 25px;
    margin-bottom: 15px;
}

.page-terms-conditions p {
    font-size: 1.1em;
    margin-bottom: 15px;
    color: #E0E0E0;
}

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

.page-terms-conditions__list,
.page-terms-conditions__numbered-list {
    list-style-type: disc;
    margin-left: 25px;
    margin-bottom: 15px;
    color: #E0E0E0;
}

.page-terms-conditions__numbered-list {
    list-style-type: decimal;
}

.page-terms-conditions__list li,
.page-terms-conditions__numbered-list li {
    margin-bottom: 10px;
    font-size: 1.05em;
}

.page-terms-conditions__link {
    color: #FFD700; /* Gold for links */
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-terms-conditions__link:hover {
    color: #FFEA00; /* Lighter gold on hover */
    text-decoration: underline;
}

.page-terms-conditions__image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 20px auto;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.page-terms-conditions__cta-section {
    text-align: center;
    background-color: #2D3748;
    padding: 40px;
    border-radius: 10px;
    margin-top: 40px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.page-terms-conditions__cta-text {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 25px;
    font-weight: bold;
}

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

.page-terms-conditions__button:hover {
    background-color: #FFEA00; /* Lighter gold on hover */
    transform: translateY(-2px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.4);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-terms-conditions__hero-title {
        font-size: 2.5em;
    }
    .page-terms-conditions__hero-subtitle {
        font-size: 1em;
    }
    .page-terms-conditions__section-title {
        font-size: 1.8em;
    }
    .page-terms-conditions__sub-title {
        font-size: 1.4em;
    }
    .page-terms-conditions p,
    .page-terms-conditions__list li,
    .page-terms-conditions__numbered-list li {
        font-size: 1em;
    }
    .page-terms-conditions__cta-text {
        font-size: 1.4em;
    }
    .page-terms-conditions__button {
        padding: 12px 25px;
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-terms-conditions__hero {
        padding: 50px 0;
    }
    .page-terms-conditions__hero-title {
        font-size: 2em;
    }
    .page-terms-conditions__section {
        padding: 20px;
    }
    .page-terms-conditions__section-title {
        font-size: 1.5em;
    }
    .page-terms-conditions__cta-text {
        font-size: 1.2em;
    }
    .page-terms-conditions__button {
        padding: 10px 20px;
        font-size: 0.9em;
    }
}