   * { margin: 0; padding: 0; box-sizing: border-box; font-family: Arial, sans-serif; }

    body {
      height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg, #0f0f0f, #2b2b2b);
      color: #fff;
      text-align: center;
    }

    .container {
      max-width: 700px;
      width: 90%;
      padding: 40px;
      background: rgba(255, 255, 255, 0.04);
      border-radius: 20px;
      box-shadow: 0 15px 40px rgba(0,0,0,0.6);
      backdrop-filter: blur(12px);
    }

    h1 {
      font-size: 42px;
      margin-bottom: 10px;
      color: #e9e9e9;
      letter-spacing: 1px;
    }

    p {
      font-size: 16px;
      margin-bottom: 20px;
      color: #bbb;
    }


    .contact {
      margin-top: 25px;
      border-top: 1px solid rgba(255,255,255,0.1);
      padding-top: 20px;
    }

    .contact-title {
      margin-bottom: 15px;
      font-size: 18px;
      font-weight: bold;
      color: #ffffff;
    }

    .contact-grid {
        width: 40%;
        margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0px;
      justify-items: center;
    }



    .contact-item {
      text-decoration: none;
      color: #fff;
      display: flex;
      flex-direction: column;
      align-items: center;
      transition: 0.3s;
    }

    .circle {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background: #F9BF15;
      color: #000;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 28px;
      margin-bottom: 8px;
      transition: 0.3s;
    }

    .contact-item:hover .circle {
      transform: translateY(-5px) scale(1.1);
    }

    .contact-item span {
      font-size: 13px;
      color: #ccc;
    }

    i {
      font-size: 25px;
    }

    @media (max-width: 500px) {
 .contact-grid {
        width: 70%;
        margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0px;
      justify-items: center;
    }
      .circle {
        width: 50px;
        height: 50px;
        font-size: 22px;
      }

      h1 { font-size: 30px; }
      .container { padding: 25px; }
    }