body {
  font-family: "Trebuchet MS", sans-serif;
  -webkit-font-smoothing: antialiased;
  letter-spacing: 1px;
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
}

.termsContainer {
  width: auto;
  margin: 0 auto;
  padding: 0 30px;
  max-width: 1200px;
  position: relative;
}

h1 {
  margin: 30px 0 20px;
  width: 100%;
  font-size: 21px;
  font-weight: 600;
}

p {
  font-size: 16px;
}

a {
  color: #25a569;
  font-weight: 600;
  cursor: pointer;
}

.uppercase {
  text-transform: uppercase;
}

.align--left {
  margin-left: 20px;
}

@media (min-width: 576px) {
  h1 {
    margin: 40px 0 20px;
  }
}

.button {
  position: fixed; /* Position the button absolutely */
  bottom: 20px; /* Position 20px from the bottom */
  right: 20px; /* Position 20px from the right */
  width: 50px;
  height: 50px;
  border: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  cursor: pointer;
  transition-duration: 0.3s;
  overflow: hidden;
}

.svgIcon {
  width: 32px;
  transition: width 0.3s ease;
}

.button:hover .svgIcon {
  width: 24px;
  animation: pulse-hover 1.5s infinite;
}

/* Pulse animation for normal state */
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

/* Pulse animation for hover state */
@keyframes pulse-hover {
  0% {
    transform: scale(1.2);
  }
  50% {
    transform: scale(1.4);
  }
  100% {
    transform: scale(1.2);
  }
}
.svgIcon path {
  fill: rgb(0, 0, 0);
}

.bold {
  font-weight: 600;
}