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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #faf8f3;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* Canvas Background */
#backgroundCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.7;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: #faf8f3;
    z-index: 1000;
    padding: 20px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

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

a.logo {
    font-size: 20px;
    font-weight: 600;
    color: #000;
    text-decoration: none;
}

.logo-highlight {
    color: #0066ff;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-link:hover {
    color: #0066ff;
}

/* Privacy Content */
.privacy-content {
    padding: 120px 40px 80px;
}

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

h1 {
    font-size: clamp(36px, 5vw, 48px);
    font-weight: 400;
    color: #000;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.effective-date, .company {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.company {
    margin-bottom: 30px;
}

h2 {
    font-size: 24px;
    font-weight: 500;
    color: #000;
    margin-top: 40px;
    margin-bottom: 20px;
}

p {
    font-size: 16px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 20px;
}

ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

li {
    font-size: 16px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 10px;
}

strong {
    font-weight: 600;
    color: #000;
}

/* Responsive */
@media (max-width: 768px) {
    .privacy-content {
        padding: 100px 20px 60px;
    }
    
    h1 {
        font-size: 32px;
    }
    
    h2 {
        font-size: 20px;
    }
}