.center-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  text-align: center;
}
.boldtext {
  font-size: 42px;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
}
.text2 {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
}

.btn button {
  width: 100px;
  padding: 8px 0;
  background-color: rgba(14, 122, 129, 1);
  color: white;
  border: none;
  border-radius: 4px;
  text-align: center;
}
.btn button:hover {
  background-color: #0069d2;
}
.pet-btns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}
.pet-btnss {
  background-color: white;
  border: 1px solid black;
  padding-left: 70px;
  padding-right: 70px;
  padding-top: 20px;
  padding-bottom: 20px;
  border-radius: 10px;
  text-align: center;
}
.pet-btnss:hover {
  background-color: #f8f8f8;
  transform: translateY(-1px);
  border-radius: 30px;
}
.modal-checklist {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}
.modal-checklist-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.modal-checklist-item input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: rgba(14, 122, 129, 1);
}
.modal-description {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #e5e7eb;
}
.modal-image-container {
  margin: 20px;
  width: 400px;
  height: 200px;
  margin-bottom: 20px;
}
.modal-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background: white;
  width: 100%;
  padding: 20px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  z-index: 100;
  flex-direction: column;
  gap: 15px;
}
.mobile-menu.active {
  display: flex;
}
.menu-toggle {
  display: none;
}
@media (max-width: 1024px) {
  .pet-btns {
    gap: 10px;
  }
  .pet-btnss {
    padding: 15px;
    min-width: 100px;
  }
  section.mx-20 {
    margin-left: 1rem;
    margin-right: 1rem;
  }
  .flex.justify-between.bg-black {
    flex-direction: column;
    gap: 2rem;
    padding: 2rem;
  }
  .grid.grid-cols-4 {
    grid-template-columns: 1fr;
  }
  #pet-container {
    grid-column: span 1;
  }
  h3.px-\[450px\] {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media (max-width: 768px) {
  .boldtext {
    font-size: 32px;
  }
  .menu-toggle {
    display: block;
  }
  .nav-links {
    display: none;
  }
  .mobile-menu.active {
    display: flex;
  }
  .modal-image-container {
    height: 150px;
  }
}
@media (max-width: 480px) {
  .pet-btnss {
    padding: 10px;
    min-width: 80px;
  }
  .boldtext {
    font-size: 24px;
  }
  .modal-image-container {
    height: 120px;
  }
}
