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

body {
  background: #F6F4EF;
  font-family: 'Inter', sans-serif;
  color: #1B1B1B;
}

section {
  padding: 160px 8%;
}

/* HERO */
.about-hero {
  padding: 200px 8% 120px;
  background: #136A37;
  color: #fff;
}

.about-hero h1 {
  font-family: 'Poppins', sans-serif;
  font-size: 120px;
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -3px;
  margin-bottom: 40px;
}

.about-hero p {
  font-size: 22px;
  max-width: 600px;
  opacity: 0.9;
}

/* STORY */
.about-container {
  display: flex;
  gap: 120px;
}

.story-left h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 70px;
  font-weight: 900;
}

.story-right p {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 30px;
}

/* DIFFERENCE */
.about-difference h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 80px;
  font-weight: 900;
  margin-bottom: 80px;
}

.difference-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}

.difference-card h3 {
  font-size: 26px;
  margin-bottom: 20px;
  font-weight: 700;
}

.difference-card p {
  font-size: 18px;
  opacity: 0.8;
}

/* INGREDIENTS */
.about-ingredients {
  background: #136A37;
  color: #fff;
}

.ingredients-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 120px;
}

.ingredients-left h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 100px;
  font-weight: 900;
  line-height: 0.9;
  margin-bottom: 30px;
}

.ingredients-left p {
  font-size: 20px;
  opacity: 0.9;
}

.ingredients-right img {
  width: 420px;
  transform: rotate(-5deg);
}

/* VISION */
.about-vision {
  text-align: center;
}

.about-vision h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 90px;
  font-weight: 900;
  line-height: 0.9;
  margin-bottom: 40px;
}

.about-vision p {
  font-size: 22px;
  max-width: 700px;
  margin: auto;
  opacity: 0.8;
}

/* FOOTER */
.about-footer {
  background: #0F4F2F;
  color: #fff;
  text-align: center;
  padding: 120px 8%;
}

.about-footer h2 {
  font-family: 'Poppins', sans-serif;
  font-size: 80px;
  font-weight: 900;
  margin-bottom: 20px;
}