.join-us-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.2rem 0.5rem;
  background-color: #ffffff;
}

.join-us-container {
  background-color: #5b1a68; /* deep purple */
  color: white;
  border-radius: 0 2rem;
  padding: 1rem;
  text-align: center;
  max-width: 80rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.join-us-container h2 {
  font-size: 0.909rem;
  font-weight: 400;
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .join-us-container h2 {
    font-size: 0.83rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
  }
}

.join-us-container p {
  font-size: 0.727rem;
  line-height: 1.5;
  margin-bottom: 1rem;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .join-us-container p {
    font-size: 0.528rem;
  }
}

.join-us-button {
  padding: 0 1.2rem;
  height: 2.18rem;
  font-size: 0.727rem;
  background-color: white;
  color: #5f1c6b;
  border: none;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}
@media screen and (min-width: 768px) {
  .join-us-button {
    height: 1.2rem;
    font-size: .377rem;
    padding: 0 .5rem;
  }

}

.join-us-button:hover {
  background-color: #e4d3ea;
}
