body {
  background-color: #f9f9f9;
  scroll-behavior: smooth;
}
span {
  color: #f60404;
  font-weight: bold;
}
.interior-detail {
  padding-top: 3rem;
}
.interior-detail section {
  max-width: 1200px;
  margin: 4rem auto;
  padding: 2rem;
  position: relative;
}
h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #111;
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

h2::after {
  content: "";
  display: block;
  width: 70px;
  height: 4px;
  background: #f60404;
  margin: 1rem auto 0;
  border-radius: 2px;
}
.about {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  max-width: 100%;
  margin: 0;
  text-align: center; /* keeps balance when image is gone */
}

.about-text {
  flex: 1;
  max-width: 800px; /* prevents text from stretching too wide */
  margin: 0 auto;
}

.about-text h2 {
  font-family: "Montserrat", sans-serif;
  text-align: center;
}

.about-text p {
  font-size: 1.15rem;
  color: #555;
  line-height: 1.8;
}

.about-image {
  flex: 1;
}

.about-image img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease;
}

.about-image img:hover {
  transform: scale(1.05);
}
.process {
  background: #fafafa;
}

.process h2 {
  margin-bottom: 5rem;
}

.process-step {
  display: flex;
  align-items: center;
  gap: 3rem;
  max-width: 1200px;
  margin: 4rem auto;
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.8s ease-out;
}

.process-step.show {
  opacity: 1;
  transform: translateY(0);
}

.process-step.reverse {
  flex-direction: row-reverse;
}

.process-image,
.process-text {
  flex: 1;
}

.process-image img {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.process-text h3 {
  font-size: 1.6rem;
  color: #f60404;
  margin-bottom: 1rem;
}

.process-text p {
  font-size: 1.1rem;
  color: #444;
  line-height: 1.7;
}
#year {
  color: #222;
  font-weight: normal;
}
@media (max-width: 900px) {
  .about,
  .process-step,
  .feature-row,
  .feature-row.reverse,
  .process-step.reverse {
    flex-direction: column;
    text-align: center;
  }

  .about-text h2 {
    text-align: center;
  }

  .process-text p,
  .feature-text p {
    max-width: 100%;
  }
}
