@font-face {
  font-family: 'Montserrat';
  src: url('/fonts/Montserrat-Regular.ttf') format('woff2');
  font-weight: normal;
  font-style: normal;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Montserrat', sans-serif;
}

.container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  background-color: #fff;
  border-bottom: 1px solid #eee;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: bold;
  font-size: 20px;
  color: #222;
}

.logo img {
  width: 123px;
  height: 26px;
  object-fit: cover;
  overflow: hidden;
}

.nav {
  display: flex;
  gap: 30px;
}

.nav a {
  text-decoration: none;
  color: #555;
  font-weight: 500;
  position: relative;
}

.nav a.active,
.nav a:hover {
  color: #0aad4d;
}

.nav a.active::after,
.nav a:hover::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  height: 2px;
  width: 100%;
  background-color: #0aad4d;
}

.cta-button {
  background-color: #0aad4d;
  color: white;
  border: none;
  border-radius: 6px;
  padding: 10px 20px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s;
}

.cta-button:hover {
  background-color: #099b44;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: #333;
  border-radius: 2px;
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: fixed;
  top: 0;
  left: -250px;
  width: 250px;
  height: 100%;
  background-color: white;
  box-shadow: 2px 0 5px rgba(0,0,0,0.1);
  padding: 60px 20px;
  transition: left 0.3s ease-in-out;
  z-index: 1000;
}

.mobile-menu.open {
  left: 0;
}

.mobile-menu a {
  color: #222;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
}

@media (max-width: 768px) {
  .nav, .cta-button {
    display: none;
  }
  .hamburger {
    display: flex;
  }
}