
.judul1 {
      background-image: url('../images/bg_4.jpg'); /* Ganti dengan URL gambarmu */
      background-size: cover;
      background-position: center;
      width: 100%; /* lebar elemen */
      height: 200px; /* tinggi elemen */
      display: flex;
      justify-content: center;
      align-items: center;
      color: white; /* warna teks */
      font-size: 2em;
      text-shadow: 2px 2px 4px rgba(0,0,0,0.7); /* bayangan agar teks terlihat */
}

    .email-button {
      display: inline-flex;
      align-items: center;
      background-color: #004d99;
      color: white;
      text-decoration: none;
      padding: 12px 20px;
      border-radius: 8px;
      font-size: 16px;
      font-family: Arial, sans-serif;
      transition: background-color 0.3s;
    }

    .email-button:hover {
      background-color: #66b3ff;
	  color: white;
    }

    .email-button img {
      width: 20px;
      height: 20px;
      margin-right: 10px;
    }

	
.whatsapp-button {
      display: inline-flex;
      align-items: center;
      background-color: #00cc00; /* Warna hijau WhatsApp */
      color: white;
      text-decoration: none;
      padding: 12px 20px;
      border-radius: 8px;
      font-size: 16px;
      font-weight: bold;
      transition: background-color 0.3s;
    }

    .whatsapp-button:hover {
      background-color: #00e600;
	  color: white;
    }

    .whatsapp-button img {
      width: 20px;
      height: 20px;
      margin-right: 10px;
    }


	.language-switcher {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  gap: 10px;
}

.flag-icon {
  width: 24px;
  height: 16px;
  border: 1px solid #fff;
  cursor: pointer;
  border-radius: 2px;
  transition: transform 0.2s ease;
}

.flag-icon:hover {
  transform: scale(1.1);
}



 .social-icons {
    margin-top: 20px;
  }

  .social-circle {
    display: inline-block;
    width: 40px;
    height: 40px;
    margin-right: 10px;
    background-color: #f26522; /* Oranye */
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    transition: background-color 0.3s ease;
  }

  .social-circle img {
    width: 20px;
    height: 20px;
    vertical-align: middle;
  }

  .social-circle:hover {
    background-color: #e5530d;
  }	
  

    .dropdown {
      position: relative;
      display: inline-block;
    }

    .dropdown-button {
      background-color: #3498db;
      color: white;
      padding: 10px 16px;
      font-size: 16px;
      border: none;
      cursor: pointer;
      border-radius: 5px;
    }

    .dropdown-content {
      display: none;
      position: absolute;
      background-color: white;
      min-width: 160px;
      box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
      z-index: 1;
      border-radius: 4px;
    }

    .dropdown-content a {
      color: black;
      padding: 10px 14px;
      text-decoration: none;
      display: block;
    }

    .dropdown-content a:hover {
      background-color: #f1f1f1;
    }

    .dropdown:hover .dropdown-content {
      display: block;
    }

    .dropdown:hover .dropdown-button {
      background-color: #2980b9;
    }
  
  
  
  	.pagination-container {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

.pagination {
  display: flex;
  gap: 6px;
}

.pagination a {
  color: #f4511e;
  padding: 8px 16px;
  text-decoration: none;
  border: 1px solid #f4511e;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.pagination a:hover {
  background-color: #f4511e;
  color: white;
}

.pagination a.active {
  background-color: #f4511e;
  color: white;
  font-weight: bold;
}
	
	