.privacy-container {
    min-height: 100vh;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6));
    position: relative;
    padding: 2rem 0;
}

.privacy-content {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 3rem;
    margin: 2rem auto;
    max-width: 800px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

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

.privacy-title {
    font-family: "Noto Sans Mono", monospace;
    font-size: 2.5rem;
    color: white;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    margin-bottom: 0.5rem;
}

.privacy-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    font-family: "Noto Sans Mono", monospace;
}

.privacy-section {
    margin-bottom: 2rem;
    color: white;
    font-family: "Noto Sans Mono", monospace;
}

.privacy-section h2 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 0.5rem;
}

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

.highlight {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.2rem 0.5rem;
    border-radius: 5px;
    font-weight: bold;
}

.contact-section {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-family: "Noto Sans Mono", monospace;
}

.contact-section h2 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.contact-section p {
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.back-btn {
    position: fixed;
    top: 2rem;
    left: 2rem;
    z-index: 1000;
}

.icon-section {
    text-align: center;
    margin: 2rem 0;
}

.icon-section i {
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 1rem;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
    .privacy-content {
        margin: 1rem;
        padding: 2rem;
    }

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

    .back-btn {
        top: 1rem;
        left: 1rem;
    }
}