* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }

        :root {
            --primary: #0a192f;
            --secondary: #1e3a8a;
            --accent: #3b82f6;
            --light: #e0f2fe;
            --dark: #0f172a;
            --text: #cbd5e1;
        }

        body {
            background-color: var(--dark);
            color: var(--text);
            line-height: 1.6;
            overflow-x: hidden;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header Styles */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            background-color: rgba(10, 25, 47, 0.95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }

        .logo {
            font-size: 24px;
            font-weight: bold;
            color: var(--accent);
            text-decoration: none;
            letter-spacing: 1px;
        }

        .nav-links {
            display: flex;
            list-style: none;
        }

        .nav-links li {
            margin-left: 30px;
        }

        .nav-links a {
            color: var(--text);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }

        .nav-links a:hover {
            color: var(--accent);
        }

        .burger {
            display: none;
            cursor: pointer;
        }

        .burger div {
            width: 25px;
            height: 3px;
            background-color: var(--text);
            margin: 5px 0;
            transition: all 0.3s ease;
        }

        /* Main Content */
        main {
            padding-top: 80px;
            min-height: 100vh;
        }

        .privacy-header {
            background: linear-gradient(rgba(10, 25, 47, 0.8), rgba(10, 25, 47, 0.8)), url('../img/15.webp');
            background-size: cover;
            background-position: center;
            padding: 80px 0;
            text-align: center;
        }

        .privacy-header h1 {
            font-size: 2.5rem;
            color: var(--light);
            margin-bottom: 20px;
        }

        .privacy-content {
            padding: 60px 0;
        }

        .privacy-section {
            margin-bottom: 40px;
        }

        .privacy-section h2 {
            font-size: 1.8rem;
            color: var(--light);
            margin-bottom: 20px;
        }

        .privacy-section h3 {
            font-size: 1.4rem;
            color: var(--light);
            margin: 25px 0 15px;
        }

        .privacy-section p {
            margin-bottom: 15px;
        }

        .privacy-section ul {
            margin-left: 20px;
            margin-bottom: 15px;
        }

        .privacy-section li {
            margin-bottom: 10px;
        }

        .privacy-section a {
            color: var(--accent);
            text-decoration: none;
        }

        .privacy-section a:hover {
            text-decoration: underline;
        }

        /* Footer */
        footer {
            background-color: var(--primary);
            padding: 50px 0 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 30px;
            margin-bottom: 30px;
        }

        .footer-logo {
            flex: 1;
            min-width: 250px;
        }

        .footer-logo h3 {
            font-size: 1.8rem;
            margin-bottom: 15px;
            color: var(--accent);
        }

        .footer-links {
            flex: 1;
            min-width: 200px;
        }

        .footer-links h4 {
            font-size: 1.2rem;
            margin-bottom: 15px;
            color: var(--light);
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: var(--text);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--accent);
        }

        .footer-contact {
            flex: 1;
            min-width: 250px;
        }

        .footer-contact h4 {
            font-size: 1.2rem;
            margin-bottom: 15px;
            color: var(--light);
        }

        .contact-detail {
            display: flex;
            align-items: flex-start;
            margin-bottom: 15px;
        }

        .contact-detail-icon {
            margin-right: 10px;
            color: var(--accent);
        }

        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            color: var(--text);
        }

        /* Responsive */
        @media (max-width: 768px) {
            .nav-links {
                position: absolute;
                top: 70px;
                left: 0;
                width: 100%;
                background-color: var(--primary);
                flex-direction: column;
                align-items: center;
                padding: 20px 0;
                transform: translateY(-150%);
                transition: transform 0.3s ease;
                box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
            }

            .nav-links.active {
                transform: translateY(0);
            }

            .nav-links li {
                margin: 10px 0;
            }

            .burger {
                display: block;
            }

            .burger.active div:nth-child(1) {
                transform: rotate(-45deg) translate(-5px, 6px);
            }

            .burger.active div:nth-child(2) {
                opacity: 0;
            }

            .burger.active div:nth-child(3) {
                transform: rotate(45deg) translate(-5px, -6px);
            }

            .privacy-header h1 {
                font-size: 2rem;
            }
        }

