.cookie-banner {
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
}

.cookie-banner.show {
    transform: translateY(0);
}

.fade-in {
    animation: fadeIn 0.6s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.service-card:hover {
    transform: translateY(-4px);
    transition: transform 0.3s ease;
}

/* Image optimization */
img {
    image-rendering: auto;
    image-rendering: -webkit-optimize-contrast;
}

/* Focus styles */
input:focus, select:focus, textarea:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* Loading optimization */
.lazy-load {
    opacity: 0;
    transition: opacity 0.3s;
}

.lazy-load.loaded {
    opacity: 1;
}

/* Mobile optimizations */
@media (max-width: 768px) {
    .hero-text {
        font-size: 2rem;
        line-height: 1.2;
    }
}

/* Print styles */
@media print {
    .cookie-banner,
    nav,
    footer {
        display: none;
    }
}
