.elementor-203 .elementor-element.elementor-element-7024619{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;--justify-content:flex-start;--gap:0px 0px;--row-gap:0px;--column-gap:0px;}.elementor-203 .elementor-element.elementor-element-bc71005{width:var( --container-widget-width, 102.856% );max-width:102.856%;--container-widget-width:102.856%;--container-widget-flex-grow:0;}.elementor-203 .elementor-element.elementor-element-bc71005.elementor-element{--flex-grow:0;--flex-shrink:0;}.elementor-203 .elementor-element.elementor-element-aeb2e53{--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;}@media(min-width:768px){.elementor-203 .elementor-element.elementor-element-7024619{--width:100%;}}/* Start custom CSS for html, class: .elementor-element-bc71005 */body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
}

.header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(to right, #5BA9CC, #4495BC, #5BA9CC);
  padding: 1rem 2rem;
  color: white;
  position: relative;
  z-index: 1000;
}

.logo {
  font-size: 1.8rem;
  font-weight: bold;
}

.nav {
  flex-grow: 1;
}

.menu {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
  justify-content: flex-end;
}

.menu li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: border-bottom 0.2s ease-in-out, color 0.2s ease-in-out;
}

.menu li a:hover {
  border-bottom: 2px solid white;
}

.hamburger {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: white;
  user-select: none;
}

#menu-toggle {
  display: none;
}

@media (max-width: 768px) {
  .menu {
    flex-direction: column;
    position: absolute;
    top: 70px;
    right: 1rem;
    background-color: #4495BC;
    padding: 1rem;
    border-radius: 8px;
    width: 200px;
    display: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }

  #menu-toggle:checked + .hamburger + .nav .menu {
    display: flex;
  }

  .hamburger {
    display: block;
  }

  .menu li {
    margin-bottom: 0.8rem;
  }

  .menu li:last-child {
    margin-bottom: 0;
  }
}/* End custom CSS */
/* Start custom CSS for container, class: .elementor-element-7024619 *//* Style the header with a grey background and some padding */
.header {
  overflow: hidden;
  background-color: #f1f1f1;
  padding: 20px 10px;
}

/* Style the header links */
.header a {
  float: left;
  color: black;
  text-align: center;
  padding: 12px;
  text-decoration: none;
  font-size: 18px;
  line-height: 25px;
  border-radius: 4px;
}

/* Style the logo link (notice that we set the same value of line-height and font-size to prevent the header to increase when the font gets bigger */
.header a.logo {
  font-size: 25px;
  font-weight: bold;
}

/* Change the background color on mouse-over */
.header a:hover {
  background-color: #ddd;
  color: black;
}

/* Style the active/current link*/
.header a.active {
  background-color: dodgerblue;
  color: white;
}

/* Float the link section to the right */
.header-right {
  float: right;
}

/* Add media queries for responsiveness - when the screen is 500px wide or less, stack the links on top of each other */
@media screen and (max-width: 500px) {
  .header a {
    float: none;
    display: block;
    text-align: left;
  }
  .header-right {
    float: none;
  }
}/* End custom CSS */