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

.page-terms-conditions a {
    color: #0A2342;
    text-decoration: none;
}

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

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

.page-terms-conditions__hero {
    background-color: #0A2342;
    color: #fff;
    padding: 80px 0;
    text-align: center;
    background-image: url('[GALLERY:hero:cockfighting,stadium,crowd,action,wide]');
    background-size: cover;
    background-position: center;
    position: relative;
}

.page-terms-conditions__hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 35, 66, 0.8);
    z-index: 1;
}

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

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

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

.page-terms-conditions__btn {
    display: inline-block;
    background-color: #FFD700;
    color: #0A2342;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: bold;
    text-transform: uppercase;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1.1em;
}

.page-terms-conditions__btn:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
    text-decoration: none;
}

.page-terms-conditions__btn--secondary {
    background-color: #0A2342;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-terms-conditions__btn--secondary:hover {
    background-color: #1a3c61;
    border-color: #e6c200;
}

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

.page-terms-conditions__article {
    background-color: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

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

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

.page-terms-conditions__article ul,
.page-terms-conditions__article ol {
    margin-bottom: 15px;
    padding-left: 25px;
    color: #555;
}

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

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

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

.page-terms-conditions__cta {
    background-color: #0A2342;
    color: #fff;
    padding: 60px 0;
    text-align: center;
    margin-top: 40px;
}

.page-terms-conditions__cta-title {
    font-size: 2.5em;
    color: #FFD700;
    margin-bottom: 20px;
}

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

.page-terms-conditions__btn--primary {
    margin-right: 15px;
}

.page-terms-conditions__btn--outline {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-terms-conditions__btn--outline:hover {
    background-color: #FFD700;
    color: #0A2342;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-terms-conditions__title {
        font-size: 2.5em;
    }
    .page-terms-conditions__subtitle {
        font-size: 1em;
    }
    .page-terms-conditions__heading {
        font-size: 1.7em;
    }
    .page-terms-conditions__article {
        padding: 20px;
    }
    .page-terms-conditions__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-terms-conditions__btn--primary {
        margin-right: 0;
        margin-bottom: 15px;
    }
    .page-terms-conditions__cta-title {
        font-size: 2em;
    }
}

@media (max-width: 480px) {
    .page-terms-conditions__title {
        font-size: 2em;
    }
    .page-terms-conditions__heading {
        font-size: 1.5em;
    }
    .page-terms-conditions__article {
        padding: 15px;
    }
    .page-terms-conditions__btn {
        display: block;
        width: 100%;
        text-align: center;
        margin-bottom: 15px;
    }
    .page-terms-conditions__btn:last-child {
        margin-bottom: 0;
    }
    .page-terms-conditions__cta-title {
        font-size: 1.8em;
    }
}