/* informace */
.info-card-dark {
  background: linear-gradient(to bottom right, #0d3a35, #0b5e55);
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #f1f1f1;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card-dark-2 {
  background: linear-gradient(to bottom right, #0b5e55, #0d3a35);
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #f1f1f1;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card-dark:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 25px rgba(0,0,0,0.6);
}
.info-card-dark h4 {
  color: #ffffff;
}
.info-card-dark ul li,
.info-card-dark ol li {
  margin-bottom: 0.6rem;
  line-height: 1.6;
  color: #e0e0e0;
}

.info-card-dark-2:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 25px rgba(0,0,0,0.6);
}
.info-card-dark-2 h4 {
  color: #ffffff;
}
.info-card-dark-2 ul li,
.info-card-dark-2 ol li {
  margin-bottom: 0.6rem;
  line-height: 1.6;
  color: #e0e0e0;
}

.kontakt-button {
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.kontakt-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(0,0,0,0.6);
}

.kontakt-button ul li,
.kontakt-button ol li {
  margin-bottom: 0.6rem;
  line-height: 1.6;
  color: #000000;
}

/* cenník */
.pricing-card-light {
  background: #ffffff;
  border-radius: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  color: #333;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.pricing-card-light:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(0,0,0,0.6);
}

.pricing-card-light h4 {
  color: #111;
}

.pricing-card-light h5 {
  color: #000;
}

.pricing-card-light ul {
  padding-left: 0;
}

.pricing-card-light ul li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
  color: #444;
}

