/* Header Styles */
.u-flex-z5 {
  display: flex;
  align-items: center;
}

.hdr-w-v4 {
  width: 100%;
  height: 131px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  padding: 0 5.2%;
  background: rgba(38, 166, 136, 0.85);
  backdrop-filter: blur(15px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-v8-z {
  width: 128px;
  flex-shrink: 0;
}

.logo-v8-z img {
  width: 100%;
  display: block;
}

.nav-c-f7 {
  display: flex;
  gap: 32px;
  margin-left: auto;
  margin-right: 40px;
}

.nav-itm-q2 {
  font-size: 20px;
  color: #FFFFFF;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-itm-q2:hover {
  color: #53CBB0;
}

.phn-b-t1 {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 22px;
  font-weight: 700;
  white-space: nowrap;
}

.phn-b-t1 img {
  width: 24px;
  height: 24px;
}

.brg-m-x3 {
  display: none;
  width: 30px;
  height: 22px;
  padding: 0;
  border: 0;
  background: transparent;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
}

.brg-m-x3 span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: #FFFFFF;
  border-radius: 2px;
}

.mob-o-l1 {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: #26A688;
  z-index: 2000;
  flex-direction: column;
  justify-content: center;
  gap: 40px;
  transform: translateX(100%);
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.4s ease-in-out, visibility 0s linear 0.4s;
}

.mob-o-l1.active {
  transform: translateX(0);
  visibility: visible;
  pointer-events: auto;
  transition: transform 0.4s ease-in-out;
}

.cls-b-v2 {
  position: absolute;
  top: 40px;
  right: 5.2%;
  padding: 0;
  border: 0;
  background: transparent;
  appearance: none;
  -webkit-appearance: none;
  font-size: 40px;
  cursor: pointer;
}

@media (max-width: 1200px) {
  .nav-c-f7, .phn-b-t1 {
    display: none;
  }
  
  .brg-m-x3 {
    display: flex;
  }
}

/* Footer Styles */
.ftr-w-v4 {
  width: 100%;
  background-color: #0B8F70;
  padding: 64px 5.2% 40px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.ftr-top-z2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.ftr-info-r4 {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
}

.ftr-info-c1 {
  min-width: 0;
}

.ftr-info-t2 {
  font-family: 'Sigmar One', cursive;
  font-size: clamp(28px, 3vw, 46px);
  line-height: 1.1;
  color: #FFFFFF;
  margin-bottom: 18px;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.18);
}

.ftr-info-p4 {
  font-size: 18px;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.9);
  max-width: 920px;
}

.ftr-l-x5 img {
  height: 60px;
  width: auto;
}

.ftr-n-q2 {
  display: flex;
  gap: 32px;
}

.ftr-n-q2 a {
  color: #FFFFFF;
  text-decoration: none;
  font-family: 'Raleway', sans-serif;
  font-size: 18px;
  transition: opacity 0.3s;
}

.ftr-n-q2 a:hover {
  opacity: 0.7;
}

.ftr-mid-m9 {
  width: 100%;
}

.ftr-legal-v1 {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

.ftr-legal-v1 a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 14px;
  font-family: 'Raleway', sans-serif;
}

.ftr-btm-b3 {
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  text-align: center;
}

.ftr-copy-p8 {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  margin: 0 auto;
}

@media (max-width: 1024px) {
  .ftr-top-z2 {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }
  .ftr-n-q2 {
    flex-direction: column;
    gap: 16px;
  }
  .ftr-info-r4 {
    grid-template-columns: 1fr;
  }
  .ftr-info-p4 {
    max-width: 100%;
  }
}