
    .navbar {
      /* background: #2c3e50; */
      background:  #b71c1c;
      padding: 1rem 2rem;
      position: sticky;
      top: 0;
      z-index: 1000;
    }

    .navbar ul {
      margin: 0;
      padding: 0;
      display: flex;
      justify-content: center;
      align-items: center;
      list-style: none;
      gap: 2rem;
    }

    .navbar li {
      display: flex;
      align-items: center;
    }

    .navbar a {
      color: white;
      text-decoration: none;
      font-weight: bold;
      font-size: 1rem;
      transition: color 0.3s ease;
    }

    .navbar a:hover {
      color: #ffd700;
    }
    .navbar a.active {
      border-bottom: 3px solid #ffd700;
      color: #ffd700;
    }

    body {
      background-image: url('../../image/city1.jpeg');
      background-size: cover;
      background-position: center;
      background-attachment: fixed;
      font-family: 'Helvetica Neue', sans-serif;
      margin: 0;
      padding: 0;
      color: #333;
    }
    .contact-section {
      max-width: 600px;
      margin: 80px auto;
      background: white;
      padding: 40px;
      box-shadow: 0 4px 16px rgba(0,0,0,0.1);
      border-radius: 8px;
      min-height: 60vh;
    }
    .contact-section h2 {
      text-align: center;
      margin-bottom: 24px;
      font-size: 2rem;
      color: #03712b;
    }
    .contact-section p {
      font-size: 1.2rem;
      text-align: center;
      line-height: 1.6;
    }
    .contact-email {
      display: block;
      margin: 20px auto;
      padding: 12px 0;
      font-size: 1rem;
      width: 100%;
      max-width: 360px;
      color: white !important;
      background-color: #03712b;
      text-align: center;
      text-decoration: none;
      border-radius: 4px;
      transition: background-color 0.3s ease;
    }
    .contact-email:hover {
      background-color: #025a21;
    }
    html, body {
        margin: 0;
        padding: 0;
        /* height: 100%; */
    }

    

    footer {
      text-align: left;
      padding: 0rem 0rem 0rem 0rem;
      background: #bdc3c7;
      font-size: 0.9rem;
      margin: 0;
    }

    @media (max-width: 768px) {
      .navbar ul {
        flex-direction: column;
        gap: 1rem;
      }

      .contact-section {
        margin: 40px 1rem;
        padding: 20px;
      }

      .contact-section h2 {
        font-size: 1.5rem;
      }

      .contact-section p {
        font-size: 1rem;
      }


      footer div[style*="max-width: 1000px"] {
        padding: 1rem;
      }

      footer div[style*="display: flex"] {
        flex-direction: column;
        align-items: flex-start;
      }
    }
  

    .hamburger {
      width: 2rem;
      height: 1.5rem;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      cursor: pointer;
      position: absolute;
      top: 1rem;
      right: 1.5rem;
      z-index: 1001;
    }
    .hamburger span {
      height: 3px;
      background: white;
      border-radius: 2px;
      transition: all 0.4s ease;
      position: relative;
      display: block;
    }
    .hamburger.opened span:nth-child(1),
    .hamburger.opened span:nth-child(3) {
      transform-origin: center;
      position: absolute;
      top: 50%;
      left: 0;
      right: 0;
      margin: auto;
    }
    .hamburger.opened span:nth-child(1) {
      transform: rotate(45deg);
    }
    .hamburger.opened span:nth-child(2) {
      opacity: 0;
    }
    .hamburger.opened span:nth-child(3) {
      transform: rotate(-45deg);
    }

    .nav-overlay {
      position: fixed;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: rgba(0, 0, 0, 0.5);
      backdrop-filter: blur(4px);
      z-index: 999;
      display: none;
    }
    .nav-overlay.open {
      display: block;
    }

    @media (max-width: 768px) {
      .navbar ul {
        display: none;
        flex-direction: column;
        align-items: flex-start;
        background: #b71c1c;
        width: 100%;
        padding: 1.5rem 1.5rem 2rem;
        /* padding: 1.2rem 1.5rem; */
        gap: 1.2rem;
        position: absolute;
        top: 3.8rem;
        left: 0;
        z-index: 1000;
        box-sizing: border-box;
      }
      .navbar ul.open {
        display: flex;
        height: auto;
        overflow: hidden;
        max-height: 100vh;
        overflow-y: auto;
      }
    }
  