    body {
        font-family: 'Arial', sans-serif;
        margin: 0;
        padding: 0;
        background-color: #f4f4f4;
    }

    header {
        background-color: #333;
        color: #e74c3c;
        text-align: center;
        padding: 1rem;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    header h1 {
        font-size: 2.5rem;
        margin: 0;
    }

    .product-container {
        display: flex;
        justify-content: space-between;
        margin: 50px auto;
        max-width: 1000px;
        background-color: white;
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .div img {
        width: 350px;
        height: auto;
        border-radius: 10px;
        border: 2px solid #ddd;
        transition: transform 0.3s ease-in-out;
    }

    .div img:hover {
        transform: scale(1.05);
    }

    .product-info {
        flex: 1;
        padding-left: 20px;
    }

    .div h4 {
        font-size: 1.5rem;
        margin-top: 1rem;
    }

    .div h5 {
        font-size: 1.2rem;
        color: #555;
    }

    .div span {
        font-size: 1rem;
        color: #777;
        margin-top: 10px;
    }

    .div p {
        font-size: 1.3rem;
        font-weight: bold;
        color: #e74c3c;
        margin-top: 15px;
    }

    .ingredients {
        background-color: #f7f7f7;
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        margin-top: 20px;
    }

    .ingredients h5 {
        font-size: 1.3rem;
        color: #333;
        cursor: pointer;
    }

    .ingredients ul {
        list-style: none;
        padding: 0;
        margin-top: 10px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.5s ease-out, opacity 0.5s ease-out;
        opacity: 0;
    }
    .ingredients ul.show {
        max-height: 500px;
        opacity: 1;
       }


    .ingredients ul li {
        font-size: 1rem;
        color: #555;
        margin: 5px 0;
    }

     footer {
      font-size: 1rem;
      background-color: #333;
      color: white;
      padding: 20px;
      text-align: center;
      margin-top: 60px;
    }

    .footer a {
      color: white;
      margin: 10px;
      text-decoration: none;
    }

    .footer a:hover {
      color: rgba(255, 255, 255, 0.689);
    }

    div a {
      text-decoration: none;
      color: rgba(255, 255, 255, 0.662);
    }

    div a:hover {
        color: rgba(255, 255, 255, 0.502);
    }

    @media (max-width: 768px) {
    .product-container {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin: 20px auto;
        padding: 20px;
        max-width: 90%;
        text-align: center;
    }

    .div {
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .div img {
        width: 100%;
        max-width: 300px;
        height: auto;
    }

    .product-info {
        padding-left: 0;
        width: 100%;
    }

    .product-info h4,
    .product-info h5,
    .product-info span,
    .product-info p {
        text-align: center;
        margin: 10px 0;
    }

    .ingredients {
        width: 90%;
        text-align: center;
        margin-top: 20px;
        padding: 20px;
    }

    .ingredients ul {
        padding-left: 0;
    }
}