* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
.topbar {
    display: flex;
    align-items: center;
  justify-content: space-between;
    width: 100%;    
    height: 93px;        
    background: linear-gradient(90deg, #0F726C 15%, #0c5e59 30%);
    position: relative;
    padding: 0 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 62px;
  min-width: 240px;
  text-decoration: none;
}

.logo img {
  position: absolute;
  top: 16px;           
  left: 17px;          

  width: 65px;
  height: 62px;

  transform: rotate(0deg); 
  opacity: 1;             

  object-fit: contain;
}
.logotext {
  position: absolute;
  top: 26px; 
  left: 93px; 
  
  width: 189.61px;
  height: 41px;

  font-family: 'Roboto', sans-serif;
  font-weight: 600;  
  font-size: 48px;
  line-height: 36px;
  letter-spacing: 0;

  color: #F3F4F6;
}


.search-bar {
display: flex;
align-items: center;
background-color: rgba(255, 255, 255, 0.14);
padding: 8px 12px;
border-radius: 8px;
width: 432px;
height: 47px; 

 max-width: 500px;
 margin: 0 24px;
 position: relative;
 }

.search-bar img {
width: 25px;
height: 25px; 

object-fit: contain;
margin-left: 10px;  
margin-right: 10px; 
 }

 .search-bar input {
  
  width: 300px;
  height: 28px;

  
  font-family: 'Roboto', sans-serif;
  font-weight: 500; 
  font-size: 16px;
  line-height: 175%; 

  
  flex: 1; 
  border: none;
  background: transparent;
  color: #F3F4F6;
  padding-left: 10px;
}

.search-bar input::placeholder {
  color: #D1D5DB;
}

.search-bar input:focus-visible,
.dropdown a:focus-visible,
.icon:focus-visible,
.logo:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.92);
  outline-offset: 3px;
}


.header-icons {
display: flex;
 align-items: center;
gap: 0px; 
position: relative;
 font-size: 1.5rem;
}

.icon {
  font-size: 1.3rem;
  cursor: pointer;
  color: #E5E7EB;
}

.header-icons img {
 width: auto; 
height: 100px; 
object-fit: contain; 
 cursor: pointer;
}

    
.dropdown {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 75px;
    right: 80px;
     background: #0F726C;
    border-radius: 10px;
    box-shadow: 0px 0px 24px 0px #00000040;
    min-width: 200px;
    overflow: hidden;
    z-index: 99;
}   

.dropdown a {
  
  border-bottom: 1px solid rgba(255, 255, 255, 0.1); 
    font-size: 14px; 

  padding: 14px 16px;
  
  color: #E5E7EB;
  text-decoration: none;
  transition: background 0.2s ease;
  font-family: 'Roboto', sans-serif;

}

.dropdown a:hover {
  background: rgba(255, 255, 255, 0.12);
}


.dropdown a:last-child {
  border-bottom: none;
}

.dropdown.active {
  display: flex;
}


footer {
  background-color: #0F726C;
  color: #fff;
  padding: 40px 20px;
  font-family: 'Roboto', sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-column {
  flex: 1;
  min-width: 250px;
  margin-bottom: 20px;
}


.footer-column h4 {
  font-size: 1.2rem;
  margin-bottom: 15px;
}


.footer-column a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-column a:hover {
  color: #a0a0a0;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column li {
  margin-bottom: 8px;
}


.contact-form .form-group {
  display: flex;
}

.contact-form input[type="email"] {
  border: 1px solid #fff;
  background-color: transparent;
  color: #fff;
  padding: 10px;
  border-radius: 5px;
  flex-grow: 1;
  margin-right: 10px;
}

.contact-form input[type="email"]::placeholder {
  color: #ccc;
}

.contact-form button {
  background-color: #0F726C;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.contact-form button:hover {
  background-color: #0c5e59;
}


.footer-column select {
  background-color: transparent;
  border: 1px solid #fff;
  color: #fff;
  padding: 10px;
  border-radius: 5px;
  cursor: pointer;
}


.social-icons a {
  border: 1px solid #fff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
  transition: background-color 0.3s;
}

.social-icons a:hover {
  background-color: #0F726C;
}

@media (max-width: 960px) {
  .topbar {
    height: auto;
    padding: 14px 16px;
    gap: 12px;
    flex-wrap: wrap;
  }

  .logo {
    min-width: auto;
    min-height: auto;
    gap: 12px;
  }

  .logo img,
  .logotext {
    position: static;
    width: auto;
    height: auto;
  }

  .logo img {
    width: 52px;
    height: 52px;
  }

  .logotext {
    font-size: 34px;
    line-height: 1;
  }

  .search-bar {
    order: 3;
    width: 100%;
    max-width: none;
    margin: 0;
  }

  .search-bar input {
    width: 100%;
  }

  .header-icons {
    margin-left: auto;
  }

  .header-icons img {
    height: 72px;
  }

  .dropdown {
    top: calc(100% + 8px);
    right: 0;
  }
}

@media (max-width: 640px) {
  .topbar {
    padding: 12px;
  }

  .logotext {
    font-size: 28px;
  }

  .header-icons {
    width: 100%;
    justify-content: flex-end;
  }

  .dropdown {
    width: min(100%, 280px);
    right: 0;
  }
}