body {
  font-family: 'Poppins', sans-serif;
  background: #fceabb; /* Светъл пастелен фон като арт студио */
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  margin: 0;
}

.container {
  width: 90%;
  max-width: 500px;
  background: #6a1b9a; /* Лилаво-артистичен тон */
  color: #fff;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.header h1 {
  font-size: 2rem;
  line-height: 1.2;
  margin: 0;
}

.header h2 {
  font-size: 1.2rem;
  font-weight: 300;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}

.social-btn {
  text-decoration: none;
  padding: 14px 16px;
  border-radius: 8px;
  color: #fff;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: #ff4081; /* Розово за артистичен вид */
}

.social-btn.google {
  color: #333;
  border: 1px solid #ddd;
  background: #fff;
}

.social-btn.instagram {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: #fff;
}

.social-btn.facebook {
  background: #1877F2;
  color: #fff;
}

.social-btn img {
  height: 24px;
}

.social-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.brand-logo-box {
  text-align: center;
  margin: 20px auto 10px;
}

.brand-logo-box img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

.divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin: 30px 0 20px;
}

.business-description-box {
  background: #fff;
  color: #333;
  font-size: 0.96rem;
  padding: 16px 20px;
  margin-top: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  text-align: center;
  line-height: 1.6;
  max-width: 95%;
}

.contact-info {
  margin-top: 30px;
  text-align: center;
}

.contact-info ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
}

.contact-info li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #eee;
  font-size: 0.95rem;
  max-width: 90%;
}

.contact-info .icon {
  flex-shrink: 0;
  font-size: 1rem;
}

.contact-info .info-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-info .label {
  font-weight: 600;
}

.contact-info a {
  color: #ffe600;
  text-decoration: underline;
}

.contact-info a:hover {
  color: #fff;
}

.footer {
  margin-top: 40px;
  color: #fff;
  font-size: 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}

.credit {
  display: flex;
  align-items: center;
  gap: 6px;
}

.credit .heart {
  color: #ff4081;
}

.credit a {
  color: #fff;
  background: #000;
  padding: 2px 4px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
}

.credit a:hover {
  background: #fff;
  color: #000;
}

.viber-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  margin-top: 10px;
  margin-bottom: 10px;
}

.social-btn.viber {
  background: #7c4bb8;
}

.viber-desc {
  font-size: 0.88rem;
  color: #fff;
  text-align: center;
  max-width: 90%;
  line-height: 1.4;
}