*{
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
}

.social-section {
  background-color: #fff5e4;
  padding: 10px 20px;
}

.social-section h2 {
  color: #ff6f61;
  font-weight: bold;
  margin-bottom: 20px;
}

.social-icons {
  text-align: right;
}

.social-icons a {
  text-align: center;
  display: inline-block;
  margin: 8px;
  font-size: 20px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  color: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Different playful colors */
.social-icons .facebook {
  background: #3b5998;
}

.social-icons .twitter {
  background: #1da1f2;
}

.social-icons .instagram {
  background: #e1306c;
}

.social-icons .youtube {
  background: #ff0000;
}

/* Hover effect */
.social-icons a:hover {
  transform: scale(1.2) rotate(10deg);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}