.case-section {
  background-color: #EDEDED;
  padding: 50px 0;
}

.case-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.case-text {
  max-width: 50%;
  padding-right: 50px;
}

.case-text h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.case-text p {
  font-size: 16px;
  line-height: 1.6;
  color: #222;
  margin-bottom: 30px;
}

.case-button {
  background-color: #2a7b35;
  color: #fff;
  padding: 10px 24px;
  border-radius: 24px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.case-button:hover {
  background-color: #1d5d27;
}

.case-image img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}