    <style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            background-image: url('../Images/exptextb.jpg');
            background-attachment: fixed;
            background-color: #f5e6d3;
            color: #993200;
            font-family: 'Comic Sans MS', 'Chalkboard SE', cursive, sans-serif;
            line-height: 1.4;
            padding: 20px;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .description {
            background: rgba(255, 255, 255, 0.5);
            padding: 20px;
            border-radius: 20px;
            margin-bottom: 25px;
            font-size: 1.2rem;
            text-align: justify;
        }

        /* Заголовки */
        h1 {
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 20px;
            font-weight: bold;
        }

        /* Навигация по категориям */
        .category-nav {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 8px;
            margin: 25px 0 30px;
        }

        .category-nav a {
            color: #993200;
            font-size: 1.5rem;
            text-decoration: none;
            background: rgba(255, 255, 255, 0.5);
            padding: 4px 10px;
            border-radius: 20px;
            transition: all 0.3s;
            font-weight: bold;
        }

        .category-nav a:hover {
            background: #CC9900;
            color: white;
            text-decoration: none;
        }

        /* Заголовки разделов */
        .section-title {
            font-size: 1.6rem;
            text-align: center;
            margin: 40px 0 20px;
            padding-top: 20px;
            font-size: 1.8rem;
            border-top: 2px solid #cc8800;
        }

        /* Список рецептов */
	.recipe-desc {
	    font-size: 1.3rem; 
	    color: #000000; 
	    font-weight: normal;
	    flex: 1;
	    min-width: 150px;
	}

        .recipe-list {
            list-style: none;
            padding: 0;
        }

        .recipe-list li {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 15px;
            margin-bottom: 25px;
            padding: 10px;
            background: rgba(255, 255, 255, 0.4);
            border-radius: 12px;
            transition: background 0.3s;
        }

        .recipe-list li:hover {
            background: rgba(255, 255, 255, 0.7);
        }

        .recipe-list a {
            color: #993200;
            font-size: 1.3rem;
            text-decoration: none;
            font-weight: bold;
            flex: 2;
            min-width: 200px;
        }

        .recipe-list a:hover {
            text-decoration: underline;
            color: #cc4400;
        }

        /* Изображения */
        .recipe-img {
            width: 100px;
            height: auto;
            border-radius: 8px;
            cursor: pointer;
            transition: width 0.2s ease;
            box-shadow: 0 2px 6px rgba(0,0,0,0.2);
            flex-shrink: 0;
        }

        /* Кнопка "Наверх" */
        .fixedbut1 {
            position: fixed;
            bottom: 100px;
            right: 20px;
            display: none;
            background: #CC9900;
            color: #fff;
            text-decoration: none;
            padding: 8px 24px;
            font-size: 1.2rem;
            border-radius: 40px;
            font-family: inherit;
            cursor: pointer;
            border: none;
            z-index: 1000;
            transition: background 0.2s;
        }

        .fixedbut1:hover {
            background: #222;
        }

        /* Адаптивность */
        @media (max-width: 600px) {
            body {
                padding: 12px;
            }
            .recipe-list li {
                flex-direction: column;
                text-align: center;
            }
            .recipe-list a {
                font-size: 0.9rem;
            }
            h1 {
                font-size: 2rem;
            }

            .category-nav a {
                font-size: 0.7rem;
                padding: 3px 6px;
            }
        }
    </style>