* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Roboto", sans-serif;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.container {
  background: white;
  border-radius: 15px;
  padding: 30px 30px 20px;
  max-width: 500px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  text-align: center;
}

h1 {
  color: #333;
  margin-bottom: 10px;
  font-size: 28px;
  font-weight: 900;
}

.section {
  margin-bottom: 15px;
}

.section h2 {
  color: #4b4b4b;
  font-size: 18px;
  margin-bottom: 5px;
}

a {
  display: inline-block;
  color: #667eea;
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 8px;
  margin: 8px;
  font-weight: bold;
  border: 2px solid #667eea;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.social-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 15px;
  width: 100px;
  height: 100px;
  border-radius: 12px;
  text-decoration: none;
  color: white;
  font-weight: bold;
  font-size: 14px;
  position: relative;
  overflow: hidden;
  border: none;
}

.social-btn .icon {
  font-size: 40px;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
}

.social-btn .icon img {
  width: 50px;
  height: 50px;
  padding: 2px;
  background-color: #fff;
  border-radius: 10px;
}

.social-btn.instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: white;
  border: none;
}

.social-btn.instagram img {
  border-radius: 12px;
}

.social-btn.booksy {
  background: linear-gradient(135deg, teal 0%, #b493d4 100%);
  color: white;
  border: none;
}

.contact-info {
  background: #f1f1f1;
  padding: 15px;
  border-radius: 8px;
  margin: 5px 0;
  color: #333;
}

.phone {
  font-size: 24px;
  font-weight: bold;
  color: #667eea;
}

.address {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}