.elementor-64 .elementor-element.elementor-element-dc69b24{--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;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS for html, class: .elementor-element-d1ad8e2 */.custom-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  padding: 8px 16px;
  border-bottom: 1px solid #ddd;
  flex-wrap: wrap;
  position: relative;
}

.logo {
  font-size: 20px;
  font-weight: bold;
  color: #0f3b69;
  white-space: nowrap;
}

.logo span {
  color: #7da0ca;
}

.header-center {
  flex: 1;
  max-width: 350px;
  margin: 0 10px;
  position: relative;
}

.header-center input {
  width: 100%;
  padding: 6px 36px 6px 10px;
  border-radius: 20px;
  border: 1px solid #ccc;
  font-size: 14px;
}

.header-center i {
  position: absolute;
  right: 12px;
  top: 9px;
  color: #888;
}

.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

.header-right {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.header-right a {
  text-decoration: none;
  color: #333;
  font-size: 14px;
  padding: 4px 8px;
  border-radius: 16px;
  transition: all 0.2s;
}

.header-right a.active,
.header-right a:hover {
  border: 1px solid #007bff;
  color: #007bff;
}

@media (max-width: 768px) {
  .custom-header {
    flex-wrap: nowrap;
    flex-direction: row;
    align-items: center;
  }

  .header-center {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .header-right {
    display: none;
    flex-direction: column;
    width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border-top: 1px solid #eee;
    z-index: 999;
  }

  .header-right.open {
    display: flex;
  }

  .header-right a {
    padding: 12px 20px;
    border-bottom: 1px solid #f1f1f1;
    text-align: left;
  }
}/* End custom CSS */