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

:root {
    --mint: #B8F2E6;
    --sky: #AED9E0;
    --lavender: #D4C5F9;
    --peach: #FFA686;
    --pink: #FFD3E1;
    --yellow: #FFECB3;
    --light-blue: #E3F2FD;
    --dark: #1a1a1a;
    --gray: #6b7280;
    --white: #ffffff;
    --gradient-1: linear-gradient(135deg, #B8F2E6 0%, #AED9E0 100%);
    --gradient-2: linear-gradient(135deg, #D4C5F9 0%, #FFD3E1 100%);
    --gradient-3: linear-gradient(135deg, #FFA686 0%, #FFECB3 100%);
    --gradient-4: linear-gradient(135deg, #E3F2FD 0%, #F3E5F5 100%);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: #fafafa;
}

html {
    scroll-behavior: smooth;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s ease;
    animation: slideDown 0.8s ease-out;
}

nav.scrolled {
    padding: 15px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 2rem;
    font-weight: 300;
    letter-spacing: -1px;
    color: var(--dark);
    transition: transform 0.3s ease;
    text-decoration: none;
}

.logo:hover {
    transform: scale(1.05);
}

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
    align-items: center;
}

nav a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-1);
    transition: width 0.3s ease;
}

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

.nav-cta {
    background: var(--gradient-1);
    color: white !important;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(174, 217, 224, 0.3);
}

.nav-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(174, 217, 224, 0.4);
}

.nav-cta::after {
    display: none;
}

/* Hero Section */
.hero {
    padding: 140px 20px 80px;
    min-height: 60vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafb 100%);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.animated-gradient {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.2;
    animation: morphing 8s ease-in-out infinite;
}

.gradient-1 {
    background: var(--gradient-1);
    top: -150px;
    right: -150px;
    animation-delay: 0s;
}

.gradient-2 {
    background: var(--gradient-2);
    bottom: -150px;
    left: -150px;
    animation-delay: 2s;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #1a1a1a 0%, #4a5568 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeInUp 1s ease-out;
}

.hero-content p {
    font-size: 1.3rem;
    color: var(--gray);
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease-out 0.3s backwards;
}

.last-updated {
    color: var(--sky);
    font-weight: 600;
    font-size: 1.1rem;
    animation: fadeInUp 1s ease-out 0.6s backwards;
}

/* Privacy Content */
.privacy-content {
    padding: 80px 20px;
    background: white;
    position: relative;
}

.content-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.privacy-section {
    margin-bottom: 60px;
    padding: 40px;
    border-radius: 30px;
    background: white;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    transform: translateY(30px);
    opacity: 0;
    animation: sectionReveal 0.8s ease-out forwards;
}

.privacy-section:nth-child(1) { animation-delay: 0.1s; }
.privacy-section:nth-child(2) { animation-delay: 0.2s; }
.privacy-section:nth-child(3) { animation-delay: 0.3s; }
.privacy-section:nth-child(4) { animation-delay: 0.4s; }
.privacy-section:nth-child(5) { animation-delay: 0.5s; }
.privacy-section:nth-child(6) { animation-delay: 0.6s; }

.privacy-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-1);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.privacy-section:hover::before {
    transform: scaleX(1);
}

.privacy-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
}

.privacy-section h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--dark);
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
}

.section-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.privacy-section:hover .section-icon {
    transform: rotateZ(10deg) scale(1.1);
}

.privacy-section p {
    color: var(--gray);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.privacy-section ul {
    list-style: none;
    padding-left: 0;
}

.privacy-section li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    color: var(--gray);
    font-size: 1.1rem;
    line-height: 1.6;
}

        .privacy-section li::before {
            content: '✨';
            position: absolute;
            left: 0;
            top: 0;
            color: var(--sky);
            font-size: 1rem;
        }

        .contact-section {
            background: var(--gradient-4);
            border: 2px solid rgba(174, 217, 224, 0.3);
        }

        .contact-section h2 {
            color: var(--dark);
        }

        .contact-email {
            background: white;
            padding: 15px 25px;
            border-radius: 15px;
            display: inline-block;
            color: var(--dark);
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .contact-email:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
            background: var(--mint);
            color: white;
        }

/* Floating decorative elements */
.floating-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 120px;
    height: 120px;
    background: var(--gradient-2);
    top: 20%;
    right: 5%;
    animation-delay: 0s;
}

.shape-2 {
    width: 80px;
    height: 80px;
    background: var(--gradient-3);
    bottom: 30%;
    left: 5%;
    animation-delay: 2s;
}

/* Footer */
footer {
    background: #1a1a1a;
    color: white;
    padding: 50px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-1);
    animation: lineFlow 3s ease-in-out infinite;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.footer-links a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease;
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-1);
    transition: width 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    transform: translateY(-3px);
}

.footer-links a:hover::after {
    width: 100%;
}

.copyright {
    opacity: 0.6;
    margin-top: 20px;
}

/* Animations */
@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

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

@keyframes sectionReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes morphing {
    0%, 100% {
        transform: scale(1) rotate(0deg);
    }
    33% {
        transform: scale(1.2) rotate(120deg);
    }
    66% {
        transform: scale(0.8) rotate(240deg);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    33% {
        transform: translateY(-20px) rotate(-5deg);
    }
    66% {
        transform: translateY(15px) rotate(5deg);
    }
}

@keyframes lineFlow {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    nav ul {
        display: none;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .privacy-section {
        padding: 30px 20px;
        margin-bottom: 30px;
    }

    .section-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .privacy-section h2 {
        font-size: 1.5rem;
    }
} 