/* Smooth transitions */
* {
    transition: color 0.2s ease, background-color 0.2s ease;
}

/* Hero gradient */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* Language switcher active state */
.lang-switcher.disable {
    background-color: rgba(255, 255, 255, 0.2) !important;
    border-color: gray !important;
    color: gray;
}

/* Card hover effect */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Footer links */
footer a:hover {
    text-decoration: underline !important;
}

.imgLogoR {
    height: 40px;
    margin-right: 1rem;
}