.ui-button {
  background-color: white;
  color: #2D2D2D;
  border-radius: 10em;
  font-size: 17px;
  font-weight: 600;
  padding: 1em 2em;
  cursor: pointer;
  transition: all 0.3s linear;
  border: 2px solid #2D2D2D;
  box-shadow: 2px 5px 0 0 #2D2D2D;
}

.button-container {
  text-align: center;
  margin: 3rem 0;
  
}
.ui-button:hover {
  transform: translateY(0px) translateX(0px);
  box-shadow: 2px 5px 0 0 #2D2D2D;
}

.ui-button:active {
  transform: translateY(5px) translateX(2px);
  box-shadow: 0 0 0 0 #2D2D2D;
}

/* From Uiverse.io by alexruix */ 
/*Neo Brutalism pricing card*/
.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  padding: 2rem 1rem;
}

.card {
  flex: 1 1 300px;
  max-width: 300px;
  background: #00ffa0;
  padding: 2rem;
  border-radius: 1rem;
  border: 0.5vmin solid #2D2D2D;
  box-shadow: 0.4rem 0.4rem #2D2D2D;
  overflow: hidden;
  color: #2D2D2D;
  text-align: left;
  box-sizing: border-box;
}

/* ...rest of the CSS here, without <style> tags */

.pricing-note {
  opacity: 0.8;
  font-size: 1.2rem;
  line-height: 1.25;
  font-weight: 700;
}

/*Checklist*/
.check-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.check-list-item {
  display: flex;
  align-items: center;
  gap: 4px;
}


/* Make sure the footer touches the edges */
.custom-footer {
  background-color: #2D2D2D;
  color: white;
  width: 100vw;           
  position: center;
  height: 300px;
  display: 100%;
  align-items: center;
  overflow: hidden;
}

.full-width-footer {
  background-color: #2D2D2D;
  height: 300px;
  width: 100vw;
  padding: 0;
  margin: 0;
}

.footer-inner {
  max-width: 100%;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  box-sizing: border-box;
  color: white;
  flex-wrap: wrap;
}

.footer-left img {
  max-height: 60px;
}

.footer-right {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-right a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}

.footer-right a:hover {
  color: #bbb;
}

@media screen and (max-width: 768px) {
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 1rem;
  }
}