* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  .site-header {
    text-align: center;
    padding: 10px;
    background: #fff5f8;
  }
  
  .logo {
    height: 80px;
    width: auto;
  }
  body {
    font-family: 'Segoe UI', sans-serif;
    line-height: 1.6;
    background: #fff;
    color: #333;
  }
  
  .hero {
    background: #fce4ec;
    text-align: center;
    padding: 60px 20px;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero .btn {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background: #d81b60;
    color: white;
    text-decoration: none;
    border-radius: 5px;
  }
  
  section {
    padding: 40px 20px;
    max-width: 1100px;
    margin: auto;
  }
  
  .services .service-grid, 
  .gallery .gallery-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .service, .gallery-grid img {
    flex: 1 1 200px;
    text-align: center;
  }
  
  .service img, .gallery-grid img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
  }
  
  .testimonials .testimonial {
    margin-bottom: 20px;
    text-align: center;
  }
  
  .contact form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 500px;
    margin: 0 auto 20px;
  }
  
  .contact input, .contact textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
  }
  
  .contact button {
    padding: 10px;
    background: #d81b60;
    color: white;
    border: none;
    border-radius: 5px;
  }
  .location {
    padding: 40px 20px;
    text-align: center;
  }
  
  .map-container {
    margin-top: 20px;
    border-radius: 10px;
    overflow: hidden;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
  }