/* === Подвал === */
footer {
  background: #111;
  color: #ccc;
  text-align: center;
  padding: 40px 20px;
  font-size: 14px;
  border-top: 1px solid #222;
}

footer a {
  color: #c084fc;
  text-decoration: none;
  transition: color 0.3s;
}

footer a:hover {
  color: #a855f7;
}
/* === Кнопка "Записаться" внизу === */
.cta-bottom {
  display: inline-block;
  margin-top: 30px;
 background: transparent;
  color: #c084fc;
  border: 2px solid #c084fc;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(192, 132, 252, 0.3);
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.cta-bottom:hover {
  background-color: #a855f7;
  transform: translateY(-2px);
  color: #000;
}

.cta-bottom:active {
  transform: scale(0.98);
}
