/* style/terms-conditions.css */

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

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

.page-terms-conditions__hero-section {
    background: linear-gradient(135deg, #1A237E, #3f479e);
    color: #fff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-terms-conditions__hero-section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    filter: blur(50px);
}

.page-terms-conditions__hero-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 250px;
    height: 250px;
    background: rgba(255, 215, 0, 0.15);
    border-radius: 50%;
    filter: blur(60px);
}

.page-terms-conditions__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-terms-conditions__hero-description {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto;
    color: #e0e0e0;
}

.page-terms-conditions__content-section {
    padding: 60px 0;
    background-color: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    margin-top: -40px;
    position: relative;
    z-index: 1;
    border-radius: 8px;
}

.page-terms-conditions__article {
    padding: 30px;
    border-radius: 8px;
}

.page-terms-conditions__section-title {
    font-size: 2em;
    color: #1A237E;
    margin-top: 40px;
    margin-bottom: 20px;
    border-bottom: 3px solid #FFD700;
    padding-bottom: 10px;
    font-weight: 700;
}

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

.page-terms-conditions__article a {
    color: #1A237E;
    text-decoration: underline;
    font-weight: bold;
}

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

.page-terms-conditions__list {
    list-style: disc inside;
    margin-bottom: 20px;
    padding-left: 20px;
}

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

.page-terms-conditions__image-wrapper {
    text-align: center;
    margin: 40px 0;
}

.page-terms-conditions__image {
    max-width: 80%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.page-terms-conditions__image:hover {
    transform: translateY(-5px);
}

.page-terms-conditions__cta-wrapper {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background-color: #f0f4f8;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.page-terms-conditions__cta-text {
    font-size: 1.5em;
    color: #1A237E;
    margin-bottom: 25px;
    font-weight: 600;
}

.page-terms-conditions__cta-button {
    display: inline-block;
    background-color: #FFD700;
    color: #1A237E;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 10px rgba(255, 215, 0, 0.4);
}

.page-terms-conditions__cta-button:hover {
    background-color: #e5c100;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(255, 215, 0, 0.6);
}

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

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

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

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

    .page-terms-conditions__image {
        max-width: 95%;
    }

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

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

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

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

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

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