* {
  margin: 0;
  padding: 0;
  font-family: "Montserrat", sans-serif;
  box-sizing: border-box;
}

body {
  background-image: url('1.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}

.contact-info {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  padding: 20px;
}

.card {
  background: rgba(44, 44, 44, 0.4);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  width: 280px;
  height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all 0.3s ease;
  text-align: center;
}

.card:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.card-icon {
  font-size: 32px;
  color: #1e90ff;
  margin-bottom: 15px;
  transition: transform 0.3s ease;
}

.card:hover .card-icon {
  transform: scale(1.4);
}

.card p {
  font-size: 16px;
  letter-spacing: 1px;
  opacity: 0.8;
}

@media screen and (max-width: 768px) {
  .contact-info {
    flex-direction: column;
    align-items: center;
  }

  .card {
    width: 90%;
  }
}
