body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: #111;
  background-color: #fff;
}

.story-section {
  padding: 4rem 2rem;
  
  
}

.story-container {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  max-width: 1200px;
  margin: auto;
}

.left-column {
  flex: 1 1 40%;
  position: relative;
}

.right-column {
  flex: 1 1 55%;
}

.title {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #000;
}

.lead {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.right-column p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

.image-wrapper {
  position: relative;
  width: 100%;
}

.main-img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.badge {
  position: absolute;
  top: -20px;
  left: -20px;
  background: #007f5f;
  color: white;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  font-weight: bold;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}

.badge span {
  font-size: 0.6rem;
  text-align: center;
  margin-top: 0.2rem;
  font-weight: normal;
}

@media (max-width: 768px) {
  .story-container {
    flex-direction: column;
  }

  .title {
    font-size: 2rem;
    text-align: center;
  }

  .left-column,
  .right-column {
    flex: 1 1 100%;
  }

  .badge {
    width: 80px;
    height: 80px;
    font-size: 1.2rem;
  }

  .badge span {
    font-size: 0.5rem;
  }
}
