/*  */

.priceListTitle {
  font-size: xx-large;
  padding-bottom: 1rem;
}

.pricelist-full {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  align-items: center;
  padding-top: 10rem;
  padding-bottom: 5rem;
}

.grid-container {
  display: grid;
  justify-content: center;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 20px;
  max-width: 100%;
  padding: 20px 9%;
}

.grid-item {
  background-color: var(--bg-primary);
  border: 3px solid var(--border-color-secondary);
  border-radius: 10px;
  padding: 20px;
  box-shadow: 5px 10px 10px var(--border-color-secondary);
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.grid-item:hover {
  border: 2px solid var(--border-color-secondary);
  transform: translateY(-5px);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
  background-color: var(--card-hover);
}

.icon {
  font-size: 50px;
  color: var(--icon-color);
  margin-bottom: 10px;
}

.icon:hover {
  transform: translateY(-5px);
  transition: transform 0.3s, box-shadow 0.3s;
}

.grid-item .title {
  font-size: xx-large;
  font-weight: bold;
  margin: 10px 0;
}

.price {
  font-size: xx-large;
  color: var(--text-primary);

  margin: 5px 0;
}

.features {
  list-style: none;
  padding-top: 1rem;
  margin: 10px 0;
}

.features li {
  font-size: 14px;
  margin: 5px 0;
  color: var(--text-primary);
  font-size: larger;
  padding-top: 1rem;
}

.cta-button {
  display: inline-block;
  margin: 3rem 0;
  padding: 20px 25px;
  background-color: var(--accent-color);
  color: #fff;
  text-decoration: none;
  font-size: large;
  font-weight: bold;
  border-radius: 5px;
  transition: background-color 0.3s;
  box-shadow: 5px 5px 10px var(--accent-hover);
}

.cta-button:hover {
  background-color: var(--accent-hover);
  box-shadow: 0px 0px 10px var(--accent-hover);
}

.other-services {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  align-items: center;
  margin-top: 4rem;

  border: 3px solid var(--border-color-secondary);
  border-radius: 10px;
  gap: 20px;
  max-width: 100%;
  padding: 3rem 10% 3rem 10%;
  background-color: var(--card-hover);
}

.other-services h2 {
  font-size: xx-large;
  padding-bottom: 1rem;
}
.other-services p {
  font-size: larger;
}

.other-services a {
  font-size: larger;
  color: var(--text-primary);
}

.other-services a:hover {
  color: var(--accent-hover);
}

@media (max-width: 768px) {
  .grid-container {
    display: flex;
    flex-direction: column;
  }
  .pricelist-full {
    padding-top: 10rem;
  }
}
