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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    overflow-x: hidden;
    color: #1a1a1a;
    line-height: 1.6;
}

nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.logo {
    font-size: 32px;
    font-weight: 900;
    background: linear-gradient(135deg, #FF6B6B 0%, #FF3366 50%, #FF1744 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -1px;
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 600;
    font-size: 16px;
    transition: color 0.3s;
    cursor: pointer;
}

.nav-link:hover {
    color: #FF3366;
}

.btn-primary {
    background: linear-gradient(135deg, #FF6B6B 0%, #FF3366 100%);
    color: white;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(255, 51, 102, 0.3);
    display: inline-block;
    text-align: center;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(255, 51, 102, 0.4);
}

.privacy-page {
    padding: 120px 40px 60px;
    background: white;
    min-height: 100vh;
}

.privacy-container {
    max-width: 900px;
    margin: 0 auto;
}

.privacy-page h1 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.privacy-date {
    color: #666;
    margin-bottom: 40px;
    font-size: 16px;
}

.privacy-page h2 {
    font-size: 32px;
    font-weight: 700;
    margin-top: 48px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.privacy-page h3 {
    font-size: 24px;
    font-weight: 700;
    margin-top: 32px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.privacy-page p {
    line-height: 1.8;
    color: #444;
    margin-bottom: 16px;
    font-size: 16px;
}

.privacy-page ul {
    margin-left: 24px;
    margin-bottom: 16px;
}

.privacy-page li {
    line-height: 1.8;
    color: #444;
    margin-bottom: 8px;
}

.back-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #FF3366;
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 32px;
    transition: gap 0.3s;
}

.back-button:hover {
    gap: 12px;
}

footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 40px 30px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand {
    font-size: 32px;
    font-weight: 900;
    background: linear-gradient(135deg, #FF6B6B 0%, #FF3366 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 16px;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.footer-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
    cursor: pointer;
}

.footer-link:hover {
    color: #FF3366;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    nav {
        padding: 16px 20px;
        flex-wrap: wrap;
    }

    .nav-links {
        gap: 15px;
        flex-wrap: wrap;
    }

    .nav-link {
        font-size: 14px;
    }

    .btn-primary {
        padding: 12px 24px;
        font-size: 14px;
    }

    .privacy-page {
        padding: 100px 20px 40px;
    }

    .privacy-page h1 {
        font-size: 36px;
    }

    .privacy-page h2 {
        font-size: 28px;
    }

    .privacy-page h3 {
        font-size: 20px;
    }

    footer {
        padding: 40px 20px 20px;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 24px;
    }

    .nav-links {
        gap: 10px;
    }

    .nav-link {
        font-size: 12px;
    }

    .btn-primary {
        padding: 10px 20px;
        font-size: 12px;
    }

    .privacy-page h1 {
        font-size: 28px;
    }

    .privacy-page h2 {
        font-size: 24px;
    }
}
