.privacy-page {
    background-color: #f8f9fa;
    min-height: 100vh;
}

.privacy-content {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 24px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.privacy-container {
    padding: 1rem;
}

.privacy-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #3B3EFF;
}

.privacy-header h1 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.privacy-icon {
    font-size: 3rem;
    margin: 1rem 0;
}

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

.privacy-section h2 {
    color: #3B3EFF;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.privacy-section p {
    color: white;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.privacy-card {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 0.8rem;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-left: 4px solid #3B3EFF;
}

.privacy-card.warning {
    border-left-color: #ffc107;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
}

.card-icon {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.right-card {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 0.8rem;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease;
}

.right-card:hover {
    transform: translateY(-5px);
}

.right-card h3 {
    color: #3B3EFF;
    margin: 1rem 0;
}

.privacy-tip {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 0.8rem;
    padding: 1.5rem;
    margin-top: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.tip-icon {
    font-size: 1.5rem;
}

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

    .privacy-header h1 {
        font-size: 2rem;
    }

    .rights-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .privacy-header h1 {
        font-size: 1.8rem;
    }

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