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

.page-terms-conditions__hero {
    position: relative;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
    background: linear-gradient(135deg, #000000, #333333);
    padding: 20px;
}

.page-terms-conditions__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    z-index: 1;
}

.page-terms-conditions__hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 10px;
}

.page-terms-conditions__hero-title {
    font-size: 2.8em;
    color: #FFD700; /* Auxiliary color for titles */
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-terms-conditions__hero-description {
    font-size: 1.2em;
    color: #FFFFFF;
    margin-bottom: 30px;
}

.page-terms-conditions__hero-button {
    display: inline-block;
    background-color: #FFD700; /* Auxiliary color for buttons */
    color: #000000; /* Black text on gold button */
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

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

.page-terms-conditions__content-wrapper {
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
    background-color: #1a1a1a; /* Slightly lighter dark background for content */
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.page-terms-conditions__section {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #333333;
}

.page-terms-conditions__section:last-child {
    border-bottom: none;
}

.page-terms-conditions__section-title {
    font-size: 2em;
    color: #FFD700; /* Auxiliary color for section titles */
    margin-bottom: 15px;
    border-left: 5px solid #FFD700;
    padding-left: 10px;
}

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

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

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

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

.page-terms-conditions__image-inline {
    max-width: 100%;
    height: auto;
    margin: 20px 0;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-terms-conditions__contact-link {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
}

.page-terms-conditions__contact-link:hover {
    text-decoration: underline;
}

.page-terms-conditions__call-to-action {
    text-align: center;
    margin-top: 50px;
    padding: 30px;
    background-color: #000000;
    border-radius: 8px;
    border: 1px solid #FFD700;
}

.page-terms-conditions__call-to-action p {
    font-size: 1.5em;
    color: #FFFFFF;
    margin-bottom: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-terms-conditions__hero-title {
        font-size: 2em;
    }

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

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

    .page-terms-conditions__content-wrapper {
        margin: 20px auto;
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .page-terms-conditions__hero {
        height: 50vh;
    }

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

    .page-terms-conditions__hero-description {
        font-size: 0.9em;
    }

    .page-terms-conditions__hero-button {
        padding: 10px 20px;
        font-size: 0.9em;
    }

    .page-terms-conditions__section-title {
        font-size: 1.3em;
    }

    .page-terms-conditions__list {
        margin-left: 20px;
    }

    .page-terms-conditions__call-to-action p {
        font-size: 1.2em;
    }
}