    * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.story-section {
  background: #f4f0e6;
  padding: 0;
}

.grid-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 220px 320px;
  border: 1px solid #5c7f54;
}

/* Shared */
.card {
  border: 1px solid #5c7f54;
  background: #f4f0e6;
}

/* Top Text Cards */
.text-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #4d6d4b;
  text-align: center;
  padding: 40px;
}

.icon {
  font-size: 24px;
  margin-bottom: 15px;
}

.text-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
  font-weight: 500;
}

.text-card p {
  font-size: 14px;
  max-width: 260px;
  line-height: 1.6;
}

/* Farm Image */
.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Bottom Right Area */
.bottom-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 100%;
}

/* Quote */
.quote-card {
  border-right: 1px solid #5c7f54;
  border-left: 1px solid #5c7f54;
  display: flex;
  align-items: center;
  padding: 40px;
  color: #4d6d4b;
}

.quote-card p {
  font-size: 24px;
  line-height: 1.5;
  max-width: 280px;
}

/* Fruit */
.fruit-card {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #ece7dc;
}

.fruit-card img {
  width: 180px;
  max-width: 80%;
}

.about-section {
    background: #c8ddc8;
    width: 100%;
    overflow: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    min-height: 390px;
}

/* IMAGE COLUMN */
.about-image {
    padding: 28px 24px;
    border-right: 1px solid #5c8d5f;
    display: flex;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 24px;
    display: block;
    object-fit: cover;
}

/* CONTENT COLUMNS */
.about-card {
    display: flex;
    flex-direction: column;
}

.about-card h2 {
    text-align: center;
    font-size: 58px;
    font-weight: 300;
    color: #2f6f3c;
    margin: 30px 0;
}

.content-box {
    flex: 1;
    border-top: 1px solid #5c8d5f;
    border-left: 1px solid #5c8d5f;
    padding: 70px;
    display: flex;
    align-items: flex-start;
}

.about-card:last-child .content-box {
    border-right: 1px solid #5c8d5f;
}

.content-box p {
    color: #2f6f3c;
    font-size: 20px;
    line-height: 1.8;
    max-width: 480px;
}

.content-box strong {
    font-weight: 700;
}

/* Bottom Green Strip */
.bottom-strip {
    height: 28px;
    background: #2f6f3c;
}

/* Responsive */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-image,
    .content-box {
        border: none;
    }

    .about-card h2 {
        font-size: 42px;
    }

    .content-box {
        padding: 40px 24px;
    }
}