    <link
        href="https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap"
        rel="stylesheet">

    <!-- Main Stylesheet -->
    <link rel="stylesheet" href="css/style.css">
    <link rel="icon" type="image/png" href="kritoro_logo.png">

    <style>
        .legal-content {
            padding: 80px 0 100px;
        }

        .legal-content .container {
            max-width: 1000px;
        }

        .legal-content h2 {
            font-size: clamp(1.6rem, 3vw, 2.2rem);
            color: #ffffff;
            margin-top: 50px;
            margin-bottom: 16px;
            font-weight: 700;
            letter-spacing: 0.5px;
            position: relative;
            padding-bottom: 12px;
        }

        .legal-content h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background: linear-gradient(90deg, #6366f1, #8855ff);
            border-radius: 2px;
        }

        .legal-content h3 {
            font-size: clamp(1.2rem, 2.2vw, 1.5rem);
            color: rgba(255, 255, 255, 0.9);
            margin-top: 30px;
            margin-bottom: 12px;
            font-weight: 600;
        }

        .legal-content p {
            font-size: clamp(16px, 1.4vw, 19px);
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.65);
            margin-bottom: 16px;
        }

        .legal-content ul {
            list-style: none;
            padding: 0;
            margin: 0 0 20px 0;
        }

        .legal-content ul li {
            font-size: clamp(16px, 1.4vw, 19px);
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.65);
            padding-left: 24px;
            position: relative;
            margin-bottom: 8px;
        }

        .legal-content ul li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 10px;
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: linear-gradient(135deg, #6366f1, #8855ff);
        }

        .legal-content a {
            color: #8855ff;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .legal-content a:hover {
            color: #6366f1;
            text-decoration: underline;
        }

        .legal-effective-date,
        .legal-website {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.45);
            margin-bottom: 8px;
            letter-spacing: 0.5px;
        }

        .legal-website {
            margin-bottom: 40px;
        }

        .legal-copyright {
            margin-top: 60px;
