.site-header {
      background: #ffffff;
      border-bottom: 1px solid #ddd;
      padding: 12px 0;
      position: sticky;
      top: 0;
      z-index: 999;
      width: 100%;
    }

    .site-header .container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
      box-sizing: border-box;
    }

    .logo {
      display: flex;
      align-items: center;
      text-decoration: none;
      font-weight: bold;
      font-size: 1.2rem;
      color: #0e374e;
    }

    .logo img {
      width: 40px;
      height: 40px;
      margin-right: 10px;
    }

    .nav {
      display: flex;
      gap: 20px;
    }

    .nav a {
      color: #0e374e;
      text-decoration: none;
      font-weight: 500;
      font-size: 0.95rem;
      transition: color 0.2s;
    }

    .nav a:hover {
      color: #007BFF;
    }

    .menu-toggle {
      display: none;
      background: none;
      border: none;
      font-size: 22px;
      color: #0e374e;
      margin-left: auto;
      order: 1;
    }
      .site-footer {
      background: var(--primary-color);
      color: white;
      padding: 50px 0 20px;
      width: 100%;
      box-sizing: border-box;
      text-align: center;
      margin-top: auto;
    }

    .footer-content {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 30px;
      margin-bottom: 40px;
      width: 100%;
      box-sizing: border-box;
    }

    .footer-column {
      padding: 0 10px;
      box-sizing: border-box;
    }

    .footer-column h3 {
      margin-bottom: 20px;
      font-size: 1.2rem;
    }

    .footer-links {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .footer-links li {
      margin-bottom: 10px;
    }

    .footer-links a {
      color: rgba(255, 255, 255, 0.7);
      text-decoration: none;
      transition: color 0.3s;
    }

    .footer-links a:hover {
      color: white;
    }

    .social-links {
      display: flex;
      gap: 15px;
      justify-content: center;
    }

    .social-links a {
      color: white;
      font-size: 1.2rem;
    }

    .copyright {
      text-align: center;
      padding-top: 20px;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      color: rgba(255, 255, 255, 0.7);
      font-size: 0.9rem;
      width: 100%;
      box-sizing: border-box;
    }
      @media (max-width: 768px) {
      .site-header .container {
        justify-content: flex-start;
        position: relative;
      }

      .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #ffffff;
        flex-direction: column;
        gap: 0;
        margin-top: 0;
        padding: 0;
        border-radius: 0;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        border-top: 1px solid #ddd;
        width: 100%;
      }

      .nav.show {
        display: flex;
      }

      .nav a {
        padding: 12px 20px;
        border-bottom: 1px solid #f0f0f0;
      }

      .menu-toggle {
        display: block;
        order: 1;
        margin-left: auto;
      }

      .logo {
        margin-right: auto;
      }

      #map {
        height: 250px;
      }

   
      .footer-content {
        grid-template-columns: 1fr;
        padding: 0 15px;
      }

      .footer-column {
        padding: 0;
      }
    }
