.wps-main-two-columns > div {
  display: flex;
}

.wps-section-app,
.wps-section-whatsapp {
  flex: 1;
}
.wps-section,
  .wps-join-whatsapp-apps {
    font-family: 'Inter', sans-serif;
  }

  .wps-main-two-columns {
    display: flex;
    flex-direction: row-reverse;
  }

  /* Common button styles */
  .wps-btn {
    padding: 10px 20px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
  }

  .wps-btn-orange {
    background-color: #F26522;
    color: #ffffff;
    border: 2px solid #F26522;
  }

  .wps-btn-orange:hover {
    color: white !important;
    background-color: #d9531e;
  }

  .wps-btn-green {
    background-color: #6ABF4B;
    color: #ffffff;
    border: 2px solid #6ABF4B;
  }

  .wps-btn-green:hover {
    background-color: transparent;
    color: #6ABF4B;
  }

  .wps-left-img-column,
  .wps-right-img-column {
    display: flex;
    justify-content: center;
    align-items: flex-end;
  }

  .wps-img {
    width: 85%;
  }

  /* Headings */
  .wps-heading-app,
  .wps-heading-whatsapp {
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
  }

  .wps-heading-app {
    font-size: 28px;
    margin-bottom: 10px;
  }

  .wps-heading-whatsapp {
    font-size: 28px;
  }

  .wps-subtitle-app {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 15px;
  }

  .wps-subtitle-whatsapp {
    font-size: 15px;
    color: #cfd2d9;
    margin-bottom: 15px;
  }

  /* Section backgrounds */
  .wps-section-app {
    display: flex;
    flex-direction: row;
    background-color: #6ABF4B;
    color: #ffffff;
  }

  .wps-section-whatsapp {
    display: flex;
    flex-direction: row;
    background-color: #1e2128;
    color: #ffffff;
  }

  /* Responsive overrides */
  @media (max-width: 767.98px) {
    .wps-heading-app,
    .wps-heading-whatsapp {
      font-size: 1.5rem;
    }

    .wps-subtitle-app,
    .wps-subtitle-whatsapp {
      font-size: 1rem;
    }

    .wps-btn {
      width: 100%;
      text-align: center;
    }
  }

  @media (max-width: 530px) {

    .wps-section-app,
    .wps-section-whatsapp {
      display: flex;
      flex-direction: column;
    }

  }