@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root {
    --primary-color: #4f46e5;
    --primary-dark: #3730a3;
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #94a3b8;
    --background-color: #fafbfc;
    --surface-color: #ffffff;
    --secondary-color: #64748b;
    --success-color: #10b981;
    --danger-color: #ef4444;
    --border-color: #e2e8f0;
    --border-light: #f1f5f9;
    --sidebar-bg: #1e293b;
    --radius: 10px;
    --radius-sm: 6px;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--background-color);
}

.support-nav {
    background-color: rgba(255, 255, 255, 0.888);
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(8px);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.support-nav .logo { display: flex; align-items: center; text-decoration: none; }
.support-nav .logo img { height: 32px; width: auto; transition: transform 0.2s ease; }
.support-nav .logo:hover img { transform: translateY(-1px); }

.nav-actions { display: flex; align-items: center; gap: 16px; }
.btn-outline {
    background: linear-gradient(135deg, #4f46e5, #3730a3);
    color: white;
    padding: 0.875rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-family: 'Inter';
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}
.btn-outline:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4); }

@media (max-width: 768px) {
    .btn-outline { padding: 0.675rem 1.25rem; font-size: 0.9rem; }
    .support-nav .logo img { height: 24px; }
}
@media (max-width: 480px) {
    .btn-outline { padding: 0.5rem 1.1rem; font-size: 0.8rem; width: 100%; text-align: center; }
}

.terms-container { max-width: 1000px; margin: 0 auto; padding: 0 20px; }

main { padding: 32px 0; }

.page-title { margin-bottom: 32px; text-align: center; }
.page-title h1 { font-size: 5vh; font-weight: 700; color: var(--text-primary); margin-bottom: 8px; }

.terms-content {
    background-color: var(--surface-color);
    border-radius: var(--radius);
    box-shadow: 2px 2px 10px 0.4px rgba(0,0,0,0.15);
    padding: 32px;
}

p { margin-bottom: 16px; color: var(--text-secondary); }

@media (max-width: 768px) {
    .terms-content { padding: 24px 16px; }
}
