  body {
    background: linear-gradient(to bottom, #E9E4D1 0%, #F0F2F5 10%);
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
  }

/* LOGO PHOTO */
.header-top {
  display: flex;
  flex-direction: row-reverse; /* שינוי הכיוון חזרה לימין-שמאל */
  align-items: center;
  justify-content: space-between;
  padding: 10px;
}

.header-top .logo-area img {
  max-width: 600px;
  height: auto;
}

.header-top .profile {
  height: 110px;
  border-radius: 10px;
  object-fit: cover;
}


/* Reset Box Model */
* {
  box-sizing: border-box;
}

/* LINKS BAR*/
.header_sectionh {
  width: 100%;
  top: 0;
  margin-top: 0px;
  float: left;
  background-color: #1B5F73;
  padding: 0px;
}
.navbarh {
  width: 100%;
  text-align: center;
  background-color: #1B5F73;
  padding: 20px;
  overflow: auto;
  margin-top: 0px;
}
.navbarh a {
  padding: 20px;
  color: white;
  text-decoration: none;
  font-size: 17px;
  width: 15%;
  text-align: center;
}
.navbarh a:hover {
  background-color: #000;
}
.navbarh a.active {
  background-color: #04AA6D;
}
@media screen and (max-width: 500px) {
  .navbarh a {
    float: none;
    display: block;
    width: 100%;
    text-align: left;
  }
}

/* RIGHT LINKS */
.header {
  overflow: hidden;
  padding: 10px 5px;
}
.header a {
  float: left;
  color: black;
  text-align: center;
  padding: 12px;
  text-decoration: none;
  font-size: 18px;
  line-height: 25px;
  border-radius: 4px;
}
.header a.logo {
  font-size: 25px;
  font-weight: bold;
}
.header a:hover {
  background-color: #ddd;
  color: black;
}
.header a.active {
  background-color: dodgerblue;
  color: white;
}
.header-right {
  float: right;
}
@media screen and (max-width: 500px) {
  .header a {
    float: none;
    display: block;
    text-align: left;
  }
  .header-right {
    float: none;
  }
}

/* SEARCH BOX */
  #regForm {
    background-color: #ffffff;
    margin: 50px auto;
    padding: 30px 20px;
    width: 90%;
    max-width: 500px;
    border: 1px solid #d4d4d4;
    border-radius: 10px;
    box-shadow: 0 0 10px #ccc;
    text-align: center;
    direction: rtl;
  }

  h1, h2 {
    text-align: center;
    color: #008CBA;
    text-shadow: 1px 1px 3px #808080;
    margin-bottom: 20px;
    font-weight: 600;
  }

  p {
    padding: 5px 0;
    margin: 5px 0;
    font-size: 17px;
    line-height: 1.6em;
  }

  select, input[type="text"], input[type="email"], input[type="tel"] {
    width: 100%;
    padding: 10px;
    margin: 8px 0;
    font-size: 16px;
    border-radius: 6px;
    border: 1px solid #ccc;
  }

  button {
    background-color: #04AA6D;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 18px;
    cursor: pointer;
    border-radius: 6px;
    transition: background-color 0.3s ease;
  }

  button:hover {
    background-color: #038f5a;
  }

  .button-group {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
  }

  .tab {
    display: none;
  }

  .tab.active {
    display: block;
  }

  .step {
    height: 12px;
    width: 12px;
    margin: 0 4px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    opacity: 0.5;
  }

  .step.active {
    opacity: 1;
    background-color: #04AA6D;
  }

  .step.finish {
    background-color: #04AA6D;
  }

  .container {
    direction: rtl;
    text-align: right;
    padding: 10px 20px;
    margin: auto;
    max-width: 800px;
  }

/* Footer */
.footer_section {
  width: 100%;
  margin-top: 20px;
  float: left;
  background-color: #1B5F73;
  padding: 50px 0px;
}
.navbar {
  width: 100%;
  text-align: center;
  background-color: #1B5F73;
  padding: 20px;
  overflow: auto;
  margin-top: 10px;
}
.location_main {
  width: 100%;
  display: flex;
  padding-top: 10px;
}
.location_text {
  width: 100%;
  text-align: center;
  font-size: 24px;
  color: #fdfefe;
}
.padding10 {
  padding-left: 10px;
}
.navbar a {
  padding: 20px;
  color: white;
  text-decoration: none;
  font-size: 17px;
  width: 15%;
  text-align: center;
}
.navbar a:hover {
  background-color: #000;
}
.navbar a.active {
  background-color: #04AA6D;
}
@media screen and (max-width: 500px) {
  .navbar a {
    float: none;
    display: block;
    width: 100%;
    text-align: left;
  }
}

/* Copyright */
.copyright_section {
  width: 100%;
  float: left;
  background-color: #ffffff;
  height: auto;
}
.copyright_text {
  width: 80%;
  margin: 0 auto;
  font-size: 16px;
  color: #000000;
  text-align: center;
  padding: 20px 0px;
  border-top: 1px solid #fff;
}

/* Special Elements */
.img_transforms {
  border: none;
  position: absolute;
  top: 6px;
  left: 6px;
  width: 110px;
  border-radius: 8px;
}