/* Gizlilik Politikası Sayfası - Özel Stiller */

/* Hero Section Animation */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.animate-float {
    animation: float 4s ease-in-out infinite;
}

/* Policy Sections */
.policy-section {
    transition: all 0.3s ease;
}

.policy-section:hover {
    transform: translateX(5px);
}

/* Responsive */
@media (max-width: 768px) {
    .policy-section:hover {
        transform: none;
    }
}
