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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #2c3e50 0%, #3b4371 50%, #4a5568 100%);
    min-height: 100vh;
    color: #333;
}

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

/* Header */
.privacy-header {
    background: rgba(30, 41, 59, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.privacy-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
}

.privacy-logo {
    font-size: 1.8rem;
    font-weight: bold;
    background: linear-gradient(45deg, #4fd1c7, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.privacy-nav-links a {
    text-decoration: none;
    color: #e2e8f0;
    font-weight: 500;
    transition: all 0.3s ease;
}

.privacy-nav-links a:hover {
    color: #4fd1c7;
}

.privacy-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #e2e8f0;
    font-size: 1.5rem;
    cursor: pointer;
}

.privacy-mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(30, 41, 59, 0.98);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem;
}

.privacy-mobile-menu.active {
    display: block;
}

.privacy-mobile-menu a {
    display: block;
    color: #e2e8f0;
    text-decoration: none;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Breadcrumb */
.privacy-breadcrumb {
    padding: 1rem 0;
    color: #e2e8f0;
    font-size: 0.9rem;
}

.privacy-breadcrumb a {
    color: #4fd1c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.privacy-breadcrumb a:hover {
    color: #2d8a7f;
}

.privacy-breadcrumb span {
    margin: 0 0.5rem;
    opacity: 0.5;
}

/* Main Content */
.privacy-main {
    background: rgba(30, 41, 59, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 3rem;
    margin: 2rem 0;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.privacy-header-section {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.privacy-page-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: white;
    margin-bottom: 1rem;
}

.privacy-page-subtitle {
    color: #cbd5e0;
    font-size: 1.1rem;
    line-height: 1.6;
}

.privacy-last-updated {
    background: rgba(45, 55, 72, 0.5);
    border-radius: 10px;
    padding: 1rem;
    margin-bottom: 2rem;
    border-left: 4px solid #4fd1c7;
}

.privacy-last-updated strong {
    color: #4fd1c7;
}

.privacy-last-updated span {
    color: #e2e8f0;
}

/* Table of Contents */
.privacy-toc {
    background: rgba(45, 55, 72, 0.3);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.privacy-toc-title {
    color: #4fd1c7;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.privacy-toc-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 0.5rem;
}

.privacy-toc-list a {
    color: #cbd5e0;
    text-decoration: none;
    padding: 0.5rem 0;
    border-radius: 5px;
    transition: all 0.3s ease;
    display: block;
}

.privacy-toc-list a:hover {
    color: #4fd1c7;
    background: rgba(79, 209, 199, 0.1);
    padding-left: 1rem;
}

/* Content Sections */
.privacy-content {
    color: #e2e8f0;
    line-height: 1.7;
}

.privacy-section {
    margin-bottom: 3rem;
    scroll-margin-top: 120px;
}

.privacy-section-title {
    color: #4fd1c7;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(79, 209, 199, 0.3);
}

.privacy-section p {
    margin-bottom: 1rem;
    color: #cbd5e0;
}

.privacy-section ul,
.privacy-section ol {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.privacy-section li {
    margin-bottom: 0.5rem;
    color: #cbd5e0;
}

.privacy-section strong {
    color: #e2e8f0;
}

.privacy-highlight {
    background: rgba(79, 209, 199, 0.1);
    border-left: 4px solid #4fd1c7;
    padding: 1rem;
    margin: 1rem 0;
    border-radius: 0 8px 8px 0;
}

.privacy-important {
    background: rgba(231, 76, 60, 0.1);
    border-left: 4px solid #e74c3c;
    padding: 1rem;
    margin: 1rem 0;
    border-radius: 0 8px 8px 0;
}

/* Contact Info */
.privacy-contact {
    background: rgba(45, 55, 72, 0.5);
    border-radius: 15px;
    padding: 2rem;
    margin-top: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.privacy-contact-title {
    color: #4fd1c7;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.privacy-contact p {
    color: #cbd5e0;
    margin-bottom: 0.5rem;
}

.privacy-contact a {
    color: #4fd1c7;
    text-decoration: none;
    font-weight: 600;
}

.privacy-contact a:hover {
    color: #06b6d4;
}

/* Back to Top Button */
.privacy-back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: linear-gradient(45deg, #2d8a7f, #0891b2);
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    cursor: pointer;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(45, 138, 127, 0.4);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
}

.privacy-back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.privacy-back-to-top:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(45, 138, 127, 0.6);
}

/* Responsive Design */
@media (max-width: 768px) {
    .privacy-nav-links {
        display: none;
    }

    .privacy-menu-toggle {
        display: block;
    }

    .privacy-main {
        padding: 2rem;
        margin: 1rem 0;
    }

    .privacy-page-title {
        font-size: 2rem;
    }

    .privacy-toc-list {
        grid-template-columns: 1fr;
    }

    .privacy-section ul,
    .privacy-section ol {
        margin-left: 1rem;
    }

    .privacy-back-to-top {
        bottom: 1rem;
        right: 1rem;
    }
}

@media (max-width: 480px) {
    .privacy-container {
        padding: 0 10px;
    }

    .privacy-main {
        padding: 1.5rem;
    }

    .privacy-page-title {
        font-size: 1.8rem;
    }

    .privacy-section-title {
        font-size: 1.3rem;
    }
}