html, body {
  min-height: 100vh;
  height: 100%;
  background: #ECE6E6;
  overflow-y: auto;
}

.about-main {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

* {
  box-sizing: border-box;
}

.hero-section {
  width: 100%;
  padding: clamp(16px, 6vw, 120px);
  background: #ECE6E6;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: nowrap;
  gap: clamp(16px, 6vw, 80px);
}

.hero-image-container {
  flex: 0 1 220px;
  min-width: 380px;
  width: 22vw;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-container img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.hero-content {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 56px;
  margin-left: auto;
}

.hero-title {
  color: #166874;
  font-size: clamp(1.5rem, 4vw, 48px);
  font-family: 'Space Mono', monospace;
  font-weight: 400;
  line-height: 1.15;
  text-align: left;
  margin: 0;
}

.hero-subtitle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #00183D;
  font-size: clamp(1rem, 2vw, 22px);
  font-family: Helvetica;
  font-weight: 400;
  text-transform: capitalize;
  margin: 0;
  word-wrap: break-word;
}

.vision-section {
  width: 100%;
  padding: clamp(16px, 6vw, 120px);
  background: #166874;
  display: flex;
  flex-direction: column;
  gap: 80px;
  align-items: center;
}

.vision-content {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: clamp(16px, 6vw, 80px);
}

.vision-title {
  color: #EEEEEE;
  font-size: 48px;
  font-family: 'Space Mono', monospace;
  font-weight: 400;
  line-height: 57.6px;
  margin: 0;
  word-wrap: break-word;
}

.vision-text {
  color: white;
  font-size: 22px;
  font-family: Helvetica, Arial, sans-serif;
  font-weight: 400;
  line-height: 1.5;
  margin: 0;
  min-width: 0;
  max-width: 1087px;
  flex: 1 1 0;
  word-wrap: break-word;
}

.features-section {
  width: 100%;
  padding: clamp(32px, 6vw, 120px);
  background: #ECE6E6;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.features-header {
  display: flex;
  flex-direction: column;
  align-items: self-start;
  gap: 24px;
}

.features-title {
  color: #166874;
  font-size: clamp(2rem, 4vw, 56px);
  font-family: 'Space Mono', monospace;
  font-weight: 400;
  text-transform: capitalize;
  margin: 0;
}

.features-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.features-row {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
}

.feature-card {
  flex: 1;
  min-width: 320px;
  height: 364px;
  border-radius: 16px;
  outline: 1px solid #F5F4F2;
  overflow: hidden;
}

.feature-content {
  height: 100%;
  min-width: 240px;
  padding: 32px;
  background: #9FA8CC;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}

.feature-header {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-icon {
  color: #00183D;
  font-size: 16px;
  font-family: Helvetica, Arial, sans-serif;
  font-weight: 400;
  margin: 0;
}

.feature-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.feature-title {
  color: #00183D;
  font-size: 28px;
  font-family: 'Space Mono', monospace;
  font-weight: 400;
  margin: 0;
}

.feature-description {
  color: #00183D;
  font-size: 18px;
  font-family: Helvetica, Arial, sans-serif;
  font-weight: 400;
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 700px) {
  .hero-section {
    flex-direction: row;
    gap: 16px;
    padding: 16px 2vw;
  }
  .hero-image-container {
    min-width: 60px;
    max-width: 100px;
    width: 22vw;
  }
  .hero-title {
    font-size: 18px;
  }
  .hero-subtitle {
    font-size: 12px;
  }
  .hero-content {
    gap: 16px;
  }
  .vision-content {
    flex-direction: column;
    gap: 16px;
  }
  .vision-title, .vision-text {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    flex: none;
  }
}