.contacts-container {
  max-width: 900px;
  margin: 50px auto;
  padding: 20px;
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
  color: #333;
}

.contacts-title {
  font-size: 32px;
  text-align: center;
  margin-bottom: 20px;
  color: #222;
}

.contacts-text {
  font-size: 18px;
  text-align: center;
  margin-bottom: 40px;
  color: #555;
}

.contacts-block {
  margin-bottom: 40px;
}

.contacts-block h2 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #d63384;
}

.phone-link {
  font-size: 20px;
  font-weight: bold;
  color: #000;
  text-decoration: none;
}

.phone-link:hover {
  text-decoration: underline;
}

.contacts-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 10px;
}

.social-btn {
  display: inline-block;
  padding: 12px 20px;
  border-radius: 8px;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.social-btn:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

.tiktok { background: #000; }
.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.telegram { background: #0088cc; }
.viber { background: #7360f2; }

@media (max-width: 600px) {
  .contacts-socials {
    flex-direction: column;
    align-items: center;
  }
  .social-btn {
    width: 200px;
    text-align: center;
  }
}
