.contacts-page {
  background: linear-gradient(135deg, #f5f5f5, #e0e0e0);
  color: #1e1e1e;
  padding: 50px 20px;
  max-width: 800px;
  margin: 40px auto;
  border-radius: 8px;
}

.contacts-page h1,
.contacts-page h2 {
  margin-bottom: 20px;
  margin-top: 20px;
  color: #1e1e1e;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #fff;
  padding: 15px 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}

.contact-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.contact-icon {
  font-size: 1.5rem;
  margin-right: 15px;
}

.contact-info {
  font-size: 1.1rem;
  flex: 1;
}

.contact-btn {
  text-decoration: none;
  background-color: #007BFF;
  color: #fff;
  padding: 10px 18px;
  border-radius: 6px;
  font-weight: bold;
  transition: background 0.3s, transform 0.3s;
}

.contact-btn:hover {
  background-color: #0056b3;
  transform: translateY(-2px);
}

.coming-soon {
  opacity: 0.7;
  font-style: italic;
}

section h2 {
  text-align: center;
}


/* Responsive */
@media (max-width: 768px) {
  .contact-item {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .contact-btn {
    width: 100%;
    text-align: center;
  }

  section p,
  section h2 {
    display: none;
  }
}