.privacy-main {
    min-height: 100vh;
    padding: calc(var(--header-height) + 3rem) clamp(1rem, 4vw, 2rem) 3rem;
}

.privacy-container {
    max-width: 800px;
    margin: 0 auto;
}

.privacy-header {
    text-align: center;
    margin-bottom: 3rem;
}

.privacy-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    margin-bottom: 0.5rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.privacy-updated {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.privacy-content {
    background: var(--gray);
    border: 1px solid rgba(0, 240, 255, 0.1);
    border-radius: 20px;
    padding: clamp(1.5rem, 4vw, 2.5rem);
    margin-bottom: 2rem;
}

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

.privacy-section:last-child {
    margin-bottom: 0;
}

.privacy-intro {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

.privacy-heading {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(0, 240, 255, 0.2);
}

.privacy-text {
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.9;
}

.privacy-email {
    margin-top: 1rem;
}

.privacy-email a {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: rgba(0, 240, 255, 0.1);
    border: 1px solid var(--primary);
    border-radius: 30px;
    color: var(--primary);
    text-decoration: none;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.privacy-email a:hover {
    background: var(--primary);
    color: var(--dark);
}

.privacy-footer {
    text-align: center;
}

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

@media (max-width: 768px) {
    .privacy-main {
        padding-top: calc(var(--header-height) + 2rem);
    }
    
    .privacy-content {
        padding: 1.5rem;
    }
}
