.hero-about {
  background: url("../images/about.jpg") no-repeat center/cover;
  position: relative;
  z-index: 1;
}

.hero-about::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: -1;
}

.hero-about .container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40vh;
}

.hero-about .container p {
  color: #fff;
}

.about-hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.about-hero-visual img {
  border-radius: 32px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-hero-text h1 {
  line-height: 1;
  margin-bottom: 32px;
}

.about-hero-text span {
  color: #000;
}

.about-hero-text .btn {
  margin-top: 32px;
}

.split-image {
  height: 300px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.split-image img {
  border-radius: 32px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-hero-visual {
  box-shadow: var(--shadow);
  border-radius: 32px;
  overflow: hidden;
  height: 300px;
}

.split-section {
  display: flex;
  gap: 40px;
  flex-direction: column;
}

.contact-section .btn {
  margin-top: 32px;
}

@media (max-width: 768px){
  .split-section {
    flex-direction: column-reverse;
  }
}