        * {
            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: 'Times New Roman', serif;
            line-height: 1.5;
            padding: 20px;
        }

        .container {
            max-width: 950px;
            margin: 0 auto;
        }

        h1 {
            font-size: 2.2rem;
            text-align: center;
            margin-bottom: 25px;
            font-weight: bold;
            color: #993200;
        }

        .main-image {
            text-align: center;
            margin-bottom: 25px;
        }
        .main-image img {
            max-width: 100%;
            height: auto;
            border-radius: 20px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
        }

        .description {
            background: rgba(255, 255, 255, 0.5);
            padding: 20px;
            border-radius: 20px;
            margin-bottom: 25px;
            font-size: 1.2rem;
            text-align: justify;
        }

        .recipe-block {
            background: rgba(255, 255, 255, 0.4);
            border-radius: 20px;
            padding: 20px;
            margin-bottom: 25px;
            font-size: 1.2rem;
        }

        .ingredients-title, .steps-title {
            font-size: 1.5rem;
            margin-bottom: 15px;
            padding-bottom: 8px;
            border-bottom: 2px solid #cc8800;
        }

        .ingredients-list {
            list-style: disc;
            padding-left: 40px;
            margin: 0;
        }
        .ingredients-list li {
            padding: 6px 0;
            font-size: 1.2rem;
            border-bottom: 1px dashed rgba(153, 50, 0, 0.2);
        }
        .ingredients-list li:last-child {
            border-bottom: none;
        }

	.ingredients-subtitle {
	    font-size: 1.2rem;
	    margin-top: 15px;
	    margin-bottom: 10px;
	    font-weight: bold;   /* жирный */
	    font-style: italic;  /* курсив */
	    color: #993200;
	}

        .step {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-bottom: 30px;
            align-items: flex-start;
        }
        .step-text {
            flex: 2;
            min-width: 200px;
            font-size: 1.2rem;
            text-align: justify;
        }
        .step-image {
            flex: 1;
            min-width: 120px;
            text-align: center;
        }
        .step-image img {
            width: 100%;
            max-width: 260px;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }

        .source {
            text-align: right;
            margin-top: 30px;
            padding-top: 15px;
            border-top: 1px solid #cc8800;
            font-size: 1.2rem;
        }
        .source a {
            color: #993200;
            text-decoration: none;
        }
        .source a:hover {
            text-decoration: underline;
        }

        /* Дополнительный стиль для двух фото в ряд */
        .main-image.double {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }
        .main-image.double img {
            max-width: calc(50% - 10px);
            height: auto;
            border-radius: 20px;
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
        }
        @media (max-width: 700px) {
            .main-image.double img {
                max-width: 100%;
            }
        }

        .fixedbut1 {
            position: fixed;
            bottom: 100px;
            right: 20px;
            display: none;
            background: #CC9900;
            color: #fff;
            text-decoration: none;
            padding: 8px 24px;
            font-size: 1.1rem;
            border-radius: 40px;
            font-family: inherit;
            cursor: pointer;
            border: none;
            z-index: 1000;
            transition: background 0.2s;
        }
        .fixedbut1:hover {
            background: #222;
        }

        @media (max-width: 700px) {
            body {
                padding: 12px;
            }
            h1 {
                font-size: 1.8rem;
            }
            .step {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }
            .step-text {
                text-align: center;
            }
            .ingredients-title, .steps-title {
                font-size: 1.3rem;
            }
            .ingredients-list {
                padding-left: 25px;
            }
        }