/* Privacy Policy Specific Styles */

.privacy-policy {
    padding-top: 100px;
    min-height: 100vh;
    background: var(--darker-bg);
}

.policy-header {
    text-align: center;
    margin-bottom: 4rem;
    padding: 3rem 0;
    border-bottom: 2px solid rgba(99, 102, 241, 0.2);
}

.policy-header h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.last-updated {
    color: var(--gray-text);
    font-size: 1rem;
    font-style: italic;
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 0;
}

.policy-section {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--card-bg);
    border-radius: 15px;
    border: 1px solid rgba(99, 102, 241, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.policy-section:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.1);
}

.policy-section h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--light-text);
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.policy-section h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.policy-section p {
    color: var(--gray-text);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.policy-section ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.policy-section ul li {
    color: var(--gray-text);
    line-height: 1.8;
    margin-bottom: 0.8rem;
    position: relative;
}

.policy-section ul li::marker {
    color: var(--primary-color);
}

.policy-section strong {
    color: var(--light-text);
    font-weight: 600;
}

.contact-info {
    background: rgba(99, 102, 241, 0.05);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    margin-top: 1.5rem;
}

.contact-info p {
    margin-bottom: 0.8rem;
    font-size: 1.05rem;
}

.contact-info strong {
    color: var(--primary-color);
}

.region-specific {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
    border: 1px solid rgba(99, 102, 241, 0.2);
}

.policy-footer {
    text-align: center;
    margin: 4rem 0 2rem 0;
}

.back-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--gradient-1);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.back-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
}

.footer a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--accent-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .policy-header h1 {
        font-size: 2.5rem;
    }

    .policy-section {
        padding: 1.5rem;
    }

    .policy-section h2 {
        font-size: 1.6rem;
    }

    .policy-section h3 {
        font-size: 1.2rem;
    }

    .policy-content {
        padding: 1rem 0;
    }
}

@media (max-width: 480px) {
    .privacy-policy {
        padding-top: 80px;
    }

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

    .policy-section {
        padding: 1rem;
    }

    .policy-section h2 {
        font-size: 1.4rem;
    }

    .policy-section ul {
        padding-left: 1.5rem;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .footer,
    .back-button {
        display: none;
    }

    .policy-section {
        page-break-inside: avoid;
        border: 1px solid #ccc;
    }

    body {
        background: white;
        color: black;
    }

    .policy-section h2,
    .policy-section h3,
    .policy-section p,
    .policy-section ul li {
        color: black;
    }
}
