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

.page-terms-conditions__hero {
    background-image: url('[GALLERY:hero:abstract_pattern,geometric,dark_blue_orange,zbet]');
    background-size: cover;
    background-position: center;
    background-color: #1A2E5B;
    padding: 80px 20px;
    color: #ffffff;
    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(26, 46, 91, 0.8), rgba(255, 140, 0, 0.6));
    z-index: 1;
}

.page-terms-conditions__hero > * {
    position: relative;
    z-index: 2;
}

.page-terms-conditions__title {
    font-size: 3.2em;
    margin-bottom: 15px;
    font-weight: bold;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

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

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

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

.page-terms-conditions__section:last-of-type {
    margin-bottom: 0;
}

.page-terms-conditions__section-title {
    font-size: 2em;
    color: #1A2E5B;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 3px solid #FF8C00;
    display: inline-block;
    font-weight: 700;
}

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

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

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

.page-terms-conditions__section a {
    color: #FF8C00;
    text-decoration: none;
    font-weight: bold;
}

.page-terms-conditions__section a:hover {
    text-decoration: underline;
}

.page-terms-conditions__button {
    display: inline-block;
    background-color: #FF8C00;
    color: #ffffff;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin-top: 20px;
    border: none;
    cursor: pointer;
}

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

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

.page-terms-conditions__image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

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

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

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

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

    .page-terms-conditions__container {
        padding: 0 15px;
    }
}

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

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

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

    .page-terms-conditions__hero {
        padding: 60px 15px;
    }

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