﻿/* Terms & Conditions 页面特定的样式 */
.content-section {
    padding: 32px 0;
}

.mains-title {
    font-size: 60px;
}

.last-updated {
    font-size: 18px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
}

.intro-text {
    font-size: 16px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.4;
    margin-bottom: 40px;
}

.terms-section {
    margin-bottom: 40px;
}

.section-title {
    font-size: 24px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.section-content {
    font-size: 16px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.4;
    white-space: pre-line;
}

/* Responsive media queries */
@media (min-width: 640px) {


    .section-title {
        font-size: 28px;
    }

    .section-content {
        font-size: 18px;
    }
}

@media (min-width: 768px) {

    .last-updated {
        font-size: 24px;
    }

    .intro-text {
        font-size: 20px;
    }

    .section-title {
        font-size: 32px;
    }

    .section-content {
        font-size: 20px;
    }
}

@media (min-width: 1024px) {

    .last-updated {
        font-size: 32px;
    }

    .intro-text {
        font-size: 24px;
    }

    .section-title {
        font-size: 40px;
    }

    .section-content {
        font-size: 24px;
    }
}


