body {
  font-family: 'Montserrat', sans-serif;
  margin: 0;
  color: #222;
  background: #fff;
}

main {
  max-width: 960px;
  margin: 0 auto;
  padding: 40px 20px;
}

.costumes-hero {
  text-align: center;
  margin-bottom: 30px;
}

.costumes-hero h1 {
  font-size: 2em;
  margin-bottom: 10px;
}

.costumes-hero p {
  font-size: 1em;
  line-height: 1.5;
  color: #444;
}

.costumes-info {
  text-align: center;
  margin-bottom: 30px;
  font-size: 1em;
  line-height: 1.6;
  color: #444;
}

.costumes-section {
  margin: 0 auto 30px auto;
  max-width: 910px;
}


.costumes-section h2 {
  font-size: 1.4em;
  margin-bottom: 10px;
  color: #111;
}

.costumes-section ul {
  list-style: circle;
  padding-left: 20px;
  margin: 0;
}

.costumes-section li {
  margin-bottom: 10px;
  line-height: 1.5;
  color: #444;
}

.costumes-contact {
  text-align: center;
  margin-top: 40px;
}

.costumes-contact .phone {
  font-size: 1.2em;
  font-weight: 600;
  margin: 15px 0;
  color: #111;
}

.examples-gallery {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.examples-gallery img {
  width: 200px;
  height: auto;
  border-radius: 5px;
  box-shadow: 0 0 5px rgba(0,0,0,0.2);
}


@media (max-width: 768px) {
  main {
    padding-top: 10px;
  }
  .costumes-hero h1 {
    font-size: 1.6em;
  }
  .costumes-hero p {
    font-size: 0.95em;
  }
  .costumes-info, .costumes-section p, .costumes-section li {
    font-size: 0.95em;
  }
  .costumes-contact .phone {
    font-size: 1em;
  }
}

