.features {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 20px 0;
  font-family: "Poppins", sans-serif;
}

/* TODO: make table responsive for mobile */

.features__cell {
  padding: 15px;
  text-align: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.features__cell--bold {
  font-weight: bold;
}

.features__cell--shaded {
  background: var(--secondary-mono);
  color: white;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.features__cell--large {
  font-size: 1.25rem;
  padding: 20px;
  background: var(--primary);
  color: white;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.features__cell--center {
  background: #ffffff;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
}

.features__cell--center:hover {
  background: #f0f8ff;
}

tbody tr:nth-child(even) {
  background: #fafafa;
}

tbody tr:last-child td {
  border-bottom: none;
}

/* Responsive values for mobile */



.features__tick::after {
  content: "\2714";
  font-size: 1.5em;
  color: green;
}

.wavy-border {
  border: 3px solid #24bcf8;
  /* Solid border color */
  padding: 1em;
  /* Add padding for space around the text */
  border-radius: 10px;
  /* Optional: Round the corners of the border */
  position: relative;
  /* Position relative for pseudo-element */
}

.wavy-border::before {
  content: '';
  position: absolute;
  top: -5px;
  /* Adjust the top position to create the wave effect */
  left: -5px;
  /* Adjust the left position to create the wave effect */
  right: -5px;
  /* Adjust the right position to create the wave effect */
  bottom: -5px;
  /* Adjust the bottom position to create the wave effect */
  border: 2px solid #24bcf8;
  /* Solid border color */
  border-radius: 10px;
  /* Optional: Round the corners of the border */
  border-image: url('img/paw-bottom-left.png') 10 10 round;
  /* Adjust the link to your wavy border image */
}

@font-face {
  font-family: countryside;
  src: url("Countryside.ttf")
}

.pricing-title {
  font-family: countryside, sans-serif;
  /* Apply countryside font */
  color: purple;
  font-weight: bold;
  font-size: larger;
}

h1.text-center {
  color: purple;
  font-weight: bold;
  font-size: larger;
  font-family: 'countryside', sans-serif;
}

.extra-services {
  display: flex;
  justify-content: center;
}

.paragraph {
  flex: 1;
  background-color: var(--secondary);
  /* Matched background color */
  padding: 20px;
  margin-right: 10px;
  border-radius: 20px;
  /* Rounded corners */
}

h2.title {
  padding-block: 20px;
  text-align: center;
}

.paragraph ul {
  background-color: white;
  border-radius: 20px;
  padding-top: 10px;
  padding-inline: 40px;
  padding: 10px 40px 10px 40px;
}

@media (max-width: 760px) {
  .features {
    overflow-x: auto;
  }

  .features__cell {
    font-size: 0.9rem;
    padding: 10px;
  }

  .features__cell--large {
    font-size: 1rem;
  }

  .row>* {
    padding-left: 0px;
    padding-right: 0px;
  }

  .extra-services {
    display: block;
  }

  .container {
    padding-right: 0px;
  }

  .paragraph ul {}
}
