/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #1D1D1F;
    background-color: #FFFFFF;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid #E5E5E5;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.navbar {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo h1 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1D1D1F;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 1rem;
}

.nav-links a {
    color: #1D1D1F;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s ease;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.nav-links a:hover {
    color: #007AFF;
}

.cta-button {
    background: #007AFF;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.cta-button:hover {
    background: #0056CC;
    color: white;
}

/* Content Section */
.privacy-section,
.terms-section {
    padding: 6rem 1.5rem 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.privacy-content,
.terms-content {
    background: white;
}

.privacy-content h1,
.terms-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.last-updated {
    color: #86868B;
    font-size: 0.875rem;
    margin-bottom: 2rem;
}

.privacy-content h2,
.terms-content h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.privacy-content h3,
.terms-content h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.privacy-content p,
.terms-content p {
    margin-bottom: 1rem;
    color: #424245;
}

.privacy-content ul,
.terms-content ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.privacy-content li,
.terms-content li {
    margin-bottom: 0.5rem;
    color: #424245;
}

.privacy-content strong,
.terms-content strong {
    font-weight: 600;
}

.privacy-content a,
.terms-content a {
    color: #007AFF;
    text-decoration: none;
}

.privacy-content a:hover,
.terms-content a:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    background: #F5F5F7;
    padding: 3rem 1.5rem 1.5rem;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    margin-bottom: 2rem;
    text-align: center;
}

.footer-logo h2 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1D1D1F;
}

.footer-logo p {
    color: #86868B;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 1.5rem;
    border-top: 1px solid #E5E5E5;
    text-align: center;
    color: #86868B;
    font-size: 0.875rem;
}

/* Responsive */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 1rem;
    }

    .privacy-content h1,
    .terms-content h1 {
        font-size: 2rem;
    }

    .privacy-content h2,
    .terms-content h2 {
        font-size: 1.25rem;
    }

    .privacy-section,
    .terms-section {
        padding: 5rem 1rem 2rem;
    }
}
