* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
}

.hero-section {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
    url("assets/images/Rectangle 3355.png") center/cover;
  display: flex;
  flex-direction: column;
}

/* Navigation */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 4rem;
}

.logo {
  width: 150px;
  height: auto;
}

.nav-menu {
  display: flex;
  gap: 2rem;
  background: rgba(255, 255, 255, 0.15);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  padding: 1rem 2.5rem;
  border-radius: 50px;
  list-style: none;
}

.nav-menu a {
  color: white;
  text-decoration: none;
  font-size: 1rem;
  transition: opacity 0.3s;
}

.nav-menu a:hover {
  opacity: 0.8;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
  padding: 8px;
  border-radius: 4px;
  transition: background-color 0.3s;
}

.hamburger:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.hamburger span {
  width: 24px;
  height: 2px;
  background-color: white;
  transition: all 0.3s;
  transform-origin: center;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Hero Content */
.hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
}

.hero-content h1 {
  font-size: 4rem;
  color: white;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-content p {
  font-size: 1.1rem;
  color: white;
  max-width: 800px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: transparent;
  color: white;
  border: 2px solid white;
  border-radius: 50px;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
}

.cta-button:hover {
  background: white;
  color: #2c5f2d;
}

.arrow-icon {
  width: 20px;
  height: 20px;
  border: 2px solid white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}

/* Info Card */
.info-card {
  position: relative;
  margin: -30px 6rem 4rem 6rem;
  background: rgba(88, 129, 87, 0.9);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-radius: 30px;
  padding: 3rem;
  display: flex;
  align-items: center;
  gap: 3rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.info-text {
  flex: 1;
}

.info-text h2 {
  font-size: 1rem;
  color: white;
  margin-bottom: 1.5rem;
  line-height: 1.8;
  text-align: justify;
}

.divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
  margin: 2rem 0;
}

.badges {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.2rem;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  color: white;
  font-size: 0.85rem;
}

.badge-icon {
  width: 8px;
  height: 8px;
  background: white;
  border-radius: 50%;
}

.info-image {
  width: 300px;
  height: 300px;
  object-fit: cover;
  border-radius: 20px;
}

/* Responsive */
@media (max-width: 1024px) {
  nav {
    padding: 1.5rem 2rem;
  }

  .hero-content h1 {
    font-size: 3rem;
  }

  .info-card {
    margin: -20px 3rem 3rem 3rem;
    flex-direction: column;
  }

  .info-image {
    width: 100%;
    max-width: 400px;
  }
}

@media (max-width: 768px) {
  nav {
    position: relative;
    flex-direction: column;
    gap: 1.5rem;
    padding: 1.5rem 2rem;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.95);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transform: translateY(-10px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 1000;
  }

  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-menu li {
    text-align: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }

  .nav-menu li:last-child {
    border-bottom: none;
  }

  .nav-menu a {
    color: #2c5f2d;
    font-weight: 500;
  }

  .hamburger {
    display: flex;
    align-self: flex-end;
    margin-top: -40px;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .info-card {
    margin: -10px 1.5rem 2rem 1.5rem;
    padding: 2rem;
  }
}
