
.quote-section, .edem-quote-box {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  padding: 30px;
  margin: 20px auto;
  max-width: 900px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.edem-quote-box:hover {
  transform: scale(1.03);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  cursor: pointer;
}

.edem-quote-box blockquote {
  margin: 0;
  font-style: italic;
  color: #333;
}

.edem-quote-icon {
  font-size: 30px;
  margin-bottom: 10px;
}

.visible {
  animation: fadeInUp 0.7s ease forwards;
  opacity: 1;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.6);
}

.modal-content {
  background-color: #fff;
  margin: 10% auto;
  padding: 20px;
  border-radius: 10px;
  width: 80%;
  max-width: 600px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.3);
  animation: scaleIn 0.3s ease-in-out;
}

@keyframes scaleIn {
  from {transform: scale(0.8); opacity: 0;}
  to {transform: scale(1); opacity: 1;}
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover, .close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

.site-footer {
  background-color: #f8f8f8;
  text-align: center;
  padding: 20px 10px;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
  font-size: 14px;
  color: #555;
  margin-top: auto; /* Ключ к «прижатию» вниз */
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}