   :root {
            --primary-gold: #D4AF37;
            --secondary-gold: #FFD700;
            --dark-bg: #1a1a1a;
            --light-gold: #F4E4BC;
            --text-white: #ffffff;
            --text-gray: #cccccc;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Open Sans', sans-serif;
            background-color: var(--dark-bg);
            color: var(--text-white);
            line-height: 1.7;
        }

        .navbar {
            background: rgba(26, 26, 26, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(212, 175, 55, 0.2);
            padding: 1rem 0;
        }

        .navbar-brand {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary-gold) !important;
        }

        .navbar-nav .nav-link {
            color: var(--text-white) !important;
            font-weight: 500;
            margin: 0 1rem;
            transition: color 0.3s ease;
        }

        .navbar-nav .nav-link:hover {
            color: var(--primary-gold) !important;
        }

        .privacy-hero {
            background: linear-gradient(135deg, rgba(26, 26, 26, 0.9), rgba(212, 175, 55, 0.2));
            padding: 120px 0 80px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .privacy-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 50%);
            animation: rotate 30s linear infinite;
        }

        .privacy-title {
            font-family: 'Playfair Display', serif;
            font-size: 3.5rem;
            font-weight: 700;
            color: var(--primary-gold);
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
            position: relative;
            z-index: 2;
        }

        .privacy-subtitle {
            font-size: 1.2rem;
            color: var(--text-gray);
            max-width: 600px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .privacy-content {
            padding: 80px 0;
            position: relative;
        }

        .privacy-section {
            background: linear-gradient(135deg, rgba(40, 40, 40, 0.9), rgba(212, 175, 55, 0.1));
            border: 1px solid rgba(212, 175, 55, 0.3);
            border-radius: 20px;
            padding: 3rem;
            margin-bottom: 3rem;
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .privacy-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, var(--primary-gold), var(--secondary-gold));
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .privacy-section:hover::before {
            transform: scaleX(1);
        }

        .privacy-section:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
            border-color: var(--primary-gold);
        }

        .section-heading {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary-gold);
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .section-icon {
            font-size: 1.5rem;
            color: var(--primary-gold);
        }

        .privacy-section p {
            color: var(--text-gray);
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
        }

        .privacy-section ul {
            list-style: none;
            padding: 0;
        }

        .privacy-section li {
            color: var(--text-gray);
            margin-bottom: 1rem;
            padding-left: 2rem;
            position: relative;
            font-size: 1.05rem;
        }

        .privacy-section li::before {
            content: '▶';
            position: absolute;
            left: 0;
            color: var(--primary-gold);
            font-size: 0.8rem;
            top: 0.1rem;
        }

        .highlight-text {
            color: var(--primary-gold);
            font-weight: 600;
        }

        .contact-section {
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(26, 26, 26, 0.9));
            padding: 4rem 0;
            text-align: center;
            border-radius: 20px;
            margin: 3rem 0;
        }

        .contact-title {
            font-family: 'Playfair Display', serif;
            font-size: 2.2rem;
            color: var(--primary-gold);
            margin-bottom: 2rem;
        }

        .contact-info {
            display: flex;
            justify-content: center;
            gap: 3rem;
            flex-wrap: wrap;
            margin-top: 2rem;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--text-white);
            font-size: 1.1rem;
            transition: all 0.3s ease;
        }

        .contact-item:hover {
            color: var(--primary-gold);
            transform: translateY(-2px);
        }

        .contact-icon {
            font-size: 1.3rem;
            color: var(--primary-gold);
        }

      

        @keyframes rotate {
            from {
                transform: rotate(0deg);
            }
            to {
                transform: rotate(360deg);
            }
        }

        .animate-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

        .animate-on-scroll.animated {
            opacity: 1;
            transform: translateY(0);
        }

        @media (max-width: 768px) {
            .privacy-title {
                font-size: 2.5rem;
            }
            
            .privacy-section {
                padding: 2rem;
                margin-bottom: 2rem;
            }
            
            .section-heading {
                font-size: 1.5rem;
            }
            
            .contact-info {
                flex-direction: column;
                gap: 1.5rem;
            }
        }