/* Basic Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
}

/* Gallery Styles */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 20px;
}

.gallery-item {
  border: 1px solid #ddd;
  border-radius: 5px;
  overflow: hidden;
  background-color: #f9f9f9;
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
}

/* Name and Arrow Styles */
.name {
  padding: 10px;
  background-color: #eee;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
}

.arrow {
  transition: transform 0.3s ease;
}

/* Description Styles */
.description {
  display: none;
  padding: 10px;
  line-height: 1.6;
  width: 100%;
}

.description ul {
  list-style-type: disc;
  margin-left: 20px;
}

.description.visible {
  display: block;
}

/* Responsive Styles */
@media (max-width: 1050px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1050) {
  .gallery {
    grid-template-columns: 1fr;
  }
}
