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

:root {
    /* Color Palette */
    --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;
    
    /* Border Radius */
    --radius: 10px;
    --radius-sm: 6px;
    
    /* Shadows */
    --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);
}

/* Responsive adjustments */
@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;
}

/* Header Styles */
header {
    background-color: var(--surface-color);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 20px;
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    gap: 24px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--primary-color);
}

/* Main Content Styles */
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;
}

.page-title p {
    color: var(--text-secondary);
    font-size: 16px;
}

.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;
}

.section-header {
    margin: 32px 0 16px;
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
}

.section-header:first-child {
    margin-top: 0;
}

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

ul {
    margin-bottom: 16px;
    padding-left: 24px;
}

li {
    margin-bottom: 8px;
    color: var(--text-secondary);
}

.highlight {
    background-color: var(--border-light);
    padding: 16px;
    border-radius: var(--radius-sm);
    margin: 16px 0;
    border-left: 4px solid var(--primary-color);
}

.plan-comparison {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 24px 0;
}

.plan-card {
    background-color: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 20px;
    box-shadow: var(--shadow-sm);
}

.plan-name {
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.plan-description {
    color: var(--text-secondary);
    font-size: 14px;
}

/* Footer Styles */
footer {
    background-color: var(--surface-color);
    border-top: 1px solid var(--border-color);
    padding: 32px 0;
    margin-top: 32px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 14px;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.copyright {
    color: var(--text-muted);
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 16px;
    }
    
    .nav-links {
        gap: 16px;
    }
    
    .page-title h1 {
        font-size: 32px;
    }
    
    .terms-content {
        padding: 24px 16px;
    }
    
    .plan-comparison {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}