:root {
  --dark: #212121;
  --light: #fff;
  --radius: 16px;
  --shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.wrapper {
  width: 90%;
  margin: 0 auto;
}

body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  background: #fafafa;
  color: var(--dark);
}

.about-hero {
  background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), 
  url("./image/imageprod.png") no-repeat center/cover;
  color: var(--light);
  text-align: center;
  margin-top:70px;
  height: 85vh;
  justify-content: center;
  display: flex;
  flex-direction: column;
}

.about-hero h1 {
  font-size: 3rem;
  margin-bottom: 15px;
}

.about-hero p {
  font-size: 1rem;
  max-width: 700px;
  margin: 0 auto;
}

.about-section {
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.about-section img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  height: 300px;
  object-fit: cover;
}

.about-text h2 {
  font-size: 2rem;
  color:#2c522b;
  margin-bottom: 20px;
}

.about-text p {
  margin-bottom: 15px;
  font-size:14px;
  color: #555;
}

@media (max-width: 900px) {
  .about-section {
    grid-template-columns: 1fr;
    width: 100%;
  }
  .about-text h2 {
    font-size: 1.6rem;
  }
  .about-text p {
    font-size:13px;
  }
  .wrapper{
    width: 100%;
  }
  .about-hero p{
    font-size: 14px;
  }
  .about-hero h1 {
    font-size: 2rem;
  }
}

