header img {
    width: 100%;
    height: auto;
    filter: grayscale(100%);
    display: block;
  }

  .overlap-section {
    position: relative;
    margin-top: -80px; /* adjust this to control how much it overlaps the section above */
    z-index: 2;
  }

  .overlap-section-container {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    gap: 4rem;
    margin-top: -7rem;
    margin-bottom: 3rem;
  }

  .overlap-section-container img {
    width: 35%;
    height: 600px;
    object-fit: cover;
  }

  .text-content {
    width: 50%;
    font-family: 'Cormorant Garamond', serif;
  }

  .text-content h2 {
    font-family: 'Bodoni Moda', serif;
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .text-content p {
    font-size: 1.1rem;
    line-height: 1.6;
  }

  /* ===== Packages Section ===== */
  .packages-section {
    background-color: #f4f1ed;
    padding: 3rem 1rem;
    border-top: 2px solid #d6d6d6; /* slightly darker top border */
    font-family: 'Cormorant Garamond', serif;
  }

  .packages-section h2 {
    font-family: 'Bodoni Moda', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
  }

  .packages-section h2::after
                            {
        content: '';
        display: block;
        width: 400px;
        border-bottom: 1px solid #d6d6d6;
        margin: 25px auto 0;
        margin-bottom: 3rem;
  }

  .packages {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10rem;
  }

  .package {
    padding: 1.5rem;
    border-radius: 10px;
    max-width: 450px;
    flex: 1 1 300px;
  }

  .package img {
    width: 100%;
    border-radius: 6px;
    margin-bottom: 1rem;
  }

  .package h3 {
    font-family: 'Bodoni Moda', serif;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
  }

  .package p {
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.5;
  }

  .package a {
    font-weight: bold;
    font-size: large;
    text-decoration: none;
    color: #333;
    border-bottom: 2px solid #333;
    transition: color 0.3s ease, border-color 0.3s ease;
  }

  .package h4 {
    font-size: large;
  }

  .package li {
    line-height: 2;
  }

  .package a:hover {
    color: #888;
    border-color: #888;
  }

  /* ===== Hero Image Section ===== */
.service-page-intro img {
    width: 100%;
    height: 600px;
    display: block;
    filter: grayscale(100%);
    object-fit: cover;
  }

  @media (max-width: 768px) {
    .overlap-section {
      flex-direction: column;
      margin-top: 0;
      padding: 1.5rem;
    }

    .overlap-section img {
      width: 100%;
      margin-bottom: 1rem;
    }

    .packages {
      flex-direction: column;
      align-items: center;
    }

  /* ===== Responsive Adjustments ===== */
@media (max-width: 768px) {
    .overlap-section {
      flex-direction: column;
      margin-top: 0;
      text-align: center;
    }

    .overlap-section img {
      margin: 0 0 1.5rem 0;
    }

    .packages {
      flex-direction: column;
      align-items: center;
    }
  }

  @media (max-width: 430px) {
    .overlap-section-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
      margin-top: -4rem;
      padding: 1rem;
    }

    .overlap-section-container img {
      width: 100%;
      height: auto;
      margin-bottom: 1rem;
    }

    .text-content {
      width: 100%;
    }

    .text-content h2 {
      font-size: 1.7rem;
    }

    .text-content p {
      font-size: 1rem;
    }

    .packages {
      flex-direction: column;
      gap: 3rem;
    }

    .package {
      max-width: 100%;
      padding: 1rem;
    }

    .packages-section h2 {
      font-size: 2rem;
    }

    .packages-section h2::after {
      width: 200px;
    }

    footer .footer-heading,
    footer .footer-subheading {
      text-align: center;
    }

    footer ul.footer-list {
      display: flex;
      justify-content: center;
      gap: 1.5rem;
      padding: 0;
    }

    footer p {
      text-align: center;
    }
  }
  }


  
