
  .split-container {
    display: flex;
    justify-content: center; 
    align-items: center;
  }
  
  .split-box {
    flex: 1;
    position: relative;
    overflow: hidden;
  }
  
  .split-box img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
  }

  .text-section {
    font-family: "Poiret One", sans-serif;
    background-color: #FDF7EF;
    text-align: center;
    line-height: 2.5;
  }
  .text-section h2 {
    font-size: 1.5rem;
    margin-bottom: 40px;
    margin-top: 40px;
    font-weight: lighter;
  }
  .text-section p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0 100px 70px;
  }

  /* Tablet */
@media (max-width: 768px) {
    .split-container {
      flex-direction: column;
    }
  
    .split-box:nth-child(2) {
      display: none;
    }
  
    .split-box img {
      height: auto;
      max-height: 400px;
    }

    .text-section p {
      margin: 0 50px;
      padding-bottom: 50px;
      text-align: left;
    }
  }
  
  /* Mobil */
  @media (max-width: 420px) {
    .text-section p {
      margin: 0 20px;
      font-size: 1rem;
    }
  
    .text-section h2 {
      font-size: 1.3rem;
      margin: 30px 0;
    }
  }