footer {
  width: 100%;
  height: 500px;
  background-color: gainsboro; /* Kuning */
  color: black;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: start;
  margin-top: 6%;
}

.penjelasan {
  width: 30%;
  /* border: 2px solid red; */
  /* margin-top: 4%; */
  padding: 40px 20px;
}

.penjelasan h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: black;
  border-bottom: 2px solid black;
  padding-bottom: 10px;
}

.penjelasan p {
  font-size: 16px;
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
  color: black;
}


.kontak{
  width: 30%;
  /* border: 2px solid blue; */
  padding: 40px 20px;
  
  /* margin-top: 4%; */
}

.kontak h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: black;
  border-bottom: 2px solid black;
  padding-bottom: 10px;
}

.kontak p {
  font-size: 16px;
  line-height: 1.6;
  color: black;
  margin: 10px 0;
}

.kontak p:hover {
  text-decoration: underline;
}

.peta{
  width: 30%;
  /* border: 2px solid green; */
  padding: 40px 20px;
  /* margin-top: 4%; */
}

.peta h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: black;
  border-bottom: 2px solid black;
  padding-bottom: 10px;
}

.peta iframe {
  width: 100%;
  max-width: 800px;
  height: 350px;
  border: none;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.2);
}

@media (min-width: 320px) and (max-width: 425px) {
  footer{
    flex-direction: column;
    flex-direction: column;
    width: 100%;
    height: auto;
    /* border: 2px solid black; */
    justify-content: center;
    align-items: center;
  }

  .penjelasan, .kontak, .peta {
    width: 100%;
    text-align: center;
  }
}

@media (min-width: 426px) and (max-width: 768px) {
  footer{
    flex-direction: column;
    width: 100%;
    height: auto;
    /* border: 2px solid black; */
    justify-content: center;
    align-items: center;
  }

  .penjelasan, .kontak, .peta {
    width: 100%;
    text-align: center;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  footer{
    flex-direction: column;
    width: 100%;
    height: auto;
    /* border: 2px solid black; */
    justify-content: center;
    align-items: center;
  }

  .penjelasan, .kontak, .peta {
    width: 100%;
    text-align: center;
  }

  .penjelasan h2, .kontak h2, .peta h2 {
    font-size: 2.6rem;
  }

  .penjelasan p, .kontak p {
    font-size: 1.4rem;

  }
}