* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  background-color: #f4f4f4;
  color: #333;

  background: linear-gradient(to right, #FF69B4, #C71585); /* Updated */
}

.hero {
  background: linear-gradient(to right, #FF69B4, #C71585); /* Updated */
  color: white;
  padding: 100px 20px;
  text-align: center;
}

.hero h1 {
  font-size: 3em;
  margin-bottom: 0.5em;
}

.hero p {
  font-size: 1.2em;
  margin-bottom: 1.5em;
}

.btn {
  background: white;
  color: #FF69B4; /* Updated */
  padding: 0.75em 1.5em;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
}

.about {
  padding: 40px 20px;
  text-align: center;
  background-color: white;
}

.about h2 {
  margin-bottom: 1em;
  color: #FF69B4; /* Updated */
}

.gallery {
  padding: 40px 20px;
  background-color: #e9f1fb;
  text-align: center;
}

.gallery h2 {
  margin-bottom: 1.5em;
  color: #C71585; /* Updated */
}

.gallery-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.gallery-item {
  width: 300px;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
}

.gallery-item p {
  padding: 10px;
  font-size: 0.95em;
}

.footer {
  text-align: center;
  padding: 20px;
  background-color: #C71585; /* Updated */
  color: white;
  font-size: 0.9em;
  position: absolute;
  bottom: 0;
  width: 100%;
}
