.elementor-144 .elementor-element.elementor-element-04dfb3d{--display:flex;}/* Start custom CSS for html, class: .elementor-element-e2e9ae2 */.navbar {
  background: #fff;
  padding: 10px 20px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 999;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: auto;
}

.logo {
  font-size: 1.5em;
  color: #EB1D1D;
  font-weight: bold;
  text-decoration: none;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links li a {
  text-decoration: none;
  color: #545456;
  font-weight: 500;
  transition: 0.3s ease;
}

.nav-links li a:hover {
  color: #EB1D1D;
}

.toggle-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.toggle-btn .bar {
  height: 3px;
  width: 25px;
  background: #545456;
  transition: all 0.3s ease;
  border-radius: 2px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .toggle-btn {
    display: flex;
  }

  .nav-links {
    flex-direction: column;
    position: absolute;
    top: 65px;
    right: 0;
    background: #fff;
    width: 100%;
    text-align: center;
    display: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    padding: 10px 0;
  }
}/* End custom CSS */