        * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        font-family: Verdana, sans-serif;
    }

    /* General Styles */
    section {
        margin-top: 50px;
    }

    .about {
        margin-top: 150px;
        text-align: center;
    }

    .about h1 {
        font-size: 30px;
        margin-top: 30px;
    }

    .about p {
        width: 85%;
        margin-top: 10px;
        font-size: 18px;
        margin: auto;
    }

    /* Vision Section */
    .vision {
        display: flex;
        gap: 20px;
        padding-right: 4%;
        align-items: center;
        justify-content: space-between;
        margin-top: 100px;
    }

    .vision img {
        width: 500px;
        height: 300px;
        margin-left: 70px;
    }

    .vision .content1 {
        width: 600px;
        text-align: justify;
    }

    .vision .content1 h2 {
        font-size: 35px;
        font-weight: bold;
        text-align: center;
    }

    .vision .content1 p {
        font-size: 20px;
        margin-top: 10px;
    }

    /* Mission Section */
    .mission {
        display: flex;
        gap: 20px;
        padding-left: 4%;
        align-items: center;
        justify-content: space-between;
        margin-top: 50px;
    }

    .mission img {
        width: 500px;
        height: 300px;
        padding-right: 4%;
        margin-left: 50px;
    }

    .mission .content2 {
        width: 600px;
        text-align: justify;
    }

    .mission .content2 h2 {
        font-size: 35px;
        font-weight: bold;
        text-align: center;
    }

    .mission .content2 p {
        font-size: 20px;
        margin-top: 10px;
    }

    /* Scoops Section */
    .scoops {
        display: flex;
        gap: 20px;
        padding-right: 4%;
        align-items: center;
        justify-content: space-between;
    }

    .scoops img {
        width: 500px;
        height: 400px;
        margin-left: 100px;
    }

    .scoops .content3 {
        width: 600px;
        text-align: justify;
        margin-top: 70px;
    }

    .scoops .content3 h2 {
        font-size: 35px;
        font-weight: bold;
        text-align: center;
    }

    .scoops .content3 p {
        font-size: 20px;
        margin-top: 10px;
    }

    /* Shakes Section */
    .shakes {
        display: flex;
        gap: 20px;
        padding-left: 4%;
        align-items: center;
        justify-content: space-between;
        margin-top: 50px;
    }

    .shakes img {
        width: 600px;
        height: 400px;
    }

    .shakes .content4 {
        width: 600px;
        text-align: justify;
        margin-top: 50px;
    }

    .shakes .content4 h2 {
        font-size: 35px;
        font-weight: bold;
        text-align: center;
    }

    .shakes .content4 p {
        font-size: 20px;
        margin-top: 10px;
    }

    /* Tubs Section */
    .tubs {
        display: flex;
        gap: 20px;
        padding-right: 4%;
        align-items: center;
        justify-content: space-between;
        margin-top: 50px;
    }

    .tubs img {
        width: 500px;
        height: 200px;
        margin-left: 90px;
    }

    .tubs .content5 {
        width: 600px;
        text-align: justify;
        margin-top: 70px;
    }

    .tubs .content5 h2 {
        font-size: 35px;
        font-weight: bold;
        text-align: center;
    }

    .tubs .content5 p {
        font-size: 20px;
        margin-top: 10px;
    }

    /* Responsive Styles */
    @media (max-width: 1024px) {

        /* For tablets */
        .vision,
        .mission,
        .scoops,
        .shakes,
        .tubs {
            flex-direction: column;
            align-items: center;
        }

        .vision img,
        .mission img,
        .scoops img,
        .shakes img,
        .tubs img {
            width: 100%;
            height: auto;
            margin-left: 0;
        }

        .vision .content1,
        .mission .content2,
        .scoops .content3,
        .shakes .content4,
        .tubs .content5 {
            width: 100%;
            margin-left: 0;
            text-align: center;
        }

        .about p {
            width: 90%;
        }
    }

    @media (max-width: 768px) {

        /* For smaller devices like phones */
        .vision img,
        .mission img,
        .scoops img,
        .shakes img,
        .tubs img {
            width: 100%;
            height: auto;
            margin: 0;
        }

        .vision .content1,
        .mission .content2,
        .scoops .content3,
        .shakes .content4,
        .tubs .content5 {
            width: 100%;
            margin-left: 0;
            text-align: center;
            font-size: 16px;
        }

        .about p {
            width: 100%;
        }

        .about h1 {
            font-size: 24px;
        }

        .vision .content1 h2,
        .mission .content2 h2,
        .scoops .content3 h2,
        .shakes .content4 h2,
        .tubs .content5 h2 {
            font-size: 30px;
        }

        .vision .content1 p,
        .mission .content2 p,
        .scoops .content3 p,
        .shakes .content4 p,
        .tubs .content5 p {
            font-size: 16px;
        }
    }

    @media (max-width: 480px) {

        /* For very small devices */
        .vision .content1 h2,
        .mission .content2 h2,
        .scoops .content3 h2,
        .shakes .content4 h2,
        .tubs .content5 h2 {
            font-size: 24px;
        }

        .vision .content1 p,
        .mission .content2 p,
        .scoops .content3 p,
        .shakes .content4 p,
        .tubs .content5 p {
            font-size: 14px;
        }
    }

    header {
        position: fixed;
        top: 0;
        left: 0;
        color: black;
        width: 100%;
        background-color: none;
    }

    #toogleBtn {
        font-size: 24px;
        display: none;
        cursor: pointer;
    }

    @media (max-width: 576px) {
        #toogleBtn {
            display: initial;
        }

        #menu {
            top: 50px;
            left: -100%;
            transition: 400ms;
            position: fixed;
            flex-direction: column;
            color: white;
            width: 70%;
            height: 100vh;
            background-color: rgba(0, 0, 0, 0.7);
            padding: 20px;
            z-index: 1000;
        }

        #menu.open-menu {
            left: 0;
        }

        #menu li {
            margin: 10px 0;
        }
    }

    #overlay {
        width: 100%;
        height: 100%;
        position: fixed;
        opacity: 0;
        transition: 400ms;
        visibility: hidden;
        background: rgba(0, 0, 0, 0.7);
        z-index: 99;
    }

    .show-overlay {
        opacity: 1 !important;
        visibility: visible;
    }

    nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        max-width: 95%;
        margin: auto;
        /* background: transparent; */
        color: black;
        height: 100px;
    }

    nav .logo img {
        width: 40%;
    }

    #menu {
        font-size: 16px;
        list-style: none;
        display: flex;
        gap: 20px;
        align-items: center;
        font-family: Arial;
    }


    .search-box {
        width: 200px;
        height: 25px;
        margin: 0 20px 0 40px;
        border-radius: 2px;
        display: flex;
        align-items: center;
        /* background-color: #181715; */
        gap: 2px;
        padding-right: 75px;
        margin-left: 90px;
        border: 1px solid #181715;
    }
    
    input::placeholder {
        color: black;
        /* Tomato red color */
        opacity: 1;
        /* Ensure the placeholder text is fully visible */
    }
    
    #search-icon {
        border: none;
        height: 20px;
        color: black;
        width: 19px;
        display: block;
    }
    
    .search-box input {
        color: black;
        /* background-color: transparent; */
        
        border: none;
        /* Removes the border from the input field */
        outline: none;
        /* Removes the outline when focused */
        flex: 1;
        /* Allows input to take available space */
    }
    .dropbtn {
        background-color: transparent;
        color: white;
        /* padding: 16px; */
        font-size: 16px;
        border: none;
    }

    .dropdown {
        position: relative;
        display: inline-block;
    }

    .dropdown-content {
        display: none;
        position: absolute;
        background-color: #f1f1f1;
        min-width: 160px;
        box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
        z-index: 1;
    }

    .dropdown-content a {
        color: black;
        padding: 4px 16px;
        text-decoration: none;
        display: block;
    }

    .dropdown-content a:hover {
        background-color: #ddd;
    }

    .dropdown:hover .dropdown-content {
        display: block;
    }

    .dropdown:hover .dropbtn {
        background-color: transparent;
    }

    .banner img {
        width: 100%;
        height: auto;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        #menu {
            display: none;
            flex-direction: column;
            background-color: #fff;
            position: absolute;
            top: 60px;
            right: 20px;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
            padding: 20px;
            border-radius: 10px;
            z-index: 1000;
        }

        #menu.show {
            display: flex;
        }

        #toggleBtn {
            display: block;
        }
    }

