body {
  background: #000000;
}

.about-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  padding: 120px 0 40px 0;
}

.about-hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  gap: 48px;
}

.about-hero-text {
  flex: 1 1 0;
  max-width: 540px;
}

.about-subtitle {
  letter-spacing: 0.15em;
  color: #4a90e2;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
}

.about-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: #222;
  margin-bottom: 1.2rem;
  line-height: 1.1;
}

.about-title .highlight {
  background: linear-gradient(90deg, #4a90e2 30%, #7ee787 100%);
  color: #fff;
  border-radius: 0.3em;
  padding: 0 0.25em;
  box-decoration-break: clone;
}

.about-desc {
  font-size: 1.2rem;
  color: #444;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.about-cta-btn {
  display: inline-block;
  background: #4a90e2;
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 0.9em 2.2em;
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  box-shadow: 0 4px 16px rgba(74, 144, 226, 0.08);
}
.about-cta-btn:hover {
  background: #7ee787;
  color: #222;
  transform: translateY(-2px) scale(1.04);
}

.about-hero-image {
  flex: 1 1 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-image-mask {
  width: 370px;
  height: 370px;
  background: linear-gradient(135deg, #e6f0fa 60%, #4a90e2 100%);
  border-radius: 50% 40% 60% 50% / 60% 50% 40% 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(74, 144, 226, 0.10);
}

.about-image-mask img {
  width: 92%;
  height: auto;
  display: block;
  object-fit: cover;
}

@media (max-width: 900px) {
  .about-hero-content {
    flex-direction: column;
    gap: 32px;
    padding: 0 16px;
  }
  .about-hero-image, .about-hero-text {
    max-width: 100%;
    width: 100%;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  .about-image-mask {
    width: 260px;
    height: 260px;
  }
  .about-title {
    font-size: 2rem;
  }
}
