body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #ffffff;
    color: #333;
  }
  
  .footer {
    background: #1b2b36;
    color: white;
    padding: 40px 20px;
    text-align: center;
  }
  
  .footer img {
    max-width: 180px;
    margin-bottom: 20px;
  }
  
  .badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
  }
  
  .badges img {
    height: 60px;
  }

  /* Ensure responsive layout */
.container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Logo max width */
.logo {
  max-width: 200px;
  height: auto;
}

/* Footer responsiveness */
.footer {
  text-align: center;
  padding: 2rem 1rem;
}

.footer .badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin: 1rem 0;
}

/* === BASE HEADER STYLES === */
.main-header {
  background-color: #ffffff;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.logo {
  height: 95px;
  margin-right: 30px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex: 1;
  justify-content: flex-end;
}

.nav-links {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  justify-content: center;
  flex: 1;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  padding: 6px 10px;
  position: relative;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #000;
}

.nav-links a.active::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 3px;
  width: 100%;
  background-color: #1b2b36;
}

.header-buttons {
  display: flex;
  gap: 10px;
}

.btn-outline {
  padding: 6px 12px;
  border: 1px solid #1b2b36;
  background-color: transparent;
  color: #1b2b36;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.btn-outline:hover {
  background-color: #1b2b36;
  color: #fff;
}

/* === HAMBURGER MENU === */
.hamburger {
  display: none;
  font-size: 2rem;
  cursor: pointer;
  background: none;
  border: none;
}

@media (max-width: 768px) {
  .hamburger {
    display: block;
    font-size: 2rem;
    cursor: pointer;
    background: none;
    border: none;
    color: #1d2b36; /* or your theme color */
    z-index: 1100;
  }

  .nav-menu {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1rem 1.25rem;
    background-color: #fff;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    max-width: 90vw;
    width: 360px;
    margin: 1rem auto 0;
    z-index: 1000;
  }

  .nav-menu.active {
    display: block; /* Or flex/grid based on your layout */
  }

  .nav-links {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 1rem;
  }

  .nav-links a {
    font-size: 1rem;
    padding: 0.5rem 0;
    color: #222;
    border-bottom: 1px solid #e0e0e0;
    width: 100%;
    text-align: left;
  }

  .nav-links a.active {
    font-weight: bold;
    border-bottom: 2px solid #2c5f52;
    color: #2c5f52;
  }

  .header-buttons {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
    margin-top: 0.5rem;
  }

  .header-buttons .btn-outline {
    padding: 0.65rem 1rem;
    border: 1px solid #1d2b36;
    border-radius: 6px;
    text-align: center;
    background-color: transparent;
    font-size: 1rem;
  }

  .header-buttons .btn-outline:hover {
    background-color: #1d2b36;
    color: #fff;
  }

  .footer {
    padding: 2rem 1rem 1rem;
  }
  
  .footer .badges {
    gap: 12px;
    margin: 1rem 0;
  }
  
  .footer .badges img {
    height: 50px;
    width: auto;
    object-fit: contain;
  }
  
  .footer-logo {
    max-width: 140px;
    margin: 1rem auto;
  }
  
  .footer p {
    font-size: 0.875rem;
    line-height: 1.4;
  }
}