.features-block {
  padding: 80px 40px;
  margin: 0 !important;
  max-width: 100% !important;
}

.features-container {
  max-width: 1512px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin: 0 auto;
}

.features-content_container {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

/* Left Column - Content */
.features-content {
  position: relative;
  max-width: 590px;
  flex: 1;
}

.features-heading {
  font-size: 24px;
  font-weight: 600;
  margin: 0;
  color: #f99c28;
}

.features-description {
  font-size: 28px;
  color: #000000;
  opacity: 0.75;
  font-weight: 500;
}

.features-block-sticker {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  margin-top: 10px;
}

/* Stickers Container */
.features-block .stickers-wrapper {
  position: relative;
  width: 230px;
  height: 280px;
}

.features-block .sticker-wrapper {
  position: absolute;
}

.features-block .sticker-1 {
  top: 0;
  right: 0;
  z-index: 2;
  transform: rotate(-6deg);
}

.features-block .sticker-2 {
  bottom: 0;
  left: 0;
  z-index: 1;
  transform: rotate(-6deg);
}

.features-block .sticker-1 .sticker-image {
  width: 120px;
  height: 120px;
}

.features-block .sticker-2 .sticker-image {
  width: 170px;
  height: auto;
}

/* Right Column - Features */
.features-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 25px;
  background: transparent;
  border: none;
  padding: 0;
}

.feature-icon {
  width: 72px;
  height: 72px;
}

.feature-heading {
  font-size: 36px;
  font-weight: 400;
  margin: 0;
  color: #547d5d;
}

.feature-description {
  font-size: 18px;
  opacity: 0.75;
  color: #000000;
  margin: 0;
  font-weight: 400;
  text-align: left;
}

@media (max-width: 768px) {
  .features-content_container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .features-description {
    font-size: 22px;
  }

  .features-block {
    padding: 80px 15px;
  }

  .features-block-sticker {
    justify-content: flex-end;
  }

  .features-block .stickers-wrapper {
    height: 200px;
    width: 160px;
    margin-right: 20px;
  }

  .features-block .sticker-1 .sticker-image {
    width: 85px;
    height: 85px;
  }

  .features-block .sticker-2 .sticker-image {
    width: 120px;
    height: auto;
  }

  .features-block .sticker-image {
    max-width: 150px;
  }

  .feature-heading {
    font-size: 25px;
  }
}
