/* Terms of Service Page Styles */

/* 页面导航 */
.page-nav {
    display: flex;
    flex-direction: column;
    padding: 20px 30px;
    background: #1a73e8;
    color: white;
    border-bottom: 1px solid #0d62d9;
}

.nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
}

.nav-back {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 6px;
    transition: background 0.3s ease;
}

.nav-back:hover {
    background: rgba(255, 255, 255, 0.1);
}

.page-title-section {
    text-align: center;
    margin-bottom: 0;
}

.page-nav h1 {
    font-size: 24px;
    font-weight: 600;
    margin: 0;
}

.header-controls {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 15px;
}

.language-selector {
    position: relative;
}

.language-dropdown {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='white' d='M3 4.5L6 7.5L9 4.5H3Z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 12px;
    padding-right: 35px;
    min-width: 120px;
}

.language-dropdown option {
    background: #1a73e8;
    color: white;
}

.language-dropdown:hover {
    background: rgba(255, 255, 255, 0.3);
}

.terms-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.policy-section {
    margin-bottom: 40px;
    padding: 25px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.policy-section h2 {
    color: #1a73e8;
    font-size: 1.5rem;
    margin-bottom: 15px;
    border-bottom: 2px solid #eaeaea;
    padding-bottom: 10px;
}

.policy-section p {
    line-height: 1.7;
    color: #555;
    margin-bottom: 15px;
}

.policy-section ul {
    margin: 15px 0;
    padding-left: 20px;
}

.policy-section li {
    line-height: 1.6;
    color: #555;
    margin-bottom: 8px;
}

.contact-info {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 6px;
    margin-top: 15px;
}

.contact-info p {
    margin-bottom: 8px;
    color: #666;
}

.contact-info strong {
    color: #333;
}

/* Responsive Design */
@media (max-width: 768px) {
    .policy-section {
        padding: 20px;
        margin-bottom: 30px;
    }
    
    .policy-section h2 {
        font-size: 1.3rem;
    }
    
    .terms-content {
        padding: 0 15px;
    }
}