    /* Custom Styles to supplement Tailwind */
    
    body {
        background-color: #fefdf8;
    }

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

    /* Animations */
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translate3d(0, 40px, 0);
        }
        to {
            opacity: 1;
            transform: translate3d(0, 0, 0);
        }
    }

    .animate-fade-in-up {
        animation: fadeInUp 0.8s ease-out forwards;
        opacity: 0;
    }

    .delay-100 { animation-delay: 0.1s; }
    .delay-200 { animation-delay: 0.2s; }
    .delay-300 { animation-delay: 0.3s; }

    /* Scrollbar Styling */
    ::-webkit-scrollbar {
        width: 8px;
    }
    ::-webkit-scrollbar-track {
        background: #f5f2eb;
    }
    ::-webkit-scrollbar-thumb {
        background: #064e3b;
        border-radius: 4px;
    }
    ::-webkit-scrollbar-thumb:hover {
        background: #047857;
    }

    /* Utility for thin lines */
    .line-thin {
        border-bottom: 1px solid rgba(6, 78, 59, 0.1);
    }
