/* Contact Page CSS – Matching Team Layout */

.image-16-icon {
    width: 78px;
    position: relative;
    height: 79px;
    object-fit: cover;
  }
  
  .heading-6 {
    width: 859px;
    position: relative;
    line-height: 36px;
    font-weight: 300;
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-size: var(--font-size-5xl);
    color: var(--color-dimgray);
  }
  
  .image-16-parent {
    position: relative;
    margin: 250px auto 0 auto;
    max-width: 1100px;
    width: 100%;
    box-sizing: border-box;
    padding: 0 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: flex-start;
  }
  
  /* Heading background */
  .background1 {
    position: absolute;
    top: 218px;
    left: 215px;
    border-radius: 6px;
    background-color: #beff92;
    width: 432px;
    height: 72px;
    overflow: hidden;
    font-size: 44px;
    color: var(--color-darkslateblue);
    font-family: var(--font-inter);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .heading-4 {
    letter-spacing: -1.44px;
    line-height: 72px;
    font-weight: 600;
  }
  
  /* Contact footer logos */
  .contact1 {
    position: absolute;
    width: 100%;
    top: 700px;
    right: 0px;
    left: 0px;
    background-color: #eefaff;
    border-top: 1px solid var(--color-darkslateblue);
    box-sizing: border-box;
    height: 219px;
    overflow: hidden;
  }
  
  .contact-page {
    width: 100%;
    position: relative;
    background:#fbfeff;
    height: 935px;
    overflow-y: hidden;
    text-align: left;
    font-size: var(--font-size-6xl);
    color: var(--color-dimgray);
    font-family: var(--font-inter);
  }
  
  /* Navbar */
  .image-icon {
    top: 7px;
    width: 144px;
    position: relative;
    height: 38px;
    object-fit: cover;
  }
  
  .data-contribution-wrapper {
    width: 243px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }

  .data-contribution {
    color: var(--color-darkslateblue);
  }
  
  .how-it-works {
    position: relative;
    cursor: pointer;
  }
  
  .how-it-works-parent {
    width: 1000px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 50px;
    font-size: var(--font-size-5xl);
}
.navbar {
  position: fixed; /* Use fixed so it's always on top */
  bottom: 0px;
  top:auto;
  left: 0px;
  right: 0px;
  z-index: 1000;
  background-color: var(--color-white);
  height: 114px;
  width: 100%;
  display: flex;
  flex-direction: row;
  /* align-items: center; */
  justify-content: space-between; /* This moves CANDOR to the left */
  padding-right: 2rem; /* Add horizontal padding */
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  font-size: var(--font-size-14xl);
  font-family: var(--font-afacad);
}

  .profile-block {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 32px;
  width: 100%;
  max-width: 1100px;
  margin-top: 0px;
}

  /* Footer logos */
  .image-14-icon {
    position: absolute;
    top: 56px;
    left: 163px;
    width: 557px;
    height: 107px;
    object-fit: cover;
  }
  
  .image-15-icon {
    position: absolute;
    top: 64px;
    left: 843px;
    width: 344px;
    height: 91px;
    object-fit: cover;
  }
  
  /* Global overrides */
  html, body {
    overflow-x: hidden !important;
    margin: 0;
    line-height: normal;
  }
  
  a {
    color: var(--color-darkslateblue);
    text-decoration: none;
  }
  
  
  /* CSS Variables */
  :root {
    --font-inter: Inter;
    --font-afacad: Afacad;
    --font-archivo: Archivo;
  
    --font-size-sm: 14px;
    --font-size-xl: 20px;
    --font-size-3xl: 22px;
    --font-size-5xl: 24px;
    --font-size-14xl: 33px;
    --font-size-16xl: 35px;
    --font-size-20xl: 39px;
  
    --color-aliceblue: #eefaff;
    --color-black: #000;
    --color-aliceblue-100: #f5fcff;
    --color-darkolivegreen: #496e30;
    --color-darkslateblue: #1d458b;
    --color-dimgray-100: #5a5b5e;
    --color-dimgray: #5a5b5e;
    --color-honeydew: #f7fff1;
    --color-palegreen: #beff92;
    --color-white: #fff;
  
    --gap-3xs: 10px;
    --gap-smi: 13px;
  
    --padding-2xl: 21px;
    --padding-8xl: 27px;
    --padding-11xl: 30px;
    --padding-24xl: 43px;
  
    --br-7xs: 6px;
    --br-5xs: 8px;
  }
  
  @media (max-width: 1024px) {
    .navbar {
      flex-direction: column;
      height: auto;
      padding: 1rem;
      font-size: 1.3rem;
      justify-content: center;
      align-items: center;
    }
  
    .how-it-works-parent {
      flex-direction: row;
      gap: 1rem;
      font-size: 1rem;
      width: 100%;
    }
  
    .background1 {
      position: relative;
      top: 0;
      left: 0;
      width: 15rem;
      height: 4rem;
      margin: 1rem auto;
      font-size: 1.5rem;
      padding: 0.5rem;
      text-align: center;
    }
  
    .heading-4 {
      font-size: 1.5rem;
      text-align: center;
      margin-bottom: 1rem;
    }
  
    .image-16-parent {
      margin: 2rem auto 0 auto;
      padding: 0 1rem;
      gap: 1rem;
      justify-content: center;
    }
    .image-16-icon {
      width: 64px;
      height: 64px;
    }
  
    .heading-6 {
      width: 100%;
      font-size: 1rem;
      line-height: 1.5;
      padding: 0.5rem;
      margin-bottom: 1rem;
    }
  
    .contact1 {
      position: relative;
      top: 5rem;
      height: auto;
      padding: 1.5rem 1rem;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 1rem;
      margin-top: 2rem;
    }
  
    .image-14-icon,
    .image-15-icon {
      position: relative;
      top: 0;
      left: 0;
      width: 80%;
      height: auto;
      object-fit: contain;
      margin: 1rem auto;
      display: block;
    }
  
    .contact-page {
      height: 100vh;
      font-size: 1.2rem;
      overflow-y: auto;
    }
  }
  