  html, body {
    overflow-x: hidden;
    margin: 0;
    padding: 0;
  }

  *, *::before, *::after {
    box-sizing: border-box;
  }

  body {
    font-family: 'Open Sans', sans-serif;
    scroll-behavior: smooth;
  }

  section, .container, .row {
    max-width: 100%;
  }

  .container,
  .container-lg,
  .container-xl {
    max-width: 1200px;
    margin: 0 auto;
  }

  @media (max-width: 767.98px) {
    .container, section, .row {
      padding-left: 1rem;
      padding-right: 1rem;
    }

    iframe, img {
      max-width: 100%;
      height: auto;
    }
  }

  #hero {
    background: url('../images/hero2.png') center/cover no-repeat;
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #f9f7f2;
    overflow: hidden;
  }

  #hero::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(255, 255, 255, 0.418));
    z-index: 1;
  }

  .hero-content {
    position: relative;
    animation: fadeInUp 1s ease-in-out;
    z-index: 2;
  }

  @keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .hero-logo {
    max-width: 250px;
    margin-bottom: 1rem;
  }

  .btn-primary {
    background-color: #a8b2a1;
    border: none;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    transition: background-color 0.3s ease;
  }

  .btn-primary:hover {
    background-color: #93a28c;
  }

  .fade-bottom {
    height: 40px;
    background: linear-gradient(to bottom, rgba(0,0,0,0), #f9f7f2);
    margin-top: -40px;
    z-index: 2;
    position: relative;
  }

  .fade-bottom-light {
    height: 40px;
    background: linear-gradient(to bottom, #f9f7f2, #ffffff);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
  }

  #services {
    background-color: #f9f7f2;
    padding: 3rem 0 8rem;
    position: relative;
  }

  #services .row.g-4 {
    justify-content: center;
  }

  .service-card {
    background-color: #ffffff;
    border: none;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 360px;
    max-height: 360px;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }

  .service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
  }

  .service-icon {
    font-size: 2.5rem;
    color: #8da392;
    margin-bottom: 1rem;
  }

  #contact {
    background: #ffffff;
    padding: 5rem 0;
    position: relative;
    z-index: 1;
  }

  #contact .contact-info {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    flex-direction: row;
    text-align: left;
  }

  #contact .contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #f1f1ed;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #8da392;
    flex-shrink: 0;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    transition: transform 0.2s;
  }

  #contact .contact-icon:hover {
    transform: scale(1.1);
  }

  .google-review {
    transition: box-shadow 0.3s ease;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }

  .google-review:hover {
    box-shadow: 0 6px 18px rgba(0,0,0,0.1);
  }

  footer {
    font-size: 0.9rem;
    background-color: #f9f7f2;
  }

  .section-title {
    font-weight: 700;
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
    color: #3a3a3a;
  }

  .section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: #a8b2a1;
    border-radius: 2px;
    margin: 0.5rem auto 0;
  }

  .cookie-banner {
  padding: 1rem 1.5rem;
  background: #f9f7f2;
  border-radius: 10px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.08);
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  max-width: 800px;
  margin: auto;
  z-index: 1000;
  
  }

  .cookie-banner a {
    color: #8da392;
    
  }

 .cookie-banner .btn {
  padding: 0.5rem 1.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 8px;
  min-width: 120px;
  text-align: center;
  margin-top: -20px;
}

.cookie-banner .btn-primary {
  background-color: #a8b2a1;
  color: white;
  border: none;
}

.cookie-banner .btn-primary:hover {
  background-color: #93a28c;
}

.cookie-banner .btn-secondary {
  background-color: #d5d5d5;
  color: #333;
  border: none;
}

.cookie-banner .btn-secondary:hover {
  background-color: #c4c4c4;
}

.visually-hidden-for-users {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
