.cultivation-back {
    background-image: url('/static/img/cultivation/cultivation-back.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-bottom: 80px;
    display: flex;
    justify-content: end;
    align-items: end;
    width: 100%;
    height: 100vh;
}

.cultivation-container {
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: start;
    gap: 24px;
}

.cultivation-text {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 10px;
}

.cultivation-text p:first-child {
    padding-inline: 10px;
    font-size: 32px;
    font-weight: 700;
    color: rgba(48, 48, 48, 1);
    background-color: #fff ;
}

.cultivation-text p:last-child {
    padding-inline: 10px;
    font-size: 80px;
    font-weight: 700;
    color: rgba(48, 48, 48, 1);
    background-color: #fff ;
}

/* section 1 */

.cultivation-s1 {
    padding-block: 160px 80px;
}

.image-container {
    width: 100%;
    overflow: hidden;
  }

  .image-container img {
    width: 100%;
    max-height: 516px;
    object-fit: cover;
    display: block;
  }

  .text-area {
    margin-top: 20px;
    display: flex;
    gap: 8px;
  }

  .text-left .title {
    font-size: 70px;
    font-weight: 400;
    color: rgba(48, 48, 48, 1); /* light gray like in the image */
  }

  .subtitle {
    display: flex;
    align-items: center;
    font-size: 18px;
    color: rgba(110, 167, 54, 1); /* bright green */
  }

  .subtitle::before {
    content: "◆";
    color: rgba(110, 167, 54, 1);
    margin-right: 6px;
    font-size: 18px;
  }

  .text-right .description {
    font-size: 16px;
    color: rgba(48, 48, 48, 1);
    line-height: 1.8;
    padding-top: 12px;
  }

  .cultivation-s1-container .text-area {
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 8px;
  }

  .cultivation-s1-container .text-area .text-right {
    width: 60%;
  }

  .cultivation-s1-container .text-area .text-left {
    width: 40%;
  }


  /* section 2 */
  .cultivation-s2 {
    padding-block: 80px;
  }

  .cultivation-s2-container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: start;
    gap: 60px;
  }

  .cultivation-s2-container .text-area .text-right {
    padding-top: 32px;
    width: 60%;
  }

  .cultivation-s2-container .text-area .text-left {
    width: 40%;
  }

  .cultivation-s2-items {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 60px;
    width: 100%;
  }

  .cultivation-s2-items-row {
    display: flex;
    justify-content: start;
    align-items: start;
    gap: 40px;
    width: 100%;
  }

  .cultivation-s2-item {
    width: 32%;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 24px;
  }

  .cultivation-s2-item img {
    width: 100%;
    height: 340px;
    object-fit: cover;

  }

  .cultivation-s2-item p {
    font-size: 24px;
    font-weight: 400;
  }

  /* section 3 */
  .cultivation-s3 {
    padding-block: 80px;
    width: 100%;
  }

  .cultivation-s3-container {
    width: 100%;
  }
  .card {
    display: flex;
    align-items: flex-start;
    border: 4px solid #cce6c6; /* light green border */
    padding: 40px;
    width: 100%;
    gap: 60px;
  }

  .left {
    flex: 0 0 250px;
    text-align: center;
    color: #9acb93; /* green text */
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 20px;
  }

  .left h2 {
    font-size: 22px;
    margin-bottom: 4px;
    font-weight: bold;
  }

  .left p {
    font-size: 12px;
    color: rgba(48, 48, 48, 1);
    margin-bottom: 10px;
  }

  .left img {
    width: 100%;
  }

  .right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    gap: 20px;
    height: 252px;
  }

  .right h3 {
    font-size: 20px;
    font-weight: bold;
    color: rgba(48, 48, 48, 1);
    margin-top: 0;
    margin-bottom: 15px;
  }

  .right p {
    font-size: 14px;
    color: rgba(48, 48, 48, 1);
    line-height: 1.6;
  }

  /* section 4 */
  .cultivation-s4 {
    padding-block: 80px 160px;
    width: 100%;
  }

  .cultivation-s4-container {   
    width: 100%;
  }

  .section {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding-block: 60px;
    width: 100%;
    margin: auto;
  }

  /* Left area */
  .left {
    flex: 0 0 250px;
  }

  .title {
    font-size: 60px;
    font-weight: 300;
    color: rgba(48, 48, 48, 1);
    margin: 0 0 20px;
  }

  .subtitle {
    display: flex;
    align-items: center;
    font-size: 18px;
    color: rgba(110, 167, 54, 1);
    margin-bottom: 20px;
  }

  .subtitle::before {
    content: "◆";
    color: rgba(110, 167, 54, 1);
    margin-right: 8px;
    font-size: 16px;
  }

  /* Right area */
  .right {
    flex: 1;
    max-width: 900px;
  }

  .description {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(48, 48, 48, 1);
    margin-bottom: 20px;
  }

  .note {
    font-size: 12px;
    color: rgba(48, 48, 48, 1);
    margin-bottom: 30px;
  }

  /* Button */
  .right .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(110, 167, 54, 1);
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
    justify-content: space-between;
    /* transition: background 0.3s ease; */
  }

  .btn:hover {
    /* background-color: #85d946; */
  }

  .btn-arrow {
    font-size: 18px;
    padding: 0;
  }