.about-page-section {
  background-color: #627f61;
  padding: 2rem 1rem;
  overflow: hidden;
}

.about-page-wrapper {
  max-width: 100%;
  width: 75rem;
  height: auto;
  min-height: 100dvh;
  min-height: 100vh;
  gap: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.about-left-content,
.about-right-content {
  flex: 1 1 45%;
  min-width: 300px;
  color: white;
}

.about-main-title {
  font-size: 3rem;
  font-weight: 300;
  margin-bottom: 2rem;
  line-height: 1.2;
}

.about-description {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.about-features-grid {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
}

.about-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.about-feature-icon {
  width: 2.5rem;
  height: 2.5rem;
  border: 0.125rem solid #fbbf24;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.5rem;
}

.about-feature-content h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.about-feature-content p {
  font-size: 1rem;
  opacity: 0.8;
  line-height: 1.4;
}

.about-cta-button {
  max-width: 100%;
  background-color: #fbbf24;
  color: #1e40af;
  padding: 1rem 2rem;
  border: none;
  border-radius: 0.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.05rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.about-cta-button:hover {
  background-color: #f59e0b;
  transform: translateY(-0.25rem);
}

.about-right-content {
  display: flex;
  flex-direction: column;
}

.about-main-image {
  max-width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 1rem;
}

.truck-image {
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

@media (max-width: 1024px) {
  .about-page-section {
    padding: 2rem;
  }

  .about-page-wrapper {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }

  .about-left-content,
  .about-right-content {
    flex: none;
  }

  .about-main-image {
    margin: 0 auto;
    width: 50%;
  }
}

@media (max-width: 768px) {
  .about-main-title {
    font-size: 2.5rem;
  }

  .about-features-grid {
    flex-direction: column;
    gap: 1.5rem;
  }

  .about-main-image {
    margin: 0 auto;
    width: 70%;
  }

  .about-cta-button {
    padding: 0 1rem;
    font-size: 1rem;
  }
}

@media (max-width: 600px) {
  .about-main-image {
    width: 100%;
  }

  .about-right-content {
    align-items: center;
  }
}

@media (max-width: 480px) {
  .about-main-title {
    font-size: 2rem;
  }

  .about-features-grid {
    gap: 1rem;
  }

  .about-feature-item {
    flex-direction: column;
    text-align: center;
  }

  .about-cta-button {
    font-size: 1rem;
  }
}
