.page-container {
    padding: 30px 0;
    max-width: 800px;
    margin: 0 auto;
}

.page-header {
    text-align: center;
    margin-bottom: 30px;
}

.page-header h1 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
}

.page-content {
    background-color: #fff;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 30px;
    margin-bottom: 30px;
}

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

.terms-section:last-child {
    margin-bottom: 0;
}

.terms-section h2 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.terms-section p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.terms-section ul {
    padding-left: 20px;
    margin-bottom: 10px;
}

.terms-section li {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 5px;
}

.page-footer {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: #666;
}

.page-footer .date {
    margin-top: 5px;
    color: #999;
}

@media (max-width: 768px) {
    .page-container {
        padding: 20px 15px;
    }
    
    .page-content {
        padding: 20px;
    }
    
    .terms-section h2 {
        font-size: 17px;
    }
    
    .terms-section p,
    .terms-section li {
        font-size: 14px;
    }
} 