        /* Modern, clean, and inspiring design with vibrant hover effects */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Poppins', sans-serif;
            background-color: #f7fafc;
            color: #2d3748;
            line-height: 1.7;
            overflow-x: hidden;
        }
        header {
            background: linear-gradient(135deg, #ffffff, #f1f5f9);
            padding: 1.5rem 2rem;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        nav ul {
            list-style: none;
            display: flex;
            justify-content: center;
            gap: 2rem;
        }
        nav ul li a {
            text-decoration: none;
            color: #2d3748;
            font-weight: 600;
            font-size: 1.1rem;
            padding: 0.5rem 1rem;
            border-radius: 8px;
            transition: all 0.3s ease;
            position: relative;
        }
        nav ul li a:hover {
            color: #ed8936; /* Vibrant orange for hover */
            background-color: #fefcbf;
            transform: translateY(-2px);
        }
        nav ul li a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 50%;
            background-color: #ed8936;
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        nav ul li a:hover::after {
            width: 70%;
        }
        main {
            max-width: 900px;
            margin: 3rem auto;
            padding: 0 1.5rem;
        }
        section {
            background: #ffffff;
            padding: 2rem;
            border-radius: 12px;
            margin-bottom: 2rem;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        section:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
        }
        h1, h2, h3 {
            color: #ed8936;
            margin-bottom: 1rem;
        }
        h1 {
            font-size: 2.5rem;
            text-align: center;
            font-weight: 600;
        }
        h2 {
            font-size: 1.8rem;
            text-align: center;
        }
        h3 {
            font-size: 1.4rem;
            font-weight: 600;
        }
        .recipe {
            margin-top: 1.5rem;
            padding: 1rem;
            border-left: 4px solid #ed8936;
            background: #fffaf0;
            border-radius: 8px;
            transition: background 0.3s ease;
        }
        .recipe:hover {
            background: #fefcbf;
        }
        ul.ingredients, ol.instructions {
            margin-left: 1.5rem;
            margin-bottom: 1rem;
        }
        ul.ingredients li, ol.instructions li {
            margin-bottom: 0.5rem;
            font-size: 1rem;
        }
        p, dl dt, dl dd {
            font-size: 1rem;
            color: #4a5568;
        }
        dl dt {
            font-weight: 600;
            margin-top: 1rem;
        }
        dl dd {
            margin-bottom: 1rem;
            margin-left: 1.5rem;
        }
        footer {
            background: linear-gradient(135deg, #ffffff, #f1f5f9);
            padding: 2rem;
            text-align: center;
            border-top: 1px solid #e2e8f0;
            font-size: 0.9rem;
            color: #4a5568;
            margin-top: 3rem;
        }
        footer a {
            color: #ed8936;
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s ease;
        }
        footer a:hover {
            color: #dd6b20;
        }
        @media (max-width: 768px) {
            nav ul {
                flex-direction: column;
                gap: 1rem;
                text-align: center;
            }
            h1 {
                font-size: 2rem;
            }
            h2 {
                font-size: 1.5rem;
            }
        }