* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}
body {
  margin-top: 150px;
  font-family: "Segoe UI", sans-serif;
  color: black;
  min-height: 100vh;
  background: linear-gradient(to bottom, #ffffff 30%, #003366 50%);
  justify-content: center;
  align-items: center;
}
header {
  position: fixed;
  width: 100%;
  background-color: white;
  top: 0;
  border-bottom: 1px solid white;
  z-index: 1000;
}
nav {
  height: 60px;
  max-width: 1200px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  margin: 0 auto;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo img {
  height: 100px;
  width: auto;
  display: block;
  margin-top: 10px;
}
.logo h1 {
  font-weight: 200px;
  font-size: 40px;
  margin-left: 30px;
}
nav ul {
  display: flex;
  align-items: center;
  gap: 40px;
}
nav ul li a {
  color: black;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
}
nav ul li a:hover {
  border-bottom: 1px solid black;
}
nav ul li button {
  background-color: white;
  border: 1px solid #000;
  padding: 8px 20px;
  font-size: 16px;
  font-weight: 600;
  color: #000;
  border-radius: 4px;
}

.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-left: 100px;
}
.left-section {
  flex: 1;
  max-width: 500px;
}
.left-section h1 {
  font-size: 32px;
  margin-bottom: 16px;
  font-weight: 600px;
}
.search-bar {
  display: flex;
  align-items: center;
  background-color: #c4e3e9;
  border-radius: 25px;
  padding: 8px 16px;
  margin-bottom: 32px;
  max-width: 100%;
}
.search-bar .icon {
  font-size: 20px;
  margin-right: 8px;
}
.search-bar input {
  border: none;
  background: transparent;
  outline: none;
  flex: 1;
  font-size: 15px;
  color: #333;
}
.container h2 {
  font-size: 25px;
  margin-bottom: 15px;
}
.faq-buttons button {
  display: block;
  background-color: #c4e3e9;
  border: none;
  border-radius: 25px;
  padding: 9px 16px;
  margin-bottom: 12px;
  font-size: 16px;
  text-align: left;
  cursor: pointer;
  transition: background-color 0.3s;
  width: fit-content;
}
.faq-buttons button:hover {
  background-color: #aacfd8;
}
.right-section {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.right-section img {
  max-width: 100%;
  height: auto;
  margin-top: -50px;
}

.search {
  display: flex;
  align-items: center;
  padding: 300px 300px 50px;
  margin: 0 auto;
}
.search input {
  width: 100%;
  padding: 18px 20px;
  border-radius: 25px;
}
.search button {
  position: absolute;
  right: 26%;
  padding: 7px 23px;
  border-radius: 13px;
  background-color: #aad9e6;
  border: none;
  transition: background-color 0.5s;
}
.search button:hover {
  background-color: #b4e0e4;
}

.pemisah {
  flex: 8;
  color: white;
  padding: 20px;
  font-size: 35px;
  margin-bottom: -15px;
}
.komen {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 14px;
  padding: 20px 20px 100px;
}
.komen .item {
  display: flex;
  align-items: center;
  gap: 6px;
  background-color: #cce7ed;
  padding: 8px;
  width: 32%;
  border-radius: 10px;
  font-size: 14px;
}
.komen .item img {
  width: 32px;
  height: 32px;
  object-fit: cover;
  border-radius: 50%;
}

#kontak-kami {
  color: white;
  display: flex;
  flex-wrap: wrap;
  padding: 60px 20px;
  font-family: "Segoe UI", sans-serif;
  margin-top: 50px;
}
.hubungi,
.berita,
.tautan {
  flex: 1;
  min-width: 250px;
  margin: 10px 20px;
}
.hubungi h3,
.berita h3,
.tautan h3 {
  font-size: 23px;
  margin-bottom: 15px;
  font-weight: bold;
  border-bottom: 1px solid #ccc;
  padding-bottom: 10px;
}
.hubungi p,
.berita p,
.tautan li {
  font-size: 15px;
  color: #e0e0e0;
  margin-bottom: 10px;
}
.tautan ul {
  list-style: none;
  color: white;
}
.tautan li a {
  color: white;
  text-decoration: none;
}

footer {
  background-color: grey;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
}
footer .copyright {
  color: black;
  font-weight: 20px;
  font-size: 14px;
  margin: 0;
  align-items: center;
}
footer .copyright b {
  color: white;
}

@media screen and (max-width: 570px) {
  nav {
    flex-direction: row;
    align-items: flex-start;
    padding: 10px 20px;
    height: auto;
  }
  .logo img {
    display: none;
  }
  .logo h1 {
    display: none;
  }
  nav ul {
    flex-direction: row;
    gap: 50px;
    margin-top: 10px;
  }
  nav ul li a,
  nav ul li a button {
    font-size: 14px;
  }
  nav ul li a:hover {
    border-bottom: 1px solid black;
  }

  .container {
    flex-direction: column;
    margin-left: 20px;
    padding: 20px;
  }
  .left-section,
  .right-section {
    max-width: 100%;
    text-align: center;
    margin-top: 200px;
  }
  .right-section img {
    width: 90%;
    margin-top: -1400px;
  }
  .search {
    flex-direction: column;
    padding: 50px 20px 30px;
    margin-top: -100px;
  }
  .search input {
    width: 100%;
    margin-bottom: 10px;
  }
  .search button {
    position: static;
    width: 100%;
  }
  .pemisah {
    font-size: 24px;
    padding: 10px;
    text-align: center;
  }
  .komen {
    flex-direction: column;
    padding: 20px 20px 50px;
  }
  .komen .item {
    width: 100%;
  }

  #kontak-kami {
    flex-direction: column;
    padding: 40px 20px;
  }

  footer {
    text-align: center;
  }
}
