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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #000000;
    color: #ffffff;
    line-height: 1.8;
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: rgba(17, 17, 17, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #222;
    margin-bottom: 0px;
}

.brand {
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 2px;
    color: #10b981;
    text-decoration: none;
    transition: opacity 0.2s;
}

.brand:hover {
    opacity: 0.8;
}

.logout-btn-header {
    background: transparent;
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.4);
    padding: 10px 20px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    border-radius: 6px;
}

.logout-btn-header:hover {
    background: rgba(16, 185, 129, 0.1);
    border-color: #10b981;
    transform: translateY(-1px);
}

/* User Menu */
.user-menu {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-name {
    color: white;
    font-size: 14px;
    font-weight: 500;
}

/* Privacy Content */
.privacy-content {
    padding: 60px 20px 80px 20px;
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

/* Page Title */
.page-title {
    font-size: 44px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
    color: #fff;
    text-align: center;
}

.last-updated {
    font-size: 14px;
    color: #888;
    margin-bottom: 48px;
    font-style: italic;
    text-align: center;
}

/* Policy Sections */
.policy-section {
    margin-bottom: 48px;
}

.policy-section h2 {
    font-size: 26px;
    font-weight: 700;
    color: #10b981;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.policy-section h3 {
    font-size: 19px;
    font-weight: 600;
    color: #fff;
    margin-top: 24px;
    margin-bottom: 16px;
}

.policy-section p {
    font-size: 16px;
    color: #d4d4d4;
    margin-bottom: 16px;
    line-height: 1.8;
    font-weight: 400;
}

/* Lists */
.policy-list {
    list-style: none;
    padding-left: 0;
    margin: 24px 0;
}

.policy-list li {
    font-size: 16px;
    color: #d4d4d4;
    line-height: 1.8;
    padding-left: 32px;
    margin-bottom: 16px;
    position: relative;
    font-weight: 400;
}

.policy-list li::before {
    content: '→';
    position: absolute;
    left: 8px;
    color: #10b981;
    font-weight: 700;
}

.policy-list li strong {
    color: #10b981;
    font-weight: 600;
}

/* Contact Info */
.contact-info {
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 8px;
    padding: 24px;
    margin-top: 20px;
}

.contact-info p {
    margin-bottom: 8px;
    font-size: 15px;
    color: #d4d4d4;
}

.contact-info p:last-child {
    margin-bottom: 0;
}

.email-link {
    color: #10b981;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.email-link:hover {
    color: #059669;
    text-decoration: underline;
}

/* Footer */
.footer {
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(26, 26, 26, 0.5);
    padding: 60px 20px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
}

.footer-email {
    color: #888;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
}

.footer-email:hover {
    color: #10b981;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.footer-nav a {
    color: #666;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: all 0.2s;
}

.footer-nav a:hover {
    color: #888;
}

/* Responsive */
@media (max-width: 768px) {
    .header {
        flex-direction: column;
        gap: 12px;
        padding: 16px 16px;
    }
    
    .container {
        padding: 0 16px;
    }
    
    .privacy-content {
        padding: 40px 16px 60px 16px;
    }
    
    .page-title {
        font-size: 30px;
    }
    
    .policy-section h2 {
        font-size: 22px;
    }
    
    .policy-section h3 {
        font-size: 17px;
    }
    
    .policy-section p,
    .policy-list li {
        font-size: 15px;
    }
    
    .policy-list li {
        padding-left: 28px;
    }
    
    .contact-info {
        padding: 20px;
    }
    
    .footer {
        padding: 40px 16px;
    }
    
    .user-menu {
        flex-direction: column;
        gap: 8px;
        width: 100%;
    }
    
    .user-name {
        font-size: 13px;
    }
    
    .logout-btn-header {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .page-title {
        font-size: 26px;
    }
    
    .policy-section h2 {
        font-size: 20px;
    }
    
    .policy-section p,
    .policy-list li {
        font-size: 14px;
    }
}