/* style/terms-conditions.css */

/* Base styles for the page-terms-conditions */
.page-terms-conditions {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

/* Hero Section */
.page-terms-conditions__hero {
    background: linear-gradient(135deg, #1A237E, #3F51B5);
    color: #ffffff;
    padding: 80px 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-image: url('[GALLERY:bg:abstract,geometric,pattern,dark]');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: 0;
}

.page-terms-conditions__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    font-weight: 700;
    color: #FFC107;
    position: relative;
    z-index: 1;
}

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

/* Container for content */
.page-terms-conditions__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Main Content Section */
.page-terms-conditions__content-section {
    padding: 60px 0;
}

.page-terms-conditions__content-wrapper {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    padding: 40px;
}

.page-terms-conditions__article h2 {
    font-size: 2.2em;
    color: #1A237E;
    margin-top: 40px;
    margin-bottom: 20px;
    border-bottom: 3px solid #FFC107;
    padding-bottom: 10px;
    font-weight: 600;
}

.page-terms-conditions__article h3 {
    font-size: 1.8em;
    color: #1A237E;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

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

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

.page-terms-conditions__article ul li {
    margin-bottom: 8px;
    font-size: 1.05em;
}

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

.page-terms-conditions__article a:hover {
    text-decoration: underline;
    color: #FFC107;
}

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

/* Call to Action Buttons */
.page-terms-conditions__button {
    display: inline-block;
    padding: 12px 28px;
    margin: 10px 10px 10px 0;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
    text-align: center;
}

.page-terms-conditions__button--primary {
    background-color: #FFC107;
    color: #1A237E;
    border: 2px solid #FFC107;
}

.page-terms-conditions__button--primary:hover {
    background-color: #e0a800;
    border-color: #e0a800;
    transform: translateY(-2px);
}

.page-terms-conditions__button--secondary {
    background-color: transparent;
    color: #1A237E;
    border: 2px solid #1A237E;
}

.page-terms-conditions__button--secondary:hover {
    background-color: #1A237E;
    color: #FFC107;
    transform: translateY(-2px);
}

/* CTA Banner */
.page-terms-conditions__cta-banner {
    background: linear-gradient(90deg, #1A237E, #3F51B5);
    border-radius: 12px;
    padding: 40px;
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.page-terms-conditions__cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('[GALLERY:bg:abstract,geometric,pattern,light]');
    background-size: cover;
    background-position: center;
    opacity: 0.05;
    z-index: 0;
}

.page-terms-conditions__cta-image {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin-bottom: 25px;
    border-radius: 50%;
    border: 4px solid #FFC107;
    box-shadow: 0 0 15px rgba(255, 193, 7, 0.5);
    position: relative;
    z-index: 1;
}

.page-terms-conditions__cta-content {
    position: relative;
    z-index: 1;
}

.page-terms-conditions__cta-title {
    font-size: 2.5em;
    color: #FFC107;
    margin-bottom: 15px;
    font-weight: 700;
}

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

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

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

    .page-terms-conditions__content-wrapper {
        padding: 25px;
    }

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

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

    .page-terms-conditions__button {
        padding: 10px 20px;
        font-size: 1em;
        margin: 8px 0;
        width: 100%;
    }

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

    .page-terms-conditions__cta-image {
        width: 100px;
        height: 100px;
    }

    .page-terms-conditions__cta-title {
        font-size: 2em;
    }

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

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

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

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

    .page-terms-conditions__article h3 {
        font-size: 1.3em;
    }

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