/* style/terms-conditions.css */
.page-terms-conditions {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #E0E0E0; /* Light gray for main text to ensure WCAG AA contrast on dark background */
    background-color: #0A192F; /* Primary dark blue background */
    line-height: 1.7;
    padding: 20px 0;
}

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

.page-terms-conditions__title {
    color: #FFD700; /* Accent gold for main title */
    text-align: center;
    padding: 40px 0;
    font-size: 3em;
    margin-bottom: 30px;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.page-terms-conditions__intro-text {
    font-size: 1.1em;
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #C0C0C0; /* Slightly darker light gray for intro */
}

.page-terms-conditions__section {
    background-color: #12233D; /* Slightly lighter dark blue for sections */
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.page-terms-conditions__section-title {
    color: #FFD700; /* Accent gold for section titles */
    font-size: 2.2em;
    margin-top: 0;
    margin-bottom: 20px;
    border-bottom: 2px solid rgba(255, 215, 0, 0.4);
    padding-bottom: 10px;
    font-weight: 600;
}

.page-terms-conditions h3 {
    color: #FFD700; /* Accent gold for sub-titles */
    font-size: 1.6em;
    margin-top: 25px;
    margin-bottom: 15px;
    font-weight: 500;
}

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

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

.page-terms-conditions li {
    margin-bottom: 8px;
    padding-left: 5px;
}

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

.page-terms-conditions__link:hover {
    color: #FFF; /* White on hover for better contrast */
    text-decoration: underline;
}

.page-terms-conditions__link--button {
    display: inline-block;
    background-color: #FFD700; /* Gold button background */
    color: #0A192F; /* Dark blue text on gold button */
    padding: 12px 25px;
    border-radius: 5px;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
    margin-top: 20px;
    transition: background-color 0.3s ease, color 0.3s ease;
    text-decoration: none;
}

.page-terms-conditions__link--button:hover {
    background-color: #e6c200; /* Slightly darker gold on hover */
    color: #000;
    text-decoration: none;
}

.page-terms-conditions__image {
    width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    max-width: 800px;
}

.page-terms-conditions__image--hero {
    max-width: 90%;
    border: 2px solid #FFD700;
}

.page-terms-conditions__contact-info {
    text-align: center;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.page-terms-conditions__contact-info p {
    font-size: 1.1em;
    color: #C0C0C0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-terms-conditions__title {
        font-size: 2.2em;
        padding: 30px 0;
    }
    .page-terms-conditions__section-title {
        font-size: 1.8em;
    }
    .page-terms-conditions h3 {
        font-size: 1.4em;
    }
    .page-terms-conditions__container {
        padding: 15px;
    }
    .page-terms-conditions__section {
        padding: 20px;
    }
    .page-terms-conditions ul,
    .page-terms-conditions ol {
        margin-left: 15px;
    }
}

@media (max-width: 480px) {
    .page-terms-conditions__title {
        font-size: 1.8em;
        padding: 20px 0;
    }
    .page-terms-conditions__section-title {
        font-size: 1.5em;
    }
    .page-terms-conditions h3 {
        font-size: 1.3em;
    }
    .page-terms-conditions__intro-text {
        font-size: 1em;
    }
    .page-terms-conditions__link--button {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    .page-terms-conditions__image {
        margin: 20px auto;
    }
}