/* style/terms-conditions.css */
.page-terms-conditions {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #f0f0f0; /* Light text for dark background */
    background-color: #0A2E36; /* Main background color */
}

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

.page-terms-conditions__hero-section {
    background: linear-gradient(135deg, #0A2E36, #1a4d5e); /* Darker gradient for hero */
    padding: 80px 0;
    text-align: center;
    color: #E0B34C; /* Secondary color for hero text */
    border-bottom: 2px solid #E0B34C;
}

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

.page-terms-conditions__subtitle {
    font-size: 1.5em;
    color: #f0f0f0;
    max-width: 800px;
    margin: 0 auto;
}

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

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

.page-terms-conditions__heading {
    font-size: 2.2em;
    color: #E0B34C; /* Golden for main headings */
    margin-top: 40px;
    margin-bottom: 20px;
    border-bottom: 2px solid #E0B34C;
    padding-bottom: 10px;
}

.page-terms-conditions__sub-heading {
    font-size: 1.8em;
    color: #f0f0f0;
    margin-top: 30px;
    margin-bottom: 15px;
}

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

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

.page-terms-conditions__article li {
    margin-bottom: 10px;
    font-size: 1.1em;
}

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

.page-terms-conditions__link {
    color: #E0B34C;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

.page-terms-conditions__cta-wrapper {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background-color: #1a4d5e; /* A darker teal for CTA background */
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

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

.page-terms-conditions__cta-button {
    display: inline-block;
    background-color: #E0B34C; /* Golden for CTA button */
    color: #0A2E36; /* Dark text on golden button */
    padding: 15px 35px;
    font-size: 1.3em;
    font-weight: bold;
    text-decoration: none;
    border-radius: 50px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-terms-conditions__cta-button:hover {
    background-color: #f0c262; /* Lighter golden on hover */
    transform: translateY(-3px);
}

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

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

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

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

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

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

    .page-terms-conditions__cta-button {
        padding: 12px 25px;
        font-size: 1.1em;
    }
}

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

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

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

    .page-terms-conditions__sub-heading {
        font-size: 1.3em;
    }

    .page-terms-conditions__article p, .page-terms-conditions__article li {
        font-size: 1em;
    }

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

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