:root {
    --primary-color: #667eea;
    --secondary-color: #764ba2;
    --text-main: #2d3748;
    --text-muted: #718096;
    --bg-light: #f7fafc;
    --white: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.8);
    --glass-border: rgba(255, 255, 255, 0.2);
}

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

body {
    font-family: 'Noto Sans KR', sans-serif;
    color: var(--text-main);
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    line-height: 1.8;
    min-height: 100vh;
    padding-top: 80px; /* Space for fixed header */
}

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

.privacy-header {
    text-align: center;
    margin-bottom: 50px;
    animation: fadeInDown 0.8s ease-out;
}

.privacy-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

.last-updated {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.privacy-content {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    animation: fadeInUp 0.8s ease-out;
}

.intro-card {
    background: rgba(102, 126, 234, 0.05);
    border-left: 4px solid var(--primary-color);
    padding: 20px;
    border-radius: 0 12px 12px 0;
    margin-bottom: 40px;
    font-size: 1.05rem;
    color: #4a5568;
}

.policy-item {
    margin-bottom: 40px;
}

.policy-item h2 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.policy-item p {
    margin-bottom: 15px;
    color: #4a5568;
}

.policy-item ul {
    list-style: none;
    padding-left: 0;
}

.policy-item li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: #4a5568;
}

.policy-item li::before {
    content: '•';
    position: absolute;
    left: 10px;
    color: var(--primary-color);
    font-weight: bold;
}

.contact-box {
    background: #f8fafc;
    border: 1px dashed #cbd5e0;
    padding: 20px;
    border-radius: 12px;
    margin-top: 20px;
}

.contact-box p {
    margin-bottom: 5px;
}

.contact-box a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.contact-box a:hover {
    text-decoration: underline;
}

.privacy-footer {
    text-align: center;
    padding: 40px 20px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-links {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary-color);
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Responsive */
@media (max-width: 768px) {
    .privacy-header h1 {
        font-size: 2rem;
    }
    
    .privacy-content {
        padding: 25px;
    }
    
    .policy-item h2 {
        font-size: 1.2rem;
    }
}
