* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  color: white;
}

a {
  text-decoration: none;
}

header {
  position: absolute;
  width: 100%;
  padding-block: 25px;
}

.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-inline: 20px;
}

.logo {
  font-size: 2rem;
  text-transform: capitalize;
  font-weight: bold;
}

.navbar {
  margin-inline-end: 100px;
  display: flex;
}

.nav-item {
  font-size: 1.5rem;
  padding-inline-end: 25px;
  text-transform: capitalize;
}

.hero {
  background: linear-gradient(245.59deg, #4d9559 0%, #38703d 30%, #133917 75%);
}

.hero-con {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100vh;
  padding-inline: 30px;
  position: relative;
}

.content {
  width: 350px;
  max-width: 90vw;
  margin-inline-start: 50px;
}
.title-1 {
  font-size: 2rem;
  padding-block-end: 10px;
}
.title-2 {
  font-size: 5rem;
  padding-block-end: 10px;
}

.paragraph {
  font-size: 1.2rem;
  padding-block: 10px;
}

img {
  max-width: 100%;
  height: auto;
  width: 500px;
  height: 400px;
  display: block;
}

.social {
  position: absolute;
  bottom: 50px;
  left: 150px;
  display: flex;
  gap: 15px;
}
.social svg {
  font-size: 1.5rem;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}
.menu-toggle span {
  display: block;
  width: 28px;
  height: 4px;
  margin: 4px 0;
  background: #fff;
  border-radius: 2px;
  transition: 0.3s;
}

.brand-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

/* Responsive Styles */
@media (max-width: 900px) {
  .container {
    flex-direction: column;
    align-items: flex-start;
    padding-inline: 10px;
  }
  .navbar {
    margin-inline-end: 0;
    margin-top: 10px;
  }
  .hero {
    padding: 30px 0;
  }
  .hero-con {
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    height: auto;
    padding-inline: 10px;
    padding-top: 60px;
  }
  .content {
    margin-inline-start: 0;
    width: 100%;
    max-width: 100vw;
    text-align: center;
    padding: 0 10px;
  }
  .title-1 {
    font-size: 1.5rem;
  }
  .title-2 {
    font-size: 2.5rem;
  }
  .paragraph {
    font-size: 1rem;
    padding-block: 8px;
  }
  img {
    width: 80vw;
    max-width: 350px;
    height: auto;
    margin: 20px 0;
    display: block;
  }
  .social {
    position: static;
    margin: 20px 0 0 0;
    justify-content: center;
  }
  .menu-toggle {
    display: flex;
  }
  .navbar {
    display: none;
    flex-direction: column;
    background: #133917;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100vw;
    padding: 20px 0;
    z-index: 1000;
  }
  .navbar.active {
    display: flex;
  }
  .nav-item {
    padding: 15px 0;
    font-size: 1.3rem;
    text-align: center;
    width: 100%;
  }
  .brand-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }
}

@media (max-width: 600px) {
  .container {
    padding-inline: 5px;
  }
  .content {
    padding: 0 2px;
  }
  .title-1 {
    font-size: 1.1rem;
  }
  .title-2 {
    font-size: 1.5rem;
  }
  .paragraph {
    font-size: 0.95rem;
  }
  img {
    width: 95vw;
    max-width: 220px;
  }
}
