html, body {
  overflow-x: hidden;
  background: var(--bg);
}
.about-container {
  max-width: 1000px;
  margin: 50px auto;
  padding: 20px;
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
  color: #333;
}

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

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

.about-subtitle {
  font-size: 24px;
  margin: 30px 0 15px;
  text-align: left;
  color: #222;
  border-left: 4px solid #d63384;
  padding-left: 10px;
}

.about-values {
  list-style: none;
  padding: 0;
  margin: 0 0 40px;
}

.about-values li {
  font-size: 18px;
  margin: 10px 0;
  padding: 12px;
  background: #f8f9fa;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.about-values li:hover {
  transform: translateX(10px);
  background: #fff3f8;
}

.about-socials {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 50px;
}

.social-btn {
  display: flex;
  padding: 10px 20px;
  border-radius: 8px;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease, transform 0.3s ease;
  width: 90px;
  justify-content: center;
}

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

.tiktok { background: #000; }
.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.telegram { background: #0088cc; }
.viber { background: #7360f2; }
.faq h3 {
  font-size: 20px;
  margin: 20px 0 5px;
  color: #d63384;
}

.faq p {
  margin: 0 0 15px;
  color: #444;
}

@media (max-width: 500px) {
  .about-socials {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    justify-items: center;
  }
}

.about-container a:not(.social-btn) {
  color: #d63384;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease, text-decoration 0.3s ease;
}

.about-container a:hover a:not(.social-btn) {
  color: #a0286a;
  text-decoration: underline;
}
