/* style/terms-conditions.css */
.page-terms-conditions {
    font-family: Arial, sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f8f8;
}

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

.page-terms-conditions__hero {
    background-color: #0A2342; /* Main color */
    color: #fff;
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-terms-conditions__hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 35, 66, 0.9), rgba(255, 215, 0, 0.1)); /* Gradient with main and accent */
    z-index: 0;
}

.page-terms-conditions__hero .page-terms-conditions__container {
    position: relative;
    z-index: 1;
}

.page-terms-conditions__title {
    font-size: 2.8em;
    margin-bottom: 15px;
    color: #FFD700; /* Accent color */
    font-weight: bold;
}

.page-terms-conditions__subtitle {
    font-size: 1.2em;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

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

.page-terms-conditions__heading {
    font-size: 2em;
    color: #0A2342; /* Main color */
    margin-top: 40px;
    margin-bottom: 20px;
    border-bottom: 2px solid #FFD700; /* Accent color underline */
    padding-bottom: 10px;
}

.page-terms-conditions__content-section p {
    margin-bottom: 15px;
    color: #333333;
}

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

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

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

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

.page-terms-conditions__link {
    color: #0A2342;
    text-decoration: underline;
}

.page-terms-conditions__link:hover {
    color: #FFD700;
    text-decoration: none;
}

.page-terms-conditions__cta-section {
    text-align: center;
    background-color: #0A2342; /* Main color */
    color: #fff;
    padding: 40px;
    border-radius: 8px;
    margin-top: 50px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.page-terms-conditions__cta-section p {
    font-size: 1.3em;
    margin-bottom: 25px;
    color: #ffffff;
}

.page-terms-conditions__button {
    display: inline-block;
    background-color: #FFD700; /* Accent color */
    color: #0A2342; /* Main color for text */
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: 2px solid #FFD700;
}

.page-terms-conditions__button:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
}

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

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

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

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

    .page-terms-conditions__cta-section {
        padding: 30px 20px;
    }

    .page-terms-conditions__cta-section p {
        font-size: 1.1em;
    }

    .page-terms-conditions__button {
        padding: 12px 25px;
        font-size: 1em;
    }
}

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

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

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

    .page-terms-conditions__cta-section {
        margin-top: 30px;
    }
}