* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial, sans-serif;
    background-color: #e0f7fa;
  }
  
  header {
    display: flex;
    align-items: center;
    background-color: #d0f0f9;
    padding: 15px 30px;
  }
  
  .logo {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .logo img {
    height: 50px;
    width: auto;
  }
  
  nav {
    margin-left: auto; 
  }
  
  nav ul {
    display: flex;
    list-style: none;
  }
  
  nav ul li {
    margin-left: 20px;
  }
  
  nav ul li a {
    text-decoration: none;
    color: #000;
    font-weight: Arial, sans-serif;
  }
  
  nav ul li a:hover {
    text-decoration: underline;
  }  
  
  main {
    padding: 20px;
  }
  
  .alamat {
    background-color: #d8faff;
    padding: 20px;
    border: 1px solid #b6e6f1;
    margin-bottom: 20px;
  }
  
  .alamat h3 {
    margin-bottom: 10px;
  }
  
  .alamat p {
    font-size: 16px;
  }
  
  .lokasi h3 {
    margin-bottom: 10px;
  }
  
  .map-container {
    width: 100%;
    max-width: 100%;
    height: auto;
    border: 2px solid #ccc;
  }
  
  body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    background-color: #c6f3ff;
  }
  
  .container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .contact-box {
    display: flex;
    justify-content: space-around;
    background-color: white;
    width: 80%;
    margin: 20px auto;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    flex-wrap: wrap;
  }
  
  .social-media, .contact {
    flex: 1;
    min-width: 250px;
    margin: 10px;
  }
  
  h3 {
    margin-bottom: 15px;
    font-weight: bold;
    text-align: center;
  }
  
  ul {
    list-style: none;
    padding: 0;
  }
  
  li {
    margin: 8px 0;
    font-weight: bold;
  }
  
  .image-container {
    width: 90%;
    max-width: 1000px;
    margin-bottom: 30px;
  }
  
  .image-container img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  }

  /* Footer style */
.main-footer {
    background-color: #1c1c1c;
    color: white;
    padding: 2rem 1rem;
    font-family: 'Arial', sans-serif;
  }
  
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
  }
  
  .footer-about,
  .footer-links,
  .footer-service {
    flex: 1;
    min-width: 250px;
    margin: 1rem;
  }
  
  .footer-about h3,
  .footer-service h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: bold;
  }
  
  .footer-about p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #ccc;
  }
  
  .footer-links ul {
    list-style-type: disc;
    padding-left: 1rem;
  }
  
  .footer-links li {
    margin: 0.5rem 0;
  }
  
  .footer-links a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
  }
  
  .footer-links a:hover {
    color: #90caf9;
  }
  
  .footer-service .contact-item {
    background-color: #ccc;
    color: #000;
    padding: 0.5rem;
    margin-bottom: 0.5rem;
    text-align: center;
    border-radius: 5px;
    font-size: 0.9rem;
    word-wrap: break-word;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
  
    .footer-about,
    .footer-links,
    .footer-service {
      margin: 1rem 0;
    }
  
    .footer-links ul {
      padding-left: 0;
      list-style-position: inside;
    }
  }
