* {
      box-sizing: border-box;
      font-family: "Poppins", sans-serif;
    }

    body {
      background: linear-gradient(135deg, #74b9ff, #a29bfe);
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100vh;
      margin: 0;
    }

    .contact-form {
      background: white;
      padding: 30px 40px;
      border-radius: 15px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
      width: 100%;
      max-width: 500px;
    }

    .contact-form h2 {
      text-align: center;
      margin-bottom: 25px;
      color: #2d3436;
    }

    .contact-form .label {
      font-weight: 500;
      color: #2d3436;
      display: block;
      margin-bottom: 6px;
      margin-top: 12px;
    }

    .contact-form input,
    .contact-form textarea {
      width: 100%;
      padding: 10px 12px;
      border: 1px solid #dfe6e9;
      border-radius: 8px;
      font-size: 15px;
      transition: 0.2s ease;
      resize: none;
    }

    .contact-form textarea {
      margin-bottom: 10px;
    }

    .contact-form input:focus,
    .contact-form textarea:focus {
      outline: none;
      border-color: #0984e3;
      box-shadow: 0 0 4px rgba(9, 132, 227, 0.3);
    }

    .contact-form .btn {
      width: 100%;
      margin-top: 20px;
      padding: 12px;
      background: #0984e3;
      border: none;
      color: white;
      font-size: 16px;
      font-weight: 600;
      border-radius: 8px;
      cursor: pointer;
      transition: 0.3s ease;
    }

    .contact-form .btn:hover {
      background: #74b9ff;
    }