/* Gaya dasar */
body {
      font-family: Arial, sans-serif;
      background-color: #f9f9f9;
      margin: 0;
      padding: 0;
    }

.container {
      display: flex;
      justify-content: center;
      align-items: center;
      flex-wrap: wrap;
      max-width: 800px;
      margin: 50px auto;
      background: white;
      border-radius: 15px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      overflow: hidden;
    }

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  padding: 20px 60px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  border-radius: 30px;
  position: relative;
  margin: 50px auto 0;
  width: 83%;

}

.logo {
  color: #e67e22;
  font-weight: 700;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
}

nav a {
  text-decoration: none;
  color: #e67e22;
  font-weight: 500;
}

nav a.active {
  color: #1a237e;
  border-bottom: 2px solid #1a237e;
}

section {
  padding: 60px 80px;
}

.left img {
    width: 250px;
    height: 250px;
    object-fit: cover;
    border-radius: 50%;
    margin: 20px;
    border: 4px solid #4caf50;
    }

.right {
    flex: 1;
    padding: 20px;
    }

.right h2, .right h3 {
      color: #4caf50;
    }

.contact-box p {
      font-size: 16px;
      margin: 5px 0;
    }

.contact-box a {
      color: rgb(25, 61, 133);
      text-decoration: none;
    }

.contact-box a:hover {
      color: #4caf50;
    }

    /* Bagian ikon sosial media */
.social-icons {
      margin-top: 10px;
    }

.social-icons a {
      margin-right: 15px;
      display: inline-block;
      color: #333;
      font-size: 28px;
      transition: transform 0.3s, color 0.3s;
    }

.social-icons a:hover {
      transform: scale(1.2);
    }

    /* Warna hover berbeda untuk tiap ikon */
.fa-whatsapp:hover {
      color: #25D366;
    }
    
.fa-instagram:hover {
      color: #E4405F;
    }
    
.fa-envelope:hover {
      color: #0078D4;
    }

footer {
    text-align: center;
    padding: 10px;
    background: #333;
    color: white;
    font-size: 14px;
    margin-top: 30px;
    }

@media (max-width: 600px) {
    .container {
      flex-direction: column;
      text-align: center;
      }

.left img {
      margin-bottom: 20px;
      }
    }
