/* 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: linear-gradient(135deg, #A80000 0%, #FFD700 100%);
    color: #fff;
    padding: 80px 0;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

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

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

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

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

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

.page-terms-conditions__sub-heading {
    font-size: 1.5em;
    color: #660000;
    margin-top: 30px;
    margin-bottom: 15px;
}

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

.page-terms-conditions__article ul {
    list-style-type: disc;
    margin-left: 25px;
    margin-bottom: 20px;
}

.page-terms-conditions__article ul li {
    margin-bottom: 8px;
    color: #444;
}

.page-terms-conditions__cta-section {
    background-color: #A80000;
    color: #fff;
    text-align: center;
    padding: 60px 20px;
    margin-top: 60px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.page-terms-conditions__cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:cockfighting_pattern,subtle_texture]') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 0;
}

.page-terms-conditions__cta-section > * {
    position: relative;
    z-index: 1;
}

.page-terms-conditions__cta-title {
    font-size: 2.5em;
    margin-bottom: 20px;
    font-weight: bold;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.page-terms-conditions__cta-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-terms-conditions__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.page-terms-conditions__button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.page-terms-conditions__button--primary {
    background-color: #FFD700;
    color: #A80000;
    border: 2px solid #FFD700;
}

.page-terms-conditions__button--primary:hover {
    background-color: #e6c200;
    color: #8a0000;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

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

.page-terms-conditions__button--secondary:hover {
    background-color: #FFD700;
    color: #A80000;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.page-terms-conditions__button--text {
    background: none;
    border: none;
    color: #A80000;
    padding: 10px 0;
    font-size: 1.1em;
    text-decoration: underline;
    display: block;
    margin-top: 20px;
}

.page-terms-conditions__button--text:hover {
    color: #660000;
}

.page-terms-conditions__cta-image {
    max-width: 250px;
    height: auto;
    margin-top: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

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

.page-terms-conditions__info-title {
    font-size: 2.2em;
    color: #A80000;
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-terms-conditions__faq-item {
    background-color: #fff;
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border-left: 5px solid #FFD700;
}

.page-terms-conditions__faq-question {
    font-size: 1.3em;
    color: #A80000;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-terms-conditions__faq-answer {
    font-size: 1.0em;
    color: #555;
}

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

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

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

    .page-terms-conditions__sub-heading {
        font-size: 1.3em;
    }

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

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

    .page-terms-conditions__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .page-terms-conditions__button {
        width: 80%;
        margin: 0 auto;
    }

    .page-terms-conditions__hero,
    .page-terms-conditions__content-section,
    .page-terms-conditions__cta-section,
    .page-terms-conditions__info-section {
        padding: 40px 0;
    }
}

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

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

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

    .page-terms-conditions__button {
        width: 90%;
        padding: 12px 20px;
        font-size: 1em;
    }

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