* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Georgia', serif;
            color: #333;
            line-height: 1.6;
            background: #fff;
            overflow-x: hidden;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-100px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(100px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes shimmer {
            0% { background-position: -1000px 0; }
            100% { background-position: 1000px 0; }
        }

        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .animate-on-scroll {
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .animate-on-scroll.visible {
            opacity: 1;
            transform: translateY(0);
        }

        header {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.98);
            padding: 20px 5%;
            z-index: 1000;
            border-bottom: 1px solid rgba(212, 175, 55, 0.2);
            backdrop-filter: blur(10px);
            animation: fadeIn 0.5s ease-in;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
        }

        .logo {
            font-size: 26px;
            font-weight: bold;
            color: #d4af37;
            letter-spacing: 3px;
            animation: slideInLeft 0.8s ease-out;
            position: relative;
        }

        .logo::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, #d4af37, transparent);
            animation: shimmer 3s infinite;
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 40px;
            animation: slideInRight 0.8s ease-out;
        }

        nav a {
            color: #333;
            text-decoration: none;
            font-size: 14px;
            letter-spacing: 1px;
            transition: all 0.3s;
            text-transform: uppercase;
            position: relative;
        }

        nav a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: #d4af37;
            transition: width 0.3s;
        }

        nav a:hover::after {
            width: 100%;
        }

        nav a:hover {
            color: #d4af37;
            transform: translateY(-2px);
        }

        .page-hero {
            margin-top: 80px;
            height: 50vh;
            background: linear-gradient(135deg, #faf7f2 0%, #fff 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: #333;
            position: relative;
            overflow: hidden;
        }

        .page-hero::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
            animation: rotate 30s linear infinite;
        }

        .page-hero-content {
            position: relative;
            z-index: 10;
        }

        .page-hero h1 {
            font-size: 56px;
            font-weight: 300;
            letter-spacing: 5px;
            margin-bottom: 20px;
            animation: fadeInUp 1s ease-out;
            color: #2c2c2c;
        }

        .page-hero p {
            font-size: 18px;
            letter-spacing: 2px;
            color: #d4af37;
            animation: fadeInUp 1s ease-out 0.3s both;
        }

        .privacy-content {
            background: #fff;
            padding: 100px 5%;
            max-width: 1000px;
            margin: 0 auto;
        }

        .privacy-intro {
            text-align: center;
            margin-bottom: 60px;
            padding-bottom: 40px;
            border-bottom: 2px solid #f0f0f0;
        }

        .privacy-intro p {
            font-size: 17px;
            color: #666;
            line-height: 1.9;
            max-width: 800px;
            margin: 0 auto;
        }

        .last-updated {
            display: inline-block;
            background: #faf7f2;
            padding: 12px 30px;
            border-left: 4px solid #d4af37;
            margin-bottom: 30px;
            font-size: 15px;
            color: #666;
        }

        .privacy-section {
            margin-bottom: 50px;
            animation: fadeInUp 0.8s ease-out;
        }

        .privacy-section h2 {
            font-size: 32px;
            font-weight: 300;
            color: #2c2c2c;
            margin-bottom: 25px;
            letter-spacing: 2px;
            position: relative;
            padding-left: 20px;
        }

        .privacy-section h2::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 5px;
            height: 30px;
            background: #d4af37;
        }

        .privacy-section h3 {
            font-size: 22px;
            font-weight: 400;
            color: #d4af37;
            margin: 30px 0 15px;
            letter-spacing: 1px;
        }

        .privacy-section p {
            font-size: 16px;
            line-height: 1.9;
            color: #666;
            margin-bottom: 20px;
            text-align: justify;
        }

        .privacy-section ul {
            margin: 20px 0 20px 30px;
            color: #666;
        }

        .privacy-section ul li {
            margin-bottom: 12px;
            line-height: 1.8;
            font-size: 16px;
        }

        .privacy-section ul li strong {
            color: #333;
        }

        .highlight-box {
            background: #faf7f2;
            border-left: 4px solid #d4af37;
            padding: 25px 30px;
            margin: 30px 0;
        }

        .highlight-box p {
            margin: 0;
            color: #555;
        }

        .contact-box {
            background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
            color: #fff;
            padding: 50px;
            text-align: center;
            margin-top: 60px;
            position: relative;
            overflow: hidden;
        }

        .contact-box::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
            animation: rotate 20s linear infinite;
        }

        .contact-box-content {
            position: relative;
            z-index: 10;
        }

        .contact-box h3 {
            font-size: 28px;
            font-weight: 300;
            margin-bottom: 20px;
            color: #d4af37;
            letter-spacing: 2px;
        }

        .contact-box p {
            font-size: 17px;
            color: #ccc;
            margin-bottom: 10px;
        }

        .contact-box a {
            color: #d4af37;
            text-decoration: none;
            transition: all 0.3s;
        }

        .contact-box a:hover {
            color: #fff;
            text-decoration: underline;
        }

        footer {
            background: #0a0a0a;
            color: #fff;
            padding: 80px 5%;
            text-align: center;
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 50px;
            margin-bottom: 50px;
        }

        .footer-section {
            animation: fadeInUp 0.8s ease-out;
        }

        .footer-section h3 {
            font-size: 20px;
            margin-bottom: 25px;
            color: #d4af37;
            letter-spacing: 2px;
        }

        .footer-section p,
        .footer-section a {
            color: #999;
            text-decoration: none;
            display: block;
            margin-bottom: 12px;
            transition: all 0.3s;
        }

        .footer-section a:hover {
            color: #d4af37;
            transform: translateX(5px);
        }

        .copyright {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 30px;
            color: #666;
            font-size: 14px;
            letter-spacing: 1px;
        }

        @media (max-width: 768px) {
            .page-hero h1 {
                font-size: 36px;
            }

            nav ul {
                gap: 20px;
            }

            nav a {
                font-size: 12px;
            }

            .privacy-content {
                padding: 60px 5%;
            }

            .privacy-section h2 {
                font-size: 26px;
            }

            .contact-box {
                padding: 30px 20px;
            }
        }