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

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

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

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

.page-terms-conditions__subtitle {
    font-size: 1.2em;
    color: #e5dfd3;
    margin-bottom: 30px;
}

.page-terms-conditions__content {
    padding: 60px 0;
    background-color: #1A202C;
}

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

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

.page-terms-conditions__sub-heading {
    font-size: 1.6em;
    color: #e5dfd3; /* Light text for sub-headings */
    margin-top: 30px;
    margin-bottom: 15px;
}

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

.page-terms-conditions ul,
.page-terms-conditions ol {
    list-style-position: inside;
    margin-bottom: 20px;
    padding-left: 20px;
    color: #e5dfd3;
}

.page-terms-conditions ul li,
.page-terms-conditions ol li {
    font-size: 1.05em;
    margin-bottom: 10px;
}

.page-terms-conditions strong {
    color: #FFD700; /* Emphasize keywords with gold */
}

.page-terms-conditions__image {
    width: 100%;
    max-width: 700px;
    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__link {
    color: #4CAF50; /* Green for links, good contrast */
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-terms-conditions__link:hover {
    color: #FFD700; /* Gold on hover */
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-terms-conditions__title {
        font-size: 2.5em;
    }
    .page-terms-conditions__heading {
        font-size: 1.8em;
    }
    .page-terms-conditions__sub-heading {
        font-size: 1.4em;
    }
    .page-terms-conditions__article {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .page-terms-conditions__title {
        font-size: 2em;
    }
    .page-terms-conditions__heading {
        font-size: 1.5em;
    }
    .page-terms-conditions__sub-heading {
        font-size: 1.2em;
    }
    .page-terms-conditions p,
    .page-terms-conditions ul li,
    .page-terms-conditions ol li {
        font-size: 1em;
    }
    .page-terms-conditions__hero {
        padding: 60px 0;
    }
}