body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
    background: #f9f9f9;
  }
  header {
    background: #222;
    color: #fff;
    padding: 20px;
    min-height: 120px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .logo {
    max-width: 120px;
    height: auto;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
  }
  header h1 {
    margin: 0;
    font-size: 1.8em;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    text-align: center;
    flex: 1;
  }
  header .location, header .contact {
    margin: 5px 0;
    font-size: 0.9em;
  }
  #gallery {
    padding: 20px;
  }
  #reviews {
    padding: 40px 20px;
    background: #f8f9fa;
    position: relative;
  }
  #reviews h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #333;
  }
  .reviews-carousel-container {
    position: relative;
    margin: 0 auto 30px auto;
    overflow: hidden;
  }
  .reviews-carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .reviews-carousel::-webkit-scrollbar {
    display: none;
  }
  .review-item {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    min-width: 300px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
  }
  .review-item:hover {
    transform: translateY(-5px);
  }
  .review-stars {
    color: #ffc107;
    font-size: 1.5em;
    margin-bottom: 15px;
  }
  .review-text {
    font-style: italic;
    margin-bottom: 15px;
    color: #555;
    line-height: 1.6;
    font-size: 1.1em;
  }
  .review-author {
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
  }
  .review-date {
    font-size: 0.9em;
    color: #888;
  }
  .carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #4285f4;
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5em;
    cursor: pointer;
    transition: background 0.3s ease;
    z-index: 10;
  }
  .carousel-btn:hover {
    background: #3367d6;
  }
  .prev-btn {
    left: 10px;
  }
  .next-btn {
    right: 10px;
  }
  .loading-reviews {
    text-align: center;
    padding: 40px;
    color: #666;
    font-style: italic;
  }
  .google-reviews-link {
    text-align: center;
  }
  .google-reviews-btn {
    display: inline-block;
    background: #4285f4;
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: background 0.3s ease;
  }
  .google-reviews-btn:hover {
    background: #3367d6;
  }
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 20px;
  }
  .service-item {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
  }
  .service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  }
  .service-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }
  .service-item h3 {
    margin: 20px 0 10px 0;
    color: #333;
    font-size: 1.3em;
  }
  .service-item p {
    padding: 0 20px 20px 20px;
    color: #666;
    line-height: 1.5;
  }
  #contact-info {
    padding: 20px;
    background: #fff;
    margin: 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  }
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: start;
  }
  .contact-left h2 {
    margin-top: 0;
  }
  .contact-details {
    margin-bottom: 20px;
  }
  .contact-details p {
    margin: 10px 0;
    font-size: 1.1em;
  }
  .contact-details address {
    font-style: normal;
    margin: 10px 0;
    font-size: 1.1em;
    line-height: 1.5;
  }
  .map-container iframe {
    width: 100%;
    height: 350px;
    border: 0;
    border-radius: 5px;
  }
  @media (max-width: 768px) {
    .contact-grid {
      grid-template-columns: 1fr;
    }
    .map-container iframe {
      height: 300px;
    }
  }
  footer {
    background: #222;
    color: #fff;
    text-align: center;
    padding: 10px;
  }
  