    /* Custom styles for Centro Hispano */

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

    /* Selection color */
    ::selection {
        background-color: #047857;
        color: #FDFCF8;
    }

    /* Custom scrollbar */
    ::-webkit-scrollbar {
        width: 8px;
    }

    ::-webkit-scrollbar-track {
        background: #FDFCF8;
    }

    ::-webkit-scrollbar-thumb {
        background: #047857;
        border-radius: 4px;
    }

    ::-webkit-scrollbar-thumb:hover {
        background: #065f46;
    }

    /* Reduced motion preference */
    @media (prefers-reduced-motion: reduce) {
        *,
        *::before,
        *::after {
            animation-duration: 0.01ms !important;
            animation-iteration-count: 1 !important;
            transition-duration: 0.01ms !important;
            scroll-behavior: auto !important;
        }
    }

    /* Typography refinements */
    h1, h2, h3 {
        text-wrap: pretty;
    }

    /* Form focus styles */
    input:focus,
    select:focus,
    textarea:focus {
        outline: none;
    }

    /* Print styles */
    @media print {
        header, footer, #contact-form, .no-print {
            display: none !important;
        }

        body {
            background: white !important;
            color: black !important;
        }

        a {
            color: black !important;
            text-decoration: underline;
        }
    }

    /* Mobile menu transitions */
    #mobile-menu {
        transition: max-height 0.3s ease-in-out;
    }

    #mobile-menu.open {
        max-height: 400px;
    }

    /* Navbar scroll state */
    #navbar.scrolled {
        box-shadow: 0 1px 20px rgba(4, 120, 87, 0.08);
    }

    /* Service card hover lift */
    .group:hover {
        transform: translateY(-2px);
    }

    .group {
        transition: transform 0.5s ease;
    }

    /* Hero decorative animation */
    @media (prefers-reduced-motion: no-preference) {
        .hero-circle {
            animation: float 8s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% {
                transform: translate(0, 0);
            }
            50% {
                transform: translate(20px, -20px);
            }
        }
    }
