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

    body {
        font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        line-height: 1.6;
        background: linear-gradient(135deg, #fff9ed 0%, #fff5f0 100%);
        color: #fdffe8;
    }

    .privacy-section {
        padding: 80px 0;
        background: linear-gradient(135deg, #fff9ed 0%, #fff5f0 100%);
        position: relative;
        overflow: hidden;
    }

    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
        position: relative;
        z-index: 1;
    }

    /* Scroll Animation Styles */
    .scroll-animate {
        opacity: 0;
        transform: translateY(50px);
        transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

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

    .hero-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 60px;
        align-items: center;
        margin-bottom: 100px;
    }

    .content-left {
        max-width: 500px;
    }

    .pill-badge {
        display: inline-block;
        background: #fff;
        color: #6366f1;
        padding: 8px 16px;
        border-radius: 50px;
        font-size: 14px;
        font-weight: 600;
        margin-bottom: 24px;
        box-shadow: 0 2px 10px rgba(99, 102, 241, 0.1);
        border: 1px solid #e5e7eb;
        transition-delay: 0.1s;
    }

    .hero-title {
        font-size: clamp(2.5rem, 4vw, 3.5rem);
        font-weight: 800;
        line-height: 1.1;
        color: #283d5b;
        margin-bottom: 24px;
        transition-delay: 0.2s;
    }

    .highlight {
        color: #6366f1;
        position: relative;
    }

    .highlight::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 8px;
        background: linear-gradient(90deg, #6366f1, #8b5cf6);
        opacity: 0.3;
        border-radius: 4px;
    }

    .hero-description {
        font-size: 1.1rem;
        color: #6b7280;
        margin-bottom: 40px;
        line-height: 1.7;
        transition-delay: 0.3s;
    }

    .trust-indicators {
        display: flex;
        align-items: center;
        gap: 20px;
        transition-delay: 0.4s;
    }

    .trust-item {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .trust-avatars {
        display: flex;
        align-items: center;
    }

    .trust-avatars img {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        border: 2px solid #fff;
        margin-left: -8px;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

    .trust-avatars img:first-child {
        margin-left: 0;
    }

    .trust-avatars img:hover {
        transform: scale(1.1);
        z-index: 1;
        position: relative;
    }

    .trust-text {
        display: flex;
        flex-direction: column;
    }

    .rating-number {
        font-size: 1.5rem;
        font-weight: 700;
        color: #1f2937;
        margin-right: 8px;
    }

    .rating-label {
        font-size: 0.9rem;
        color: #6b7280;
    }

    .content-right {
        position: relative;
        transition-delay: 0.5s;
    }

    .hero-image {
        position: relative;
        width: 100%;
        height: 500px;
        border-radius: 20px;
        overflow: visible;
    }

    .image-container {
        width: 100%;
        height: 100%;
        border-radius: 20px;
        overflow: hidden;
        position: relative;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease;
    }

    .image-container:hover {
        transform: scale(1.02);
    }

    .image-container img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

    .image-container:hover img {
        transform: scale(1.05);
    }

    .image-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .image-container:hover .image-overlay {
        opacity: 1;
    }

    .floating-card {
        position: absolute;
        background: #fff;
        border-radius: 16px;
        padding: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.8);
        animation: cardFloat 6s ease-in-out infinite;
        transition: all 0.3s ease;
    }

    .floating-card:hover {
        transform: translateY(-5px) scale(1.05);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    }

    .security-card {
        top: 20px;
        right: -20px;
        width: 220px;
        animation-delay: 0s;
    }

    .compliance-card {
        bottom: 60px;
        left: -20px;
        width: 200px;
        animation-delay: 3s;
    }

    .encryption-card {
        top: 50%;
        right: -30px;
        width: 180px;
        animation-delay: 1.5s;
    }

    @keyframes cardFloat {
        0%, 100% { transform: translateY(0px) rotate(0deg); }
        33% { transform: translateY(-10px) rotate(1deg); }
        66% { transform: translateY(-5px) rotate(-1deg); }
    }

    .floating-card .card-icon {
        font-size: 1.5rem;
        margin-bottom: 8px;
        animation: iconPulse 3s ease-in-out infinite;
    }

    @keyframes iconPulse {
        0%, 100% { transform: scale(1); }
        50% { transform: scale(1.1); }
    }

    .floating-card h4 {
        font-size: 1rem;
        font-weight: 600;
        color: #1f2937;
        margin-bottom: 8px;
    }

    .floating-card p {
        font-size: 0.9rem;
        color: #6b7280;
        margin: 0;
    }

    .security-level {
        display: flex;
        align-items: center;
        gap: 8px;
        margin-top: 8px;
    }

    .level-text {
        font-size: 0.8rem;
        color: #6b7280;
    }

    .level-bar {
        flex: 1;
        height: 6px;
        background: #e5e7eb;
        border-radius: 3px;
        overflow: hidden;
    }

    .level-fill {
        width: 95%;
        height: 100%;
        background: linear-gradient(90deg, #10b981, #059669);
        border-radius: 3px;
        animation: fillBar 2s ease-out;
    }

    @keyframes fillBar {
        from { width: 0%; }
        to { width: 95%; }
    }

    .level-percent {
        font-size: 0.8rem;
        font-weight: 600;
        color: #10b981;
    }

    .compliance-badge {
        margin-top: 8px;
    }

    .badge-text {
        background: linear-gradient(135deg, #10b981, #059669);
        color: white;
        padding: 4px 8px;
        border-radius: 4px;
        font-size: 0.7rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .encryption-visual {
        margin-top: 8px;
    }

    .encryption-dots {
        display: flex;
        gap: 4px;
        align-items: center;
    }

    .encryption-dots span {
        width: 8px;
        height: 8px;
        background: #6366f1;
        border-radius: 50%;
        animation: encryptionPulse 2s ease-in-out infinite;
    }

    .encryption-dots span:nth-child(1) { animation-delay: 0s; }
    .encryption-dots span:nth-child(2) { animation-delay: 0.3s; }
    .encryption-dots span:nth-child(3) { animation-delay: 0.6s; }

    @keyframes encryptionPulse {
        0%, 100% { opacity: 0.3; transform: scale(1); }
        50% { opacity: 1; transform: scale(1.2); }
    }

    .privacy-features {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
        margin-bottom: 80px;
    }

    .feature-card {
        background: #fff;
        border-radius: 16px;
        padding: 30px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        transition: all 0.3s ease;
        border: 1px solid #f3f4f6;
    }

    .feature-card:nth-child(1) { transition-delay: 0.1s; }
    .feature-card:nth-child(2) { transition-delay: 0.2s; }
    .feature-card:nth-child(3) { transition-delay: 0.3s; }
    .feature-card:nth-child(4) { transition-delay: 0.4s; }

    .feature-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
        color: #fff;
        transition: transform 0.3s ease;
    }

    .feature-card:hover .feature-icon {
        transform: scale(1.1) rotate(5deg);
    }

    .collect-icon {
        background: linear-gradient(135deg, #6366f1, #8b5cf6);
    }

    .use-icon {
        background: linear-gradient(135deg, #f59e0b, #d97706);
    }

    .protect-icon {
        background: linear-gradient(135deg, #10b981, #059669);
    }

    .consent-icon {
        background: linear-gradient(135deg, #ef4444, #dc2626);
    }

    .feature-content h3 {
        font-size: 1.25rem;
        font-weight: 600;
        color: #26374f;
        margin-bottom: 12px;
    }

    .feature-content p {
        color: #6b7280;
        line-height: 1.6;
    }

    .cta-section {
        text-align: center;
        background: #fff;
        padding: 60px 40px;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transition-delay: 0.2s;
    }

    .cta-content h3 {
        font-size: 1.75rem;
        font-weight: 700;
        color: #1f2937;
        margin-bottom: 16px;
    }

    .cta-content p {
        color: #6b7280;
        margin-bottom: 32px;
        font-size: 1.1rem;
    }

    .cta-button {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: linear-gradient(135deg, #6366f1, #8b5cf6);
        color: white;
        padding: 16px 32px;
        border: none;
        border-radius: 12px;
        font-size: 1rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        text-decoration: none;
        box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
    }

    .cta-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
    }

    .decorative-elements {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        pointer-events: none;
        z-index: 0;
    }

    .dot-pattern {
        position: absolute;
        top: 10%;
        right: 10%;
        width: 200px;
        height: 200px;
        background: radial-gradient(circle at 2px 2px, rgba(99, 102, 241, 0.3) 1px, transparent 0);
        background-size: 20px 20px;
        opacity: 0.5;
        animation: dotPulse 4s ease-in-out infinite;
    }

    .floating-shape {
        position: absolute;
        background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(139, 92, 246, 0.1));
        border-radius: 50%;
        animation: shapeFloat 15s ease-in-out infinite;
    }

    .shape-1 {
        width: 80px;
        height: 80px;
        top: 20%;
        left: 10%;
        animation-delay: 0s;
    }

    .shape-2 {
        width: 60px;
        height: 60px;
        bottom: 20%;
        right: 15%;
        animation-delay: 7s;
    }

    @keyframes dotPulse {
        0%, 100% { opacity: 0.3; transform: scale(1); }
        50% { opacity: 0.6; transform: scale(1.05); }
    }

    @keyframes shapeFloat {
        0%, 100% { transform: translateY(0px) rotate(0deg); }
        50% { transform: translateY(-20px) rotate(180deg); }
    }

    @media (max-width: 768px) {
        .hero-content {
            grid-template-columns: 1fr;
            gap: 40px;
            text-align: center;
        }
        
        .hero-title {
            font-size: 2.5rem;
        }
        
        .hero-image {
            height: 400px;
        }
        
        .floating-card {
            position: relative;
            margin: 20px 0;
        }
        
        .security-card,
        .compliance-card,
        .encryption-card {
            position: relative;
            top: auto;
            bottom: auto;
            left: auto;
            right: auto;
        }
        
        .privacy-features {
            grid-template-columns: 1fr;
        }
        
        .cta-section {
            padding: 40px 20px;
        }
    }