body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            background-color: #f8f8f8;
        }
        header {
            background-color: #ff5a00;
            color: white;
            padding: 10px 20px;
            text-align: center;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        header img {
            height: 50px;
            margin-right: 15px;
        }
        .container {
            padding: 20px;
        }
        .dish-card {
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
            margin-bottom: 20px;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        .image-slider {
            position: relative;
            width: 100%;
        }
        .image-slider img {
            width: 100%;
            height: auto;
            display: none;
        }
        .image-slider img.active {
            display: block;
        }
        .slider-controls {
            position: absolute;
            top: 50%;
            width: 100%;
            display: flex;
            justify-content: space-between;
            transform: translateY(-50%);
        }
        .slider-controls button {
            background: rgba(0, 0, 0, 0.5);
            color: white;
            border: none;
            padding: 10px;
            cursor: pointer;
        }
        .dish-info {
            padding: 15px;
            text-align: center;
        }
        .dish-info h2 {
            margin: 0 0 10px;
        }
        .dish-info p {
            margin: 0 0 10px;
            color: #666;
        }
        .stars {
            display: flex;
            justify-content: center;
            margin-bottom: 10px;
        }
        .stars span {
            color: gold;
            font-size: 20px;
            margin-right: 5px;
        }
        .comments {
            padding: 10px 15px;
            background-color: #f1f1f1;
            width: 100%;
        }
        .comment {
            margin-bottom: 10px;
        }
        .comment p {
            margin: 5px 0;
        }
        @media (min-width: 600px) {
            .dish-card {
                flex-direction: row;
            }
            .image-slider {
                width: 50%;
            }
            .dish-info, .comments {
                width: 50%;
            }
        }
