body {
  font-family: "Arial", sans-serif;
  box-sizing: border-box;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
  background-color: #f0f0f0;
  color: #333;
}

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

.home {
  background-color: #13af66;
  color: white;
  padding: 60px 0;
  text-align: center;
}

.home h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.home p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto;
}

.usluge {
  padding: 60px 0;
}

.section {
  background-color: white;
  border-radius: 10px;
  padding: 40px;
  margin-bottom: 40px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.section h2 {
  color: #13af66;
  font-size: 2rem;
  margin-bottom: 20px;
  text-align: center;
}

.section p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

.image-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.image-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.image-item:hover {
  transform: scale(1.05);
}

.image-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(19, 175, 102, 0.8);
  color: white;
  padding: 10px;
  font-size: 0.9rem;
  text-align: center;
}
.museum-section .image-gallery {
  max-width: 600px;
  margin: 0 auto;
}

.museum-image img {
  max-height: 400px;
  width: auto;
  display: block;
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  .home h1 {
    font-size: 2rem;
  }

  .home p {
    font-size: 1rem;
  }

  .section h2 {
    font-size: 1.5rem;
  }

  .section p {
    font-size: 1rem;
  }

  .image-gallery {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
  .museum-section .image-gallery {
    max-width: 100%;
  }

  .museum-image img {
    max-height: 300px;
  }
}
