    /* Custom Color Palette Configuration */
    @tailwind base;
    @tailwind components;
    @tailwind utilities;

    :root {
        --color-forest-green: #0F3D3E;
        --color-off-white: #F9F9F6;
        --color-emerald-light: #D1D5B3;
    }

    body {
        font-family: 'Inter', sans-serif;
        background-color: var(--color-off-white);
        color: var(--color-forest-green);
    }

    h1, h2, h3, h4, .font-serif {
        font-family: 'Cormorant Garamond', serif;
    }

    /* Animation Keyframes */
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(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; }

    /* Custom Scrollbar */
    ::-webkit-scrollbar {
        width: 8px;
    }
    ::-webkit-scrollbar-track {
        background: var(--color-off-white);
    }
    ::-webkit-scrollbar-thumb {
        background: #ccc;
        border-radius: 4px;
    }
    ::-webkit-scrollbar-thumb:hover {
        background: var(--color-forest-green);
    }
