    :root {
        --primary: #4f46e5;
        --primary-dark: #4338ca;
        --secondary: #0ea5e9;
        --text-light: #f8fafc;
        --text-dark: #1e293b;
        --bg-light: #ffffff;
        --bg-dark: #0f172a;
        --accent: #8b5cf6;
        --success: #10b981;
    }

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    }

    body {
        background-color: var(--bg-light);
        color: var(--text-dark);
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        overflow-x: hidden;
    }

    header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1.5rem 2rem;
        background-color: var(--bg-light);
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
        position: sticky;
        top: 0;
        z-index: 10;
    }

    .logo {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-weight: 700;
        font-size: 1.5rem;
        color: var(--primary);
        text-decoration: none;
    }

    .logo-icon {
        font-size: 1.8rem;
    }

    nav ul {
        display: flex;
        list-style: none;
        gap: 2rem;
    }

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

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

    nav a.active {
        color: var(--primary);
        border-bottom: 2px solid var(--primary);
        padding-bottom: 5px;
    }

    .page-header {
        background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
        color: white;
        padding: 6rem 2rem 4rem;
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .page-header h1 {
        font-size: 3rem;
        font-weight: 800;
        margin-bottom: 1.5rem;
        position: relative;
        z-index: 1;
    }

    .page-header p {
        font-size: 1.25rem;
        max-width: 700px;
        margin: 0 auto;
        opacity: 0.9;
        position: relative;
        z-index: 1;
    }

    .floating-elements {
        position: absolute;
        width: 100%;
        height: 100%;
        overflow: hidden;
        top: 0;
        left: 0;
    }

    .floating-element {
        position: absolute;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
    }

    .e1 {
        width: 300px;
        height: 300px;
        top: -150px;
        left: -100px;
    }

    .e2 {
        width: 200px;
        height: 200px;
        top: 60%;
        right: -50px;
    }

    .e3 {
        width: 150px;
        height: 150px;
        bottom: -50px;
        left: 30%;
    }

    .privacy-intro {
        max-width: 800px;
        margin: 4rem auto;
        padding: 0 2rem;
        text-align: center;
    }

    .privacy-intro h2 {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
        color: var(--text-dark);
    }

    .privacy-intro p {
        font-size: 1.1rem;
        line-height: 1.6;
        color: var(--text-dark);
        opacity: 0.9;
        margin-bottom: 2rem;
    }

    .privacy-cards {
        max-width: 1200px;
        margin: 0 auto 4rem;
        padding: 0 2rem;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 2rem;
    }

    .privacy-card {
        background-color: var(--bg-light);
        border-radius: 16px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        padding: 2.5rem;
        text-align: center;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .privacy-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }

    .privacy-card i {
        font-size: 3rem;
        color: var(--primary);
        margin-bottom: 1.5rem;
    }

    .privacy-card h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        color: var(--text-dark);
    }

    .privacy-card p {
        font-size: 1rem;
        line-height: 1.6;
        color: var(--text-dark);
        opacity: 0.8;
    }

    .privacy-details {
        background-color: #f8f9ff;
        padding: 5rem 2rem;
    }

    .privacy-container {
        max-width: 800px;
        margin: 0 auto;
    }

    .privacy-section {
        margin-bottom: 3rem;
    }

    .privacy-section h2 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
        color: var(--text-dark);
        border-bottom: 2px solid var(--primary);
        padding-bottom: 0.5rem;
        display: inline-block;
    }

    .privacy-section p {
        font-size: 1.1rem;
        line-height: 1.6;
        color: var(--text-dark);
        margin-bottom: 1.5rem;
    }

    .privacy-list {
        list-style: none;
        margin: 2rem 0;
    }

    .privacy-list li {
        display: flex;
        align-items: flex-start;
        margin-bottom: 1.5rem;
    }

    .privacy-list li i {
        color: var(--success);
        margin-right: 1rem;
        margin-top: 0.25rem;
        font-size: 1.25rem;
    }

    .privacy-list li div h4 {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
        color: var(--text-dark);
    }

    .privacy-list li div p {
        font-size: 1rem;
        margin-bottom: 0;
    }

    .cta-section {
        background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
        color: white;
        padding: 4rem 2rem;
        text-align: center;
        margin-top: 2rem;
    }

    .cta-content {
        max-width: 700px;
        margin: 0 auto;
    }

    .cta-content h2 {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }

    .cta-content p {
        font-size: 1.2rem;
        margin-bottom: 2rem;
        opacity: 0.9;
    }

    .cta-btn {
        display: inline-block;
        background: white;
        color: var(--primary);
        padding: 1rem 2rem;
        border-radius: 8px;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s ease;
        font-size: 1.1rem;
    }

    .cta-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
    }

    footer {
        background-color: var(--bg-dark);
        color: var(--text-light);
        padding: 3rem 2rem;
        margin-top: auto;
    }

    .footer-content {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .footer-column {
        flex: 1;
        min-width: 200px;
        margin-bottom: 2rem;
    }

    .footer-column h3 {
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
        color: white;
    }

    .footer-column ul {
        list-style: none;
    }

    .footer-column ul li {
        margin-bottom: 0.8rem;
    }

    .footer-column a {
        color: var(--text-light);
        opacity: 0.8;
        text-decoration: none;
        transition: opacity 0.2s ease;
    }

    .footer-column a:hover {
        opacity: 1;
    }

    .copyright {
        text-align: center;
        padding-top: 2rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        margin-top: 2rem;
        font-size: 0.9rem;
        opacity: 0.7;
    }

    @media (max-width: 1024px) {
        .privacy-cards {
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        }

        .page-header h1 {
            font-size: 2.5rem;
        }

        nav ul {
            gap: 1rem;
        }
    }

    @media (max-width: 768px) {
        header {
            padding: 1rem;
        }

        nav ul {
            display: none;
        }

        .logo {
            font-size: 1.2rem;
        }

        .page-header h1 {
            font-size: 2.2rem;
        }

        .privacy-cards {
            grid-template-columns: 1fr;
        }

        .privacy-section h2 {
            font-size: 1.8rem;
        }

        .footer-column {
            flex: 100%;
        }
    }

    /* Mobile menu */
    .mobile-menu-btn {
        display: none;
        font-size: 1.5rem;
        color: var(--text-dark);
        background: none;
        border: none;
        cursor: pointer;
    }

    @media (max-width: 768px) {
        .mobile-menu-btn {
            display: block;
        }

        .nav-menu.active {
            display: flex;
            flex-direction: column;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background-color: var(--bg-light);
            padding: 1rem 0;
            box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
            z-index: 100;
        }

        .nav-menu.active li {
            margin: 0.8rem 0;
            text-align: center;
        }
    }