main {
  flex: 1;
}

.footer {
  background-color: #0055b8;
  color: white;
  padding: 0px 0;
  width: 100%;
}

/* .footer-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 5px;
} */

.footer-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-section {
  flex: -1;
  min-width: 250px;
}

.footer-section h3 {
  font-size: 18px;
  position: relative;
  padding-bottom: 10px;
}

.footer-section h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  top: 25px;
  width: 75px;
  height: 3px;
  background-color: #4fc3f7;
}

.address-item {
  margin-bottom: 15px;
  line-height: 1.6;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 0px;
}

.social-links a {
  color: white;
  background-color: rgba(255, 255, 255, 0.1);
  width: 40px;
  height: 40px;
  border-radius: 20%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
  -webkit-border-radius: 20%;
  -moz-border-radius: 20%;
  -ms-border-radius: 20%;
  -o-border-radius: 20%;
}

.social-links a:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

.copyright {
  text-align: center;
  margin-top: -10px;
  margin-bottom: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-section .address-row {
  display: flex;
  gap: 32px;
}
@media (max-width: 600px) {
  .footer-section .address-row {
    flex-direction: column;
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 40px;
  }
}

/* layout adrrress 2row 2coloumn */
.footer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 90px);
  gap: 32px 10px;
}

@media (max-width: 800px) {
  .footer-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 24px;
  }
}

/* layout adrrress - media sosial*/
/* .footer-flex-row {
  display: flex;
  flex-direction: row;
  gap: 200px;
  align-items: flex-start;
  justify-content: space-between;
} */

.footer-flex-row {
  display: flex;
  flex-direction: row;
  gap: 48px;
  align-items: flex-start;
  justify-content: center; /* Membuat di tengah */
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.footer-container-adrress {
  flex: 2 1 0;
}
.footer-sosmed {
  flex: 1 1 0;
  min-width: 220px;
  max-width: 320px;
}
@media (max-width: 900px) {
  .footer-flex-row {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }
  .footer-sosmed {
    max-width: 100%;
  }
}

/* other */
.border {
  border: 1px solid #000;
}

p.footer-p {
  margin-top: 0px;
}

.footer-h3 {
  margin-bottom: 0%;
}

.footer-logo {
  display: flex;
  flex-direction: row;
  justify-content: left;
  align-items: center;
  gap: 1px;
}

a {
  color: inherit;
  text-decoration: none;
}
a:visited {
  color: inherit;
}
a:hover,
a:active {
  color: inherit;
  text-decoration: underline; /* atau none jika tidak ingin underline saat hover */
}
