body {
  font-family: 'Raleway', sans-serif;
  margin: 0;
  background: #f8f8f8;
}

.container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.navbar {
  position: sticky;
  top: 0;
  background: white;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.nav-links a {
  margin: 0 10px;
  text-decoration: none;
  font-weight: 600;
}

.hero {
  background: url('https://placekitten.com/1200/400') center/cover no-repeat;
  color: white;
  text-align: center;
  padding: 100px 20px;
}

.cta-button {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  background-color: #ff69b4;
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.about-section, .gallery-section, .testimonials-section {
  background: white;
  padding: 40px 20px;
  flex: 1 1 100%;
}

.photo-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.photo-grid img {
  flex-basis: 30%;
  flex-grow: 1;
  max-width: 100%;
  border-radius: 8px;
}

.testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-around;
}

.testimonial {
  flex: 1 1 45%;
  background: #eee;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.sidebar {
  flex: 1 1 25%;
  background: #fff3e6;
  padding: 20px;
  display: none; /* Hidden on small screens */
}

footer {
  text-align: center;
  padding: 20px;
  background: #333;
  color: white;
}

.social-icons img {
  width: 30px;
  margin: 0 10px;
}

/* Responsive Styles */
@media (min-width: 768px) {
  .sidebar {
    display: block;
  }

  .testimonials {
    flex-direction: row;
  }
}

@media (max-width: 767px) {
  .photo-grid {
    flex-direction: column;
  }

  .testimonial {
    flex: 1 1 100%;
  }
}
