/* 
 * Privacy Policy Page Styles
 * 
 * Custom styles specific to the privacy policy page
 * These styles complement the design system and Tailwind CSS
 */

/* Page-specific animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.privacy-policy-page-main {
    animation: fadeInUp 0.8s ease-out;
}

/* Animation delays for staggered effects */
.animation-delay-2000 {
    animation-delay: 2s;
}

/* Grid pattern background */
.bg-grid-pattern {
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
}

/* Custom hover effects */
.privacy-policy-page-main a {
    transition: all 0.3s ease;
}

.privacy-policy-page-main a:hover {
    transform: translateY(-2px);
}

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

/* Dark mode adjustments */
@media (prefers-color-scheme: dark) {
    .privacy-policy-page-main {
        background-color: #1a1a1a;
        color: #ffffff;
    }
}
