    /* Custom styles for geometric shapes and animations */
    
    body {
        font-family: 'DM Sans', sans-serif;
        scroll-behavior: smooth;
    }

    h1, h2, h3, .font-display {
        font-family: 'Archivo Black', sans-serif;
    }

    /* Geometric blob animations */
    @keyframes float {
        0% { transform: translateY(0px); }
        50% { transform: translateY(-20px); }
        100% { transform: translateY(0px); }
    }

    .animate-float {
        animation: float 6s ease-in-out infinite;
    }

    /* Custom scrollbar for webkit */
    ::-webkit-scrollbar {
        width: 10px;
    }
    ::-webkit-scrollbar-track {
        background: #FFF5F5;
    }
    ::-webkit-scrollbar-thumb {
        background: #900C3F;
        border-radius: 5px;
    }
    ::-webkit-scrollbar-thumb:hover {
        background: #580829;
    }

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