
    .social {
      margin: 0;
      padding: 0;
      height: 80vh;
      background-color: #f5f5f5;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .social-box {
      background-color: white;
      padding: 30px;
      border-radius: 12px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
      max-width: 900px;
    }

    .social-box h2 {
      margin-bottom: 10px;
    }

    .social-box p {
      margin-bottom: 20px;
      font-size: 16px;
      color: #333;
    }

    .social-icons {
      display: flex;
      flex-direction: column;
      gap: 15px;
      width: 100%;
    }

    .social-icons a {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 10px;
      text-decoration: none;
      color: white;
      background-color: #444;
      padding: 10px 15px;
      border-radius: 25px;
      font-size: 18px;
      transition: transform 0.3s ease;
      width: 100%;
      box-sizing: border-box;
    }

    .social-icons a:hover {
      transform: scale(1.05);
    }

    .social-icons i {
      font-size: 20px;
    }

    .instagram { background-color: #E4405F; }
    .pinterest { background-color: #BD081C; }
    .email { background-color: #444444; }