/* FAMSA GA — Custom styles */
/* Most styles are inline in layout for now. This file is a placeholder for future overrides. */

html, body { scroll-behavior: smooth; }
section { scroll-margin-top: 80px; }

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

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