/* Privacy Page Styles */
#privacy-page {
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: #121212;
    color: #ffffff;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    background-image: radial-gradient(circle, rgba(7,53,72,0.5) 1px, transparent 1px);
    background-size: 20px 20px;
    background-position: center;
}

/* Main Content Styles */
.privacy-content {
    flex: 1;
    padding-top: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

.privacy-container h1 {
    font-size: 3.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(to right, 
        #007ba7,
        #00a5cf,
        #56cfe1,
        #007ba7,
        #00a5cf,
        #56cfe1
    );
    background-size: 200% auto;
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    animation: gradient-flow 5s linear infinite alternate;
}

.privacy-section {
    margin-bottom: 2.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.privacy-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 123, 167, 0.2);
}

.privacy-section h2 {
    color: #00a7e6;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.privacy-section h3 {
    color: #007ba7;
    font-size: 1.4rem;
    margin: 1.5rem 0 1rem;
    font-weight: 500;
}

.privacy-section p {
    line-height: 1.6;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

.privacy-section ul {
    list-style-type: none;
    padding-left: 1.5rem;
    margin: 1rem 0;
}

.privacy-section li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
}

.privacy-section li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #00a7e6;
}

.privacy-section li ul {
    margin-top: 0.8rem;
    margin-bottom: 0;
}

/* Animations */
@keyframes gradient-flow {
    0% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}

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

/* Responsive Design */
@media (max-width: 1200px) {
    .privacy-container {
        margin: 20px 40px;
    }

    .privacy-container h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .privacy-content {
        padding-top: 60px;
    }

    .privacy-container {
        margin: 20px;
        padding: 15px;
    }

    .privacy-container h1 {
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }

    .privacy-section {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }

    .privacy-section h2 {
        font-size: 1.5rem;
    }

    .privacy-section h3 {
        font-size: 1.2rem;
    }

    .privacy-section p {
        font-size: 1rem;
    }

    .privacy-section li {
        font-size: 1rem;
    }
}

/* Print Styles */
@media print {
    #privacy-page {
        background: white;
        color: black;
    }

    .privacy-container {
        box-shadow: none;
        margin: 0;
        padding: 1rem;
    }

    .privacy-section {
        break-inside: avoid;
        border: none;
        background: none;
        transform: none !important;
        box-shadow: none !important;
    }

    .privacy-container h1,
    .privacy-section h2,
    .privacy-section h3 {
        color: black;
        -webkit-text-fill-color: black;
    }

    .privacy-section li::before {
        color: black;
    }
}

/* Desktop/Mobile Visibility Classes */
.desktop-only {
    display: inline-block;
}

.mobile-login,
.mobile-logout {
    display: none;
}

/* Hamburger Menu Styles */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    margin-left: 20px;
    z-index: 1000;
}

.hamburger-menu:focus {
    outline: none;
}

.hamburger-line {
    width: 30px;
    height: 3px;
    background: #f5f5f5;
    border-radius: 10px;
    transition: all 0.3s linear;
    position: relative;
    transform-origin: 1px;
}

/* Mobile Menu Styles */
.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: rgba(18, 18, 18, 0.98);
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transform: translateY(-100%);
    transition: transform 0.3s ease-in-out;
    z-index: 999;
}

.mobile-menu.show {
    transform: translateY(0);
}

.mobile-menu a {
    display: block;
    color: #f5f5f5;
    text-decoration: none;
    padding: 15px 0;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: color 0.3s ease;
}

.mobile-menu a:last-child {
    border-bottom: none;
}

.mobile-menu a:hover,
.mobile-menu a.active {
    color: #00a7e6;
}

.mobile-login,
.mobile-logout {
    width: 100%;
    padding: 15px 0;
    margin-top: 15px;
    background: #00a7e6;
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.mobile-login:hover,
.mobile-logout:hover {
    background: #005f80;
    transform: scale(1.05);
}

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

    .hamburger-menu {
        display: flex;
    }

    .mobile-menu {
        display: block;
    }

    .desktop-only {
        display: none !important;
    }

    .mobile-login,
    .mobile-logout {
        display: block;
    }

    .header-right {
        margin-left: auto;
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .privacy-content {
        padding-top: 60px;
    }

    .privacy-container {
        margin: 20px;
        padding: 15px;
    }

    .privacy-container h1 {
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }

    .privacy-section {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }

    .privacy-section h2 {
        font-size: 1.5rem;
    }

    .privacy-section h3 {
        font-size: 1.2rem;
    }

    .privacy-section p {
        font-size: 1rem;
    }

    .privacy-section li {
        font-size: 1rem;
    }
}