.kontak-content {
  padding: 60px 100px;
  max-width: 1500px;
  margin: 0 auto;
  width: 100%;
}

.kontak-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
  margin-top: 20px;
}

.kontak-left {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.kontak-left .main-img {
  width: 100%;
  max-width: 550px;
  object-fit: contain;
}

.kontak-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
  justify-content: center;
}

.kontak-title {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  color: #e22326;
  font-size: 55px;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.kontak-desc {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  color: #000000;
  font-size: 16px;
  line-height: 1.6;
  max-width: 500px;
  margin-bottom: 20px;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 25px;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.contact-item:hover {
  transform: translateX(10px);
}

.contact-item img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.contact-item span {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  color: #e22326;
  font-size: 26px;
  line-height: 1.2;
}

.contact-links .contact-item:nth-child(1) img {
  width: 90px; /* Atur ukuran lebar khusus untuk ikon IG */
  height: 90px; /* Atur ukuran tinggi khusus untuk ikon IG */
  margin-left: -15px;
  margin-right: -15px;
  margin-bottom: -5px;
}