:root {
  --purple: #460465;
  --orange: #ff5450;
  --pure: #e8e8e8;
  --light: #f4f4f4;
  --gray: #73767d;
  --lightgray: #acb0ba;
  --cream: #fff8e7;
  --purper: #460465;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: var(--gray);
  background-color: var(--light);
  position: relative;
}
a {
  text-decoration: none;
  color: black !important;
}

.wave-container {
  position: relative;
  height: 300px;
  overflow: hidden;
  text-align: center;
}

.wave {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(to right, var(--purper), var(--orange));
  border-radius: 0 0 50% 50% / 0 0 100% 100%;
  transform: scaleX(1.5);
}

h1 {
  position: relative;
  z-index: 1;
  color: var(--pure);
  font-size: 3.5rem;
  padding-top: 100px;
  font-weight: 600;
}

.effective-date {
  text-align: center;
  font-style: italic;
  color: var(--gray);
  margin-bottom: 30px;
}
/*  */
.whatsapp-button {
  position: fixed;
  top: 13px;
  left: 21px;
  z-index: 99;
  background: linear-gradient(to right, var(--purper), var(--orange));
  border-radius: 20px;
  color: var(--pure) !important;
  text-decoration: none;
  width: 50px;
  height: 50px;
  font-size: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  -webkit-box-shadow: 0px 0px 25px -6px rgba(0, 0, 0, 1);
  -moz-box-shadow: 0px 0px 25px -6px rgba(0, 0, 0, 1);
  box-shadow: 0px 0px 25px -6px rgba(0, 0, 0, 1);
  animation: effect 5s infinite ease-in;
}
.social-buttons {
  position: fixed;
  left: 15px;
  bottom: -10%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 100; /* Update: Added z-index */
  font-size: 24px;
}

.social-button {
  -webkit-box-shadow: 0px 0px 25px -6px rgba(0, 0, 0, 1);
  -moz-box-shadow: 0px 0px 25px -6px rgba(0, 0, 0, 1);
  box-shadow: 0px 0px 25px -6px rgba(0, 0, 0, 1);
  animation: effect 5s infinite ease-in;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  z-index: 99;
  background: linear-gradient(to right, var(--purper), var(--orange));
  border-radius: 20px;
  color: var(--pure) !important;
  text-decoration: none;
}

.social-button:hover {
  transform: scale(1.1);
}

.content {
  max-width: 1200px;
  width: 100%; /* Update: Added width */
  margin: 0 auto;
  padding: 40px 80px;
}

.intro {
  font-size: 1.1em;
  color: var(--gray);
  margin-bottom: 40px;
}

.terms-section {
  margin-bottom: 30px;
}

h2 {
  color: #000000;
  font-size: 1.5em;
  margin-bottom: 20px;
  font-weight: 600;
}

.subsection {
  margin-left: 25px;
  margin-bottom: 20px;
}

h3 {
  color: #000000;
  font-size: 1.2em;
  margin-bottom: 15px;
  font-weight: 500;
}

.clause {
  margin-left: 25px;
  margin-bottom: 20px;
}

.clause p {
  margin-bottom: 15px;
}

.clause ul {
  margin-left: 20px;
  margin-bottom: 15px;
}

.clause li {
  margin-bottom: 10px;
}

.contact-info {
  background-color: var(--light);
  padding: 20px;
  border-radius: 8px;
  margin-top: 15px;
}

.contact-info p {
  margin-bottom: 10px;
}

.contact-info a {
  color: var(--purple);
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .wave-container {
    height: 200px;
  }

  h1 {
    font-size: 2.5rem;
    padding-top: 60px;
  }

  .content {
    padding: 20px;
  }

  .social-buttons {
    position: fixed;
    left: 10px;
    top: auto;
    bottom: 20px;
    transform: none;
    flex-direction: row;
  }

  .clause,
  .subsection {
    margin-left: 15px;
  }
}

@media (max-width: 1024px) {
  .content {
    padding: 30px 40px;
  }
}

@media (max-width: 768px) {
  .wave-container {
    height: 200px;
  }

  h1 {
    font-size: 2.5rem;
    padding-top: 60px;
  }

  .content {
    padding: 20px;
  }

  .social-buttons {
    position: fixed;
    left: 10px;
    top: auto;
    bottom: 20px;
    transform: none;
    flex-direction: row;
  }

  .clause,
  .subsection {
    margin-left: 15px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2rem;
    padding-top: 50px;
  }

  h2 {
    font-size: 1.3em;
  }

  h3 {
    font-size: 1.1em;
  }

  .clause,
  .subsection {
    margin-left: 10px;
  }

  .social-buttons {
    left: 50%;
    transform: translateX(-50%);
  }
}
