:root {
            --primary: rgb(28, 78, 241);
            --primary-light: #8283F2;
            --secondary: rgb(255, 197, 5);
            --dark: #2B2D42;
            --light: #F8F9FF;
            --text: #4A4B65;
            --text-light: #A1A1B9;
            --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            --shadow-sm: 0 8px 32px rgba(93, 95, 239, 0.1);
            --shadow-md: 0 4px 20px rgba(93, 95, 239, 0.3);
            --shadow-lg: 0 25px 50px rgba(0, 0, 0, 0.08);
            --border-radius: 16px;
        }

        body {
            font-family: 'Segoe UI', system-ui, sans-serif;
            color: var(--text);
            background: var(--light);
            line-height: 1.6;
            margin: 0;
            padding: 0;
        }

        .terms-container {
            max-width: 900px;
            margin: 120px auto 60px;
            padding: 0 2rem;
        }

        .terms-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .terms-header h1 {
            font-size: 2.5rem;
            color: var(--dark);
            margin-bottom: 1rem;
        }

        .terms-content {
            background: white;
            border-radius: var(--border-radius);
            padding: 3rem;
            box-shadow: var(--shadow-sm);
        }

        .terms-section {
            margin-bottom: 2.5rem;
        }

        .terms-section h2 {
            color: var(--primary);
            font-size: 1.5rem;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid rgba(93, 95, 239, 0.1);
        }

        .terms-section h3 {
            color: var(--dark);
            font-size: 1.2rem;
            margin: 1.5rem 0 0.8rem;
        }

        .terms-section p, .terms-section ul {
            margin-bottom: 1rem;
            color: var(--text);
        }

        .terms-section ul {
            padding-left: 1.5rem;
        }

        .terms-section li {
            margin-bottom: 0.5rem;
        }

        .highlight-box {
            background-color: rgba(93, 95, 239, 0.05);
            padding: 1.5rem;
            border-radius: 12px;
            margin: 1.5rem 0;
            border-left: 4px solid var(--primary);
        }
        .privacy-container {
            max-width: 900px;
            margin: 120px auto 60px;
            padding: 0 2rem;
        }

        .privacy-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .privacy-header h1 {
            font-size: 2.5rem;
            color: var(--dark);
            margin-bottom: 1rem;
        }

        .privacy-header p {
            color: var(--text-light);
            font-size: 1.1rem;
        }

        .privacy-content {
            background: white;
            border-radius: var(--border-radius);
            padding: 3rem;
            box-shadow: var(--shadow-sm);
        }

        .privacy-section {
            margin-bottom: 2.5rem;
        }

        .privacy-section h2 {
            color: var(--primary);
            font-size: 1.5rem;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 2px solid rgba(93, 95, 239, 0.1);
        }

        .privacy-section p, .privacy-section ul {
            margin-bottom: 1rem;
            color: var(--text);
        }

        .privacy-section ul {
            padding-left: 1.5rem;
        }

        .privacy-section li {
            margin-bottom: 0.5rem;
        }

        .highlight {
            background-color: rgba(93, 95, 239, 0.05);
            padding: 1.5rem;
            border-radius: 12px;
            margin: 1.5rem 0;
            border-left: 4px solid var(--primary);
        }

        @media (max-width: 768px) {
            .terms-container {
                margin: 100px auto 40px;
            }
            
            .terms-content {
                padding: 2rem;
            }
            
            .terms-header h1 {
                font-size: 2rem;
            }
             .privacy-container {
                margin: 100px auto 40px;
            }
            
            .privacy-content {
                padding: 2rem;
            }
            
            .privacy-header h1 {
                font-size: 2rem;
            }
        }
    </style>