#opinie {
  background: linear-gradient(180deg, #fff, #f7f9fc);
  padding: 40px 20px;
  border-radius: 10px; 
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  margin-bottom: 30px;
}

#opinie h2 {
  color: #34495e;
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.map-description {
  text-align: center;
  color: #555;
  font-size: 1rem;
  margin-bottom: 15px;
}

#google-reviews {
  margin-bottom: 30px;
}

.review {
  background-color: #f9f9f9;
  border-left: 4px solid #0055aa;
  margin-bottom: 15px;
  padding: 12px 16px;
  border-radius: 6px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

.review strong {
  color: #0055aa;
  display: block;
  margin-bottom: 5px;
}

.opinie-frame {
  width: 100%;
  height: 400px;
  border: none;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  margin-top: 20px;
  transition: transform 0.3s ease; 
}

.opinie-frame:hover {
  transform: scale(1.02);
}

.map-container {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.map-frame {
  width: 100%;
  height: 400px;
  border: none;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease; 
}

.map-frame:hover {
  transform: scale(1.05);
}

@keyframes fadeIn {
  0% {
      opacity: 0;
      transform: translateY(30px);
  }
  100% {
      opacity: 1;
      transform: translateY(0);
  }
}

#opinie {
  animation: fadeIn 1s ease-in-out;
}