* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

section {
  width: 100%;
}

/* About Hero Section */
#about-hero.text-over-image {
  display: flex;
  position: relative;
  overflow: hidden;
  padding: 4rem 2rem 2rem;
}

.hero-left-column {
  flex: 1;
  position: relative;
}

.hero-left-column img {
  width: 50%;
  height: auto;
  object-fit: cover;
  display: block;
}

/* Text over image */
.hero-right-column {
  position: absolute;
  top: 50%;
  right: 15.5%;
  transform: translateY(-50%);
  text-align: start;
  z-index: 2;
}

.hero-right-column h3 {
  font-size: 2.5rem;
  letter-spacing: 0.1em;
  font-weight: 400;
  margin-bottom: 1rem;
}

.hero-right-column h1 {
  font-size: clamp(3.6rem, 7.2vw, 7.2rem);
  line-height: 1.1;
  font-weight: 500;
  font-family: "Georgia", serif;
  color: #ff4e00;
}

/* Add dark overlay for better text readability */
.hero-left-column::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* About Content Section */
#about-content {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.about-content-left {
  flex: 1;
  min-width: 250px;
  background-size: cover;
  background-position: center;
  border-radius: 6px;
}

.about-content-left h3 {
  color: #111111;
}

.about-content-right {
  flex: 2;
  min-width: 300px;
  font-size: 1rem;
  line-height: 1.8;
  color: #111;
}

.about-content-right p {
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.bold {
  font-weight: 600;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  #about-hero {
    flex-direction: column;
    height: auto;
  }

  .hero-left-column img {
    width: 100%;
  }

  .hero-right-column {
    position: static;
    transform: none;
    text-align: center;
    padding: 2rem 1rem;
  }

  #about-content {
    flex-direction: column;
  }

  .about-content-right {
    padding: 0 0.5rem;
  }
}
