/* Menggunakan font Poppins sebagai default */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #f0f4f8; /* Latar belakang abu-abu muda yang lembut */
}
/* Custom gradient untuk hero section */
.hero-gradient {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.95), rgba(21, 94, 117, 0.95));
}
/* Efek bayangan yang lebih lembut */
.custom-shadow-lg {
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.07), 0 4px 6px -4px rgb(0 0 0 / 0.07);
}
/* Style untuk language switcher */
.lang-switcher a {
    transition: all 0.3s ease-in-out;
}
.lang-switcher a:not(.lang-active) {
    opacity: 0.6;
}
.lang-switcher a.lang-active {
    transform: scale(1.2);
    opacity: 1;
    box-shadow: 0 0 12px rgba(49, 130, 206, 0.5);
}