* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: "Poppins", sans-serif;
    }

    body {
      display: flex;
      align-items: center;
      justify-content: center;
      height: 100vh;
      background-color: #bfbfbf;
      flex-direction: column;
      gap: 10px;
    }

    form[data-testid="test-contact-form"] {
      background: #fff;
      width: 340px;
      border-radius: 25px;
      overflow: hidden;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
      position: relative;
      text-align: center;
    }

    form::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 110px;
      background: linear-gradient(180deg, #d92027, #b31312);
      border-bottom-left-radius: 50px;
      border-bottom-right-radius: 50px;
    }

    h2 {
      position: relative;
      margin-top: 80px;
      color: #1a1a1a;
      font-size: 1.3rem;
      font-weight: 600;
      margin-bottom: 15px;
      z-index: 1;
    }

    .form-content {
      padding: 0 20px 30px;
      text-align: left;
      position: relative;
      z-index: 1;
    }

    .form-group {
      margin-bottom: 1rem;
    }

    label {
      display: block;
      font-size: 0.9rem;
      font-weight: 500;
      color: #333;
      margin-bottom: 5px;
    }

    input, textarea {
      width: 100%;
      padding: 10px;
      border: 1px solid #ddd;
      border-radius: 10px;
      font-size: 0.9rem;
      resize: none;
      transition: border-color 0.3s ease, box-shadow 0.3s ease;
    }

    input:focus, textarea:focus {
      outline: none;
      border-color: #d92027;
      box-shadow: 0 0 4px rgba(217, 32, 39, 0.3);
    }

    .error-message {
      color: #d92027;
      font-size: 0.8rem;
      margin-top: 4px;
      display: none;
    }

    .success-message {
      display: none;
      text-align: center;
      color: #0a8a36;
      background: #eaf9ed;
      padding: 10px;
      border-radius: 10px;
      margin-top: 10px;
    }

    button {
      width: 100%;
      background: linear-gradient(90deg, #d92027, #b31312);
      color: #fff;
      border: none;
      padding: 10px;
      border-radius: 10px;
      font-size: 1rem;
      cursor: pointer;
      transition: all 0.3s ease;
      margin-top: 8px;
    }

    button:hover {
      transform: translateY(-2px);
      box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
    } 
    nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
}

nav a {
  display: inline-block;
  text-decoration: none;
  background: linear-gradient(180deg, #d92027, #b31312);
  color: #fff;
  padding: 0.8rem 1.4rem;
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

nav a:hover,
nav a:focus {
  transform: translateY(-3px);
  background: linear-gradient(180deg, #b31312, #910d0c);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  outline: none;
}

nav a:active {
  transform: scale(0.97);
}

@media (max-width: 600px) {
  nav {
    flex-direction: column;
    gap: 1rem;
  }

  nav a {
    width: 80%;
    text-align: center;
  }
}  