/* Hero Section Styles - Fully Responsive with VW */
.hero {
  background-color: var(--color3); /* #1E3C95 */
  min-height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5vw 16.7vw;
  box-sizing: border-box;
}

.hero-container {
  display: flex;
  align-items: center;
  gap: 5.8vw;
  width: 100%;
  max-width: 72.9vw;
}

.hero-image {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2.5vw 0 0 0;
  flex-shrink: 0;
  top: -3vw;
  position: relative;
}

.heart-illustration img {
      width: 27.9vw;
    height: 22.4vw;
  object-fit: contain;
  min-width: 250px;
  min-height: 203px;
  padding-right: 2vw;
}

.hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 1.5vw;
  min-height: 1px;
  min-width: 1px;
}

.logo-container {
  position: relative;
  top: -2vw;
  right: 21vw;
}

.logo-container img {
  width: 6.5vw;
  height: 3.1vw;
  min-width: 80px;
  min-height: 40px;
}

.hero-text-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.8vw;
  width: 100%;
}

@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    padding: 30vw 5vw 5vw;
   

  }

  .hero-container {
    flex-direction: column;
    gap: 3vw;
    max-width: 100%;
  }

  .logo-container img {
    position: absolute;
    width: 7.5vw;
    height: 3.1vw;
    min-width: 101px;
    min-height: 63px;
    top: -44vw;
    left: -29vw;
  }

}
