.elementor-32 .elementor-element.elementor-element-d8892fc{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}/* Start custom CSS for html, class: .elementor-element-d176b5b */.header {
  background: #0b3d91;
  padding: 10px 0;
}

.header-container {
  width: 95%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
}

.logo img {
  height: 35px;
}

/* Menu */
.menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.menu a {
  color: #fff;
  text-decoration: none;
  margin: 5px 10px;
  font-size: 14px;
  font-weight: 600;
}

.menu a:hover {
  color: #ffd54f;
}

/* Search Box */
.search-box form {
  display: flex;
  align-items: center;
}

.search-box input {
  padding: 6px 8px;
  border: none;
  border-radius: 4px 0 0 4px;
  outline: none;
}

.search-box button {
  padding: 6px 10px;
  border: none;
  background: #d32f2f;
  color: #fff;
  cursor: pointer;
  border-radius: 0 4px 4px 0;
}

.search-box button:hover {
  background: #b71c1c;
}

/* Mobile */
@media(max-width:768px) {

  .header-container {
    flex-direction: column;
    align-items: center;
  }

  .logo {
    margin-bottom: 8px;
  }

  .menu {
    justify-content: center;
    margin-bottom: 8px;
  }

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

  .search-box input {
    width: 70%;
  }
}/* End custom CSS */