* {
    margin: 0;
    padding: 0;
}

.main {
    width: 100%;
}

.navbar {
      display: flex; /* Use flexbox for layout */
      justify-content: space-between; /* Space between logo and menu */
      align-items: center; /* Center items vertically */
      padding: 0px;
      width: 100%;
      height: auto;
      background-color: #94b9ff;
}

.icon {
    width: 200px;
    height: 70px;
}

.logo {
    color: #f2f0ed;
    font-size: 35px;
    font-family: Arial;
    padding-left: 20px;
    margin-right: auto; /* Allow the logo to push menu to the right */
}

.menu {
    height: 70px;
    font-size: 15px;
}

ul {
    display: flex;
    justify-content: center;
    align-items: center;
}

ul li {
    list-style: none;
    margin-left: 62px;
    margin-top: 27px;
    font-size: 14px;
}

ul li a {
    text-decoration: none;
    color: #3a3b2b;
    font-family: Arial;
    font-weight: bold;
    transition: 0.4s ease-in-out;
}

ul li a:hover {
    color: #ff7200;
}

.search {
    width: 330px;
    margin-left: 20px; /* Adjusted margin */
}

.srch {
    font-family: 'Times New Roman';
    width: 200px;
    height: 40px;
    background: transparent;
    border: 1px solid #ff7200;
    margin-top: 13px;
    color: #fff;
    border-right: none;
    font-size: 16px;
    padding: 10px;
    border-bottom-left-radius: 5px;
    border-top-left-radius: 5px;
}

.srch::placeholder {
    color: #0000ff; 
}

.btn {
    width: 100px;
    height: 40px;
    background: #ff7200;
    border: 2px solid #ff7200;
    margin-top: 13px;
    color: #fff;
    font-size: 15px;
    border-bottom-right-radius: 5px;
    border-bottom-right-radius: 5px;
    transition: 0.2s ease;
    cursor: pointer;
}

.btn:hover {
    color: #000;
}

.btn:focus {
    outline: none;
}

.srch:focus {
    outline: none;
}

img {
    max-width: 100%;
    height: auto;
}
