.container-split {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Split layout styles */

.split-layout {
  display: flex;
  flex-direction: column;
  background-color: white;
  overflow: hidden;
}

.section-split {
  flex: 1;
  padding: 2rem;
}

.text-right {
  text-align: right;
}

.text-left {
  text-align: left;
}

.section-split h2 {
  font-size: 2.813rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.section-split p {
  color: var(--muted-foreground);
  margin-bottom: 2rem;
}

.divider {
  height: 3px;
  width: 100%;
  background-color: var(--border);
  margin-left: 50px;
  margin-right: 50px;
}

.button-container {
  display: flex;
}

.button-container.right {
  justify-content: flex-end;
}

/* WhatsApp button styles */
.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--whatsapp-light);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.whatsapp-btn:hover {
  background-color: var(--whatsapp-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.whatsapp-btn i {
  font-size: 1.25rem;
}

/* Responsive styles */
@media (min-width: 768px) {
  .split-layout {
    flex-direction: row;
  }

  .divider {
    width: 1px;
    height: auto;
  }

  .separator {
    display: block;
  }

  .section-split {
    padding: 1.5rem;
  }
  .splitm {
    padding-bottom: 55px;
  }
}

/* Responsive styles */
@media (max-width: 480px) {
  .text-right {
    text-align: left;
  }
  .button-container.right {
    justify-content: left;
  }
}
