.privacy-container {
    max-width: 1200px;
    margin: 120px auto 50px;
    padding: 2rem;
}

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

.privacy-header h2 {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 1rem;
}

.privacy-header p {
    color: #888;
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.privacy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.privacy-card {
    background: rgba(0, 0, 0, 0.7);
    border-radius: 15px;
    padding: 2rem;
    border: 1px solid rgba(118, 0, 255, 0.2);
    transition: all 0.3s ease;
}

.privacy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(118, 0, 255, 0.2);
}

.privacy-title {
    color: #7600ff;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.privacy-text {
    color: #888;
    line-height: 1.6;
}

.privacy-text ul {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.privacy-text li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.privacy-text li::before {
    content: '•';
    color: #7600ff;
    position: absolute;
    left: 0;
}