.header {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  text-align: center;
}

.header h1 {
  font-size: 2rem;
  font-weight: 700;
  margin: 0;
}

.header img {
  height: 50px;
  margin-left: 10px;
}

.gallery-wrapper {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: border-box;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  padding: 20px 0;
  justify-content: center;
}

.gallery-item {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 16px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.gallery-item:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
  width: 100%;
  height: 240px;
  object-fit: contain;
  border-radius: 8px;
  background-color: #f9f9f9;
  padding: 10px;
}

.gallery-item p {
  margin-top: 12px;
  font-size: 16px;
  font-weight: bold;
  color: #333;
  text-align: center;
}
