
        body {
            font-family: 'Plus Jakarta Sans', sans-serif;
            background-color: #faf9f6;
            color: #1e293b;
        }
        .breathing-shadow {
            position: relative;
        }
        .breathing-shadow::after {
            content: '';
            position: absolute;
            inset: -4px;
            border-radius: 0.5rem;
            box-shadow: 0 0 20px rgba(180, 83, 9, 0.15);
            z-index: -1;
            animation: breathe 4s ease-in-out infinite;
        }
        @keyframes breathe {
            0%, 100% { transform: scale(0.99); opacity: 0.5; box-shadow: 0 0 15px rgba(180, 83, 9, 0.1); }
            50% { transform: scale(1.01); opacity: 1; box-shadow: 0 0 30px rgba(180, 83, 9, 0.3); }
        }
    