.details-btn {
  padding: 10px 20px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

/* Overlay */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(5px);
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.popup-overlay.show {
  display: flex;
}

/* Popup box */
.popup-box {
  background-color: #fff;
  padding: 20px 30px;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  max-width: 600px;
  width: 90%;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 3rem;
}

.contact-item a {
  font-size: 2rem;
  color: #333;
  text-decoration: none;
  margin-left: 1rem;
  font-weight: 500;
  line-height: 1.5;
}

.contact-item img {
  width: 2.6rem;
  height: 2.6rem;
  margin-right: 12px;
}
