.privacy-policy {
    padding: 120px 5% 60px;
    background: var(--primary-color);
    min-height: 100vh;
}

.policy-container {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.02);
    padding: 3rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.privacy-policy h1 {
    font-family: 'Head', sans-serif;
    font-size: 2.5rem;
    color: var(--text-color);
    margin-bottom: 1rem;
    text-align: center;
}

.last-updated {
    text-align: center;
    color: #a09f9f;
    margin-bottom: 3rem;
    font-size: 0.9rem;
}

.policy-section {
    margin-bottom: 2.5rem;
}

.policy-section h2 {
    font-family: 'Head', sans-serif;
    color: var(--text-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.policy-section p {
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.policy-section ul {
    list-style-type: none;
    padding-left: 1.5rem;
}

.policy-section ul li {
    color: var(--text-color);
    margin-bottom: 0.5rem;
    position: relative;
}

.policy-section ul li:before {
    content: "•";
    color: var(--accent-color);
    position: absolute;
    left: -1.5rem;
}

.contact-info {
    color: var(--accent-color);
    font-weight: 500;
}


@media (max-width: 768px) {
    .privacy-policy {
        padding: 100px 5% 40px;
    }

    .policy-container {
        padding: 2rem;
    }

    .privacy-policy h1 {
        font-size: 2rem;
    }

    .policy-section h2 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .policy-container {
        padding: 1.5rem;
    }

    .privacy-policy h1 {
        font-size: 1.8rem;
    }

    .policy-section h2 {
        font-size: 1.2rem;
    }
} 
