        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: Arial, sans-serif;
            line-height: 1.6;
        }

        header {
            background-color: #d35400;
            color: white;
            padding: 20px;
            text-align: center;
        }

        header img {
            width: 80px;
            height: 80px;
            margin-bottom: 10px;
        }

        header h1 {
            font-size: 2.5em;
            margin-bottom: 10px;
        }

        header p {
            font-size: 1.2em;
        }

        nav {
            background-color: #e67e22;
            padding: 15px;
        }

        nav ul {
            list-style: none;
            display: flex;
            justify-content: center;
            gap: 30px;
        }

        nav ul li a {
            color: white;
            text-decoration: none;
            font-size: 1.1em;
            padding: 8px 15px;
        }

        nav ul li a:hover {
            background-color: #d35400;
            border-radius: 5px;
        }

        main {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }

        #menu {
            margin: 40px 0;
        }

        .menu-destacado h2 {
            text-align: center;
            color: #d35400;
            font-size: 2em;
            margin-bottom: 30px;
        }

        .platos-container {
            display: flex;
            flex-wrap: wrap;
            gap: 25px;
            justify-content: center;
        }

        .plato {
            background-color: #f4f4f4;
            border: 2px solid #e67e22;
            border-radius: 8px;
            padding: 15px;
            width: 280px;
            text-align: center;
        }

        .plato img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 5px;
        }

        .plato h3 {
            color: #d35400;
            margin-top: 15px;
            margin-bottom: 10px;
        }

        .plato p {
            color: #555;
            font-size: 0.95em;
        }

        #nosotros {
            background-color: #fff3e6;
            padding: 40px;
            margin: 40px 0;
            border-radius: 8px;
        }

        .sobre-nosotros h2 {
            color: #d35400;
            font-size: 2em;
            margin-bottom: 20px;
            text-align: center;
        }

        .sobre-nosotros p {
            color: #333;
            font-size: 1.1em;
            text-align: justify;
            max-width: 900px;
            margin: 0 auto;
        }

        footer {
            background-color: #2c3e50;
            color: white;
            padding: 30px 20px;
            text-align: center;
        }

        footer h3 {
            margin-bottom: 15px;
        }

        .footer-info {
            margin: 10px 0;
        }

        .footer-info p {
            margin: 5px 0;
        }

        .redes-sociales {
            margin-top: 20px;
        }

        .redes-sociales a {
            color: white;
            margin: 0 10px;
            text-decoration: none;
            font-size: 1.1em;
        }

        .redes-sociales a:hover {
            color: #e67e22;
        }
        @media (max-width: 768px) {
            nav ul {
                flex-direction: column;
                gap: 10px;
            }

            .platos-container {
                flex-direction: column;
                align-items: center;
            }

            header h1 {
                font-size: 2em;
            }
        }