:root {
            --primary-blue: #3B82F6;
            --dark-blue: #1E40AF;
    --gold: #FABB00;
            --light-gold: #FACB3F;
            --bg-gray: #F9FAFB;
            --text-dark: #1F2937;
            --text-light: #6B7280;
        }

        body {
            font-family: 'Inter', sans-serif;
            color: var(--text-dark);
            line-height: 1.6;
            background-color: var(--bg-gray);
        }

        h1, h2, h3, h4, h5, h6 {
            font-weight: 600;
        }

        .logo-text {
            font-weight: 700;
            font-size: 24px;
            color: var(--dark-blue);
        }
              .logo-img {
    width: 60px;
    height: auto;
}
.logo-text span {
    background: linear-gradient(90deg, #d97706 0%, #b45309 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

        .privacy-header {
            background: linear-gradient(135deg, #f0f7ff 0%, #e6f0ff 100%);
            padding: 80px 0;
        }

        .privacy-content {
            background: white;
            border-radius: 12px;
            padding: 50px;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
            margin-top: -40px;
            position: relative;
            z-index: 1;
        }

        .section-title {
            color: var(--dark-blue);
            padding-bottom: 10px;
            margin-bottom: 25px;
            border-bottom: 3px solid var(--gold);
        }

        .privacy-section {
            margin-bottom: 40px;
        }

        .update-badge {
            background: var(--gold);
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
            display: inline-block;
        }

        .back-to-home {
            color: var(--primary-blue);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .back-to-home:hover {
            color: var(--dark-blue);
        }

        .privacy-list {
            padding-left: 20px;
        }

        .privacy-list li {
            margin-bottom: 10px;
        }

        .highlight-box {
            background: #f8fafc;
            border-left: 4px solid var(--primary-blue);
            padding: 20px;
            margin: 20px 0;
            border-radius: 0 8px 8px 0;
        }
        .logo-img {
    width: 60px;
    height: auto;
}

        .warning-box {
            background: #fef3c7;
            border-left: 4px solid #f59e0b;
            padding: 20px;
            margin: 20px 0;
            border-radius: 0 8px 8px 0;
            border: 1px solid #b45309;
        }

        footer {
            background: #1F2937;
            color: white;
        }

        .footer-link {
            color: #D1D5DB;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .footer-link:hover {
            color: white;
        }

        .social-icon {
            color: #9CA3AF;
            font-size: 1.2rem;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .social-icon:hover {
            color: var(--gold);
            transform: translateY(-2px);
        }

        .last-updated {
            color: var(--text-light);
            font-size: 0.9rem;
        }

        .policy-stats {
            background: white;
            border-radius: 8px;
            padding: 15px;
            border: 1px solid #e5e7eb;
            font-size: 0.9rem;
            margin-bottom: 20px;
        }

        .stat-item {
            display: flex;
            justify-content: space-between;
            margin-bottom: 8px;
            padding-bottom: 8px;
            border-bottom: 1px solid #f3f4f6;
        }

        .stat-label {
            color: var(--text-light);
        }

        .stat-value {
            font-weight: 600;
            color: var(--dark-blue);
        }

        .policy-version {
            font-size: 0.8rem;
            color: var(--text-light);
            background: #f9fafb;
            padding: 2px 8px;
            border-radius: 4px;
            border: 1px solid #e5e7eb;
        }

        .data-request-form {
            background: #f0f9ff;
            border: 2px solid #bae6fd;
            border-radius: 12px;
            padding: 30px;
            margin: 30px 0;
        }

        .rights-list {
            background: #f8fafc;
            padding: 20px;
            border-radius: 8px;
            border: 1px solid #e5e7eb;
        }

        .right-item {
            padding: 10px 15px;
            margin-bottom: 10px;
            background: white;
            border-radius: 6px;
            border-left: 4px solid var(--primary-blue);
        }

        .right-title {
            font-weight: 600;
            color: var(--dark-blue);
            margin-bottom: 5px;
        }

        @media (max-width: 768px) {
            .privacy-content {
                padding: 30px 20px;
                margin-top: -20px;
            }

            .privacy-header {
                padding: 50px 0;
            }
        }