/* style/terms-conditions.css */
/* 页面完整样式代码 - 注意：所有选择器必须添加页面前缀 */

.page-terms-conditions {
    font-family: 'Arial', sans-serif;
    color: #f0f0f0; /* Light text for dark background */
    background-color: #1a1a1a; /* Dark background */
    line-height: 1.6;
}

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

/* Hero Section */
.page-terms-conditions__hero {
    background: linear-gradient(135deg, #CC0000, #FFD700); /* Red to Gold gradient */
    padding: 80px 0;
    text-align: center;
    color: #fff; /* White text for hero section */
}

.page-terms-conditions__title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #fff;
    font-weight: bold;
}

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

.page-terms-conditions__cta-group {
    display: flex;
    justify-content: center;
    gap: 20px;
}

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

.page-terms-conditions__btn--primary {
    background-color: #FFD700; /* Gold */
    color: #333; /* Dark text for gold button */
    border: 2px solid #FFD700;
}

.page-terms-conditions__btn--primary:hover {
    background-color: #e6c200; /* Darker gold */
    color: #1a1a1a;
}

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

.page-terms-conditions__btn--secondary:hover {
    background-color: rgba(255, 255, 255, 0.2);
    color: #fff;
}

/* Content Sections */
.page-terms-conditions__content-sections {
    padding: 60px 0;
    background-color: #222; /* Slightly lighter dark background for content */
}

.page-terms-conditions__article {
    margin-bottom: 40px;
    padding: 30px;
    background-color: #2c2c2c; /* Even lighter dark background for articles */
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-terms-conditions__heading {
    color: #FFD700; /* Gold heading */
    font-size: 2em;
    margin-bottom: 20px;
    border-bottom: 2px solid #CC0000; /* Red underline */
    padding-bottom: 10px;
}

.page-terms-conditions__article p {
    margin-bottom: 15px;
    color: #f0f0f0;
}

.page-terms-conditions__image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 20px;
    margin-bottom: 20px;
    display: block; /* Ensures it takes its own line */
}

/* Final Call to Action */
.page-terms-conditions__final-cta {
    text-align: center;
    padding: 50px 0;
    background-color: #CC0000; /* Red background for final CTA */
    border-radius: 10px;
    margin-top: 60px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.page-terms-conditions__cta-text {
    font-size: 1.5em;
    color: #fff;
    margin-bottom: 30px;
    font-weight: bold;
}

.page-terms-conditions__btn--large {
    padding: 18px 40px;
    font-size: 1.3em;
    background-color: #FFD700;
    color: #333;
    border: 2px solid #FFD700;
}

.page-terms-conditions__btn--large:hover {
    background-color: #e6c200;
    color: #1a1a1a;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-terms-conditions__title {
        font-size: 2.5em;
    }
    .page-terms-conditions__subtitle {
        font-size: 1em;
        padding: 0 10px;
    }
    .page-terms-conditions__cta-group {
        flex-direction: column;
        gap: 15px;
    }
    .page-terms-conditions__btn {
        width: 80%;
        margin: 0 auto;
    }
    .page-terms-conditions__heading {
        font-size: 1.5em;
    }
    .page-terms-conditions__article {
        padding: 20px;
    }
    .page-terms-conditions__cta-text {
        font-size: 1.2em;
        padding: 0 15px;
    }
}

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