  <style>
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }
  
  body {
    color: #333;
    line-height: 1.6;
  }
  
  .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
  }
  
   a {
    text-decoration: none;
    color: inherit;
  }
  /* Hero Section */
  .hero {
    background-color: #1E4841;
    padding: 40px 0;
    text-align: center;
    color: #fff;
  }
  
  .hero-content h1 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 15px;
  }
  
  .hero-subtitle {
    font-size: 18px;
    color: #dddddd;
    margin-bottom: 25px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .cta-button {
    display: inline-block;
    background-color: #1E4841;
    color: #fff;
    padding: 8px 16px;
    text-decoration: none;
    font-size: 14px;
    margin-top: 10px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
  }
  
  .cta-button:hover {
    background-color: #163530;
  }
  
  /* Navigation Styles */

  
  .mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
    color: #1E4841;
    z-index: 110;
  }
  
  /* Responsive Adjustments */
  @media (max-width: 768px) {
    .mobile-nav-toggle {
      display: block;
    }
  
    .nav-container {
      flex-direction: column;
      border-bottom: none;
    }
  
    
  
    .nav-menu.show {
      display: flex;
    }
  
    .nav-item {
      border-right: none;
      border-bottom: 1px solid #eee;
      width: 100%;
      text-align: left;
      padding: 15px;
      flex: none;
    }
  
    .nav-item:last-child {
      border-bottom: none;
    }
  }
  
  /* Contact Info Section */
  .contact-info-section {
    padding: 60px 0;
  }
  
  .contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
  
  .contact-card {
    padding: 30px;
    background-color: #f9f9f9;
    border-radius: 4px;
    text-align: center;
    border-top: 3px solid #1E4841;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  .contact-card h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #1E4841;
  }
  
  .contact-card p {
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
  }

 @media (max-width: 600px) {
  .contact-info-section {
    display: block;
  }

  .contact-grid {
    display: block;
  }

  .contact-card {
    margin-bottom: 20px;
  }
}

  /* Contact Form Section */
  .contact-form-section {
    padding: 60px 0;
    background-color: #f9f9f9;
  }
  
  .form-container {
    max-width: 800px;
    margin: 0 auto;
    background-color:fff;
    padding: 40px;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  }
  
  .form-container h2 {
    font-size: 24px;
    margin-bottom: 30px;
    text-align: center;
    color: #1E4841;
  }
  
  .form-group {
    margin-bottom: 20px;
  }
  
  .form-group label {
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
    color: #555;
  }
  
  .form-control {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    transition: border-color 0.3s ease;
  }
  
  .form-control:focus {
    outline: none;
    border-color: #1E4841;
  }
  
  .form-row {
    display: flex;
    gap: 40px;
  }
  
  .form-col {
    flex: 1;
  }
  
  textarea.form-control {
    min-height: 150px;
    resize: vertical;
  }
  
  .submit-btn {
    background-color: #1E4841;
    color: #fff;
    border: none;
    padding: 12px 25px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 4px;
    display: block;
    margin: 0 auto;
    transition: background-color 0.3s ease;
  }
  
  .submit-btn:hover {
    background-color: #163530;
  }
  
  /* Office Locations */
  .locations-section {
    padding: 60px 0;
  }
  
  .locations-container {
    text-align: center;
  }
  
  .locations-container h2 {
    font-size: 28px;
    margin-bottom: 40px;
    color: #1E4841;
  }
  
  .locations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
  
  .location-card {
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  }
  
  .location-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }
  
  .location-info {
    padding: 20px;
    background-color: #f9f9f9;
  }
  
  .location-info h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #1E4841;
  }
  
  .location-info p {
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
  }
  
  /* FAQ Section */
  .faq-section {
    padding: 60px 0;
    background-color: #f9f9f9;
  }
  
  .faq-container {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .faq-container h2 {
    font-size: 28px;
    margin-bottom: 40px;
    text-align: center;
    color: #1E4841;
  }
  
  .faq-item {
    margin-bottom: 20px;
    border: 1px solid #eee;
    border-radius: 4px;
    background-color: #fff;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
  }
  
  .faq-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  }
  
  .faq-question {
    padding: 15px 20px;
    background-color: #fff;
    font-weight: bold;
    cursor: pointer;
    position: relative;
    color: #1E4841;
  }
  
  .faq-question:after {
    content: "+";
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #1E4841;
  }
  
  .faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: #f9f9f9;
  }
  
  .faq-answer p {
    padding: 20px 0;
    font-size: 14px;
    color: #666;
  }
  
  .faq-item.active .faq-question:after {
    content: "-";
  }
  
  .faq-item.active .faq-answer {
    max-height: 200px;
  }
  
  /* Map Section */
  .map-section {
    padding: 50px 0;
  }
  
  .map-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
  }
  
  .map-container h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #1E4841;
  }
  
  .map-container p {
    max-width: 1200px;
    margin: 0 auto 30px;
    color: #666;
  }
  
  .map-iframe {
    width: 100%;
    height: 400px;
    border: none;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  }
  
  /* Footer */
  .footer-container {
            background-color: #1E4841;
            width: 100%;
            /* max-width: 1200px; */
            padding: 3rem 2.5rem;
          
            position: relative;
            overflow: hidden;
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            position: relative;
            z-index: 2;
        }

        .brand {
            flex: 1.2;
            padding-right: 2rem;
        }

        .brand-logo {
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
        }

        .logo-squares {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 3px;
            margin-right: 12px;
        }

        .square {
            width: 10px;
            height: 10px;
            background-color: #1E4841;
            border-radius: 2px;
            transition: transform 0.3s ease;
        }

        .brand-logo:hover .square:nth-child(1) {
            transform: translate(-2px, -2px);
            background-color: #34796E;
        }

        .brand-logo:hover .square:nth-child(2) {
            transform: translate(2px, -2px);
        }

        .brand-logo:hover .square:nth-child(3) {
            transform: translate(-2px, 2px);
        }

        .brand-logo:hover .square:nth-child(4) {
            transform: translate(2px, 2px);
            background-color: #34796E;
        }

        .brand-name {
            font-size: 28px;
            font-weight: 700;
            color: #fff;
            letter-spacing: -0.5px;
        }

        .brand-tagline {
            font-size: 15px;
            color: #e0e0e0;
            max-width: 240px;
            line-height: 1.5;
            font-weight: 300;
            letter-spacing: -0.3px;
            position: relative;
        }

        .brand-tagline::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 0;
            width: 40px;
            height: 2px;
            background: linear-gradient(90deg, #fff, rgba(255, 255, 255, 0.3));
            border-radius: 2px;
        }

        .navigation {
            flex: 2;
            display: flex;
            justify-content: space-around;
        }

        .footer-column {
            margin-right: 1rem;
            flex: 1;
        }

        .footer-column h3 {
            font-size: 13px;
            color: #adb5bd;
            margin-bottom: 1.5rem;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .footer-column ul {
            list-style: none;
        }

        .footer-column li {
            margin-bottom: 1rem;
            color: #ffffff;
            font-size: 14px;
            font-weight: 500;
            letter-spacing: 0.5px;
            transition: all 0.3s ease;
            display: block;
            position: relative;
            cursor: pointer;
            text-decoration: none;
        }

        .footer-column li::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -4px;
            left: 0;
            /* background-color: #5ee1cb; */
            transition: width 0.3s ease;
            border-radius: 2px;
        }

        .footer-column li:hover {
            color: #5ee1cb  ;
            transform: translateX(3px);
        }

        .footer-column li:hover::after {
            width: 100%;
        }

        .chart-background {
            position: absolute;
            top: 0;
            right: 0;
            width: 60%;
            height: 100%;
            z-index: 1;
            opacity: 0.07;
            overflow: hidden;
        }

        .chart-line {
            width: 100%;
            display: flex;
            justify-content: space-between;
            height: 100%;
            align-items: flex-end;
            padding-bottom: 20px;
        }

        .chart-bar {
            width: 5px;
            background-color: #adb5bd;
            margin-right: 8px;
            border-radius: 4px 4px 0 0;
            transition: height 1s ease, background-color 0.5s ease;
        }

        .chart-bar:nth-child(10n) {
            background-color: #1E4841;
            width: 6px;
        }

        .chart-bar:nth-child(5n) {
            background-color: #212529;
        }

        .copyright {
            margin-top: 3rem;
            padding-top: 1.5rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 12px;
            color: #adb5bd;
            position: relative;
            z-index: 2;
        }

        .copyright p {
            font-weight: 400;
        }

        .gradient-overlay {
            position: absolute;
            bottom: 0;
            right: 0;
            width: 30%;
            height: 40%;
            background: radial-gradient(circle at bottom right, rgba(30, 72, 65, 0.05), transparent 70%);
            z-index: 1;
            border-radius: 50%;
        }

        @media (max-width: 768px) {
            .footer-content {
                flex-direction: column;
            }

            .brand {
                margin-bottom: 3rem;
                padding-right: 0;
            }

            .navigation {
                flex-direction: column;
            }

            .footer-column {
                margin-bottom: 2rem;
                margin-right: 0;
            }

            .copyright {
                flex-direction: column;
                align-items: flex-start;
            }
        }


  /* Container slide-in animation */
.nav-container {
  animation: slideIn 0.8s ease-out;
}

/* Nav items hover effect */
.nav-item {
  transition: background-color 0.3s ease, transform 0.3s ease;
  padding: 10px 15px;
  cursor: pointer;
}

/* On hover */
.nav-item:hover {
  background-color: #f0f0f0;
  transform: translateY(-2px);
}

/* Active item styling */
.nav-item.active {
  background-color: #e0e0e0;
  font-weight: bold;
  border-radius: 5px;
}

/* Slide-in animation keyframes */
@keyframes slideIn {
  from {
    transform: translateY(-20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}


.topbar {
  background: #1E4841;
  color: white;
  padding: 10px 20px;
  font-size: 14px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.topbar span {
  margin-right: 20px;
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 30px;
  background: white;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  height: 70px;
}

/* Logo */
.logo img {
  width: 120px;
  height: 45px;
}

/* Menu Container */
.nav-menu {
  display: flex;
  align-items: center;
}

/* Navigation Links */
.nav-links {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links li {
  margin: 0 20px;
}

.nav-links a {
  text-decoration: none;
  color: black;
  font-weight: 500;
  font-size: 17px;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #1E4841;
}

/* Button */
.membership-btn {
  background: #1E4841;
  color: white;
  border: none;
  padding: 10px 20px;
  font-weight: bold;
  border-radius: 25px;
  cursor: pointer;
  font-size: 14px;
  transition: background 0.3s ease;
}

.membership-btn:hover {
  background: #1E4841;
}

.hamburger {
      display: none;
      flex-direction: column;
      justify-content: space-between;
      width: 24px;
      height: 18px;
      cursor: pointer;
    }

    .hamburger span {
      height: 2px;
      width: 100%;
      background-color: #1E4841;
      border-radius: 2px;
      transition: all 0.3s ease;
    }
.mobile-membership {
  display: none;
}
.overlay {
      position: fixed;
      top: 0;
      left: 0;
      height: 100vh;
      width: 100vw;
      background-color: rgba(0, 0, 0, 0.5);
      z-index: 90;
      display: none;
    }

    .overlay.active {
      display: block;
    }

    .close-btn {
      display: none;
    }

    /* Responsive Menu */
    @media (max-width: 768px) {
      .navbar {
        padding: 0 1rem;
      }

      .hamburger {
        display: flex;
      }

      .nav-menu {
        position: fixed;
        top: 60px;
        right: -100%;
        background-color: #fff;
        width: 250px;
        height: calc(100vh - 60px);
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 20px;
        transition: all 0.3s ease;
        z-index: 99;
        box-shadow: -2px 2px 10px rgba(0, 0, 0, 0.1);
      }

      .nav-menu.active {
        right: 0;
      }

      .nav-links {
        flex-direction: column;
        width: 100%;
        height: auto;
        margin-left: 0;
      }

      .nav-links li {
        width: 100%;
        height: auto;
        margin: 8px 0;
      }

      .nav-links a {
        width: 100%;
        padding: 12px 20px;
        justify-content: flex-start;
      }

      /* Hide desktop membership button */
      .membership-btn {
        display: none;
      }

      /* Show mobile membership link */
      .mobile-membership {
        display: block;
      }

      .mobile-membership a {
        color: #1E4841;
        font-weight: 500;
      }

      /* Animated hamburger to X */
      .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
      }
      
      .hamburger.active span:nth-child(2) {
        opacity: 0;
      }
      
      .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
      }
      .close-btn {
        display: block;
        font-size: 30px;
        color: #1E4841;
        text-align: right;
        padding: 10px 20px;
        cursor: pointer;
      }
    }
    
</style> 