.navbar {
  background-color: #ffffff;
  border-bottom: 1px solid #ddd;
  box-shadow: 0 4px 6px -2px rgba(0, 0, 0, 0.15);
  position: relative;
  z-index: 1000;
}
html, body {
  overflow-x: hidden !important;
}

.navbar-brand {
  font-size: 3rem;
  font-weight: bold;
  color: #000000;
}

.navbar-brand .red {
  color: #c02b2b;
}

.navbar-nav .nav-link {
  color: #000000;
  font-weight: bold;
  margin-right: 1.5rem;
  display: flex;
  align-items: center;
  position: relative;
}

.nav-link:hover,
.nav-link:focus {
  color: #c02b2b;
}

.nav-link .dropdown-toggle::after {
  font-family: "Material Icons";
  content: "\e5c5";
  border: none;
  vertical-align: middle;
  font-size: 1.2rem;
  margin-left: 0.25rem;
}

.btn-talk {
  background-color: #c02b2b;
  color: #ffffff;
  font-weight: bold;
  padding: 0.75rem 1.5rem;
  border-radius: 0.375rem;
  text-transform: uppercase;
  text-decoration: none;
}

.btn-talk:hover {
  background-color: #a02323;
  color: #ffffff;
}

/* Mega Menu Styles */
.mega-dropdown {
  position: relative;
}

.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  max-width: 1000px;
  background: #ffffff;
  border: 1px solid #ddd;
  border-radius: 0.5rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
  padding: 2rem;
  margin-top: 0.5rem;
}

.mega-dropdown:hover .mega-menu {
  opacity: 1;
  visibility: visible;
}

.mega-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #000000;
  margin-bottom: 0.5rem;
}

.mega-subtitle {
  color: #666666;
  margin-bottom: 1rem;
}

.mega-section-title {
  font-size: 1.1rem;
  font-weight: bold;
  color: #000000;
  margin-bottom: 1rem;
  border-bottom: 2px solid #c02b2b;
  padding-bottom: 0.5rem;
}

.mega-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mega-link {
  color: #666666;
  text-decoration: none;
  padding: 0.25rem 0;
  transition: color 0.2s ease;
}

.mega-link:hover {
  color: #c02b2b;
  text-decoration: none;
}

.mega-link.red-link {
  color: #c02b2b;
  font-weight: 500;
}

.mega-link.red-link:hover {
  color: #a02323;
}

