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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  background-color: #fefcf9;
  color: #333;
}


header {
  background-color: #759c53;
  padding: 20px 40px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

#logo img {
  height: 200px;
}

#nav-list {
  list-style: none;
  display: flex;
  gap: 100px;
}


#conheader {
  padding: 40px;
  background: #fff7e6;
}

#text h1 {
  font-size: 2.5em;
  color: #b36b00;
  margin-bottom: 20px;
  text-align: center;
}


#text h2 {
  font-size: 2em;
  color: #804000;
  margin: 40px 0 20px;
}

#text p {
  background: linear-gradient(to right, #000, #555);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: bold;
  font-family: 'Poppins', sans-serif;
}

  

#text img {
  max-width: 500px;
  height: auto;
  margin: 10px auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}



footer {
  background-color: #759c53;
  color: #fff;
  padding: 40px;
  margin-top: 40px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

.footer-logos img {
  height: 200px;
  margin-right: 15px;
}

.footer-contact p {
  font-size: 0.95em;
  line-height: 1.6;
}

@media (max-width: 768px) {
  nav {
    flex-direction: column;
    align-items: flex-start;
  }

  #nav-list {
    flex-direction: column;
    gap: 100px;
    margin-top: 10px;
  }

  #conheader {
    padding: 20px;
  }

  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-logos {
    justify-content: center;
  }
}
