
  .contact-container {
    max-width: 700px;
    margin: auto;
    padding: 2rem;
    font-family: "Poppins", sans-serif;
    color: #333;
  }

  .contact-container h1 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    color: #111;
  }

  .contact-intro {
    text-align: center;
    font-size: 1rem;
    margin-bottom: 2rem;
    color: #555;
  }

  .contact-form {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }

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

  .form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
  }

  .form-group input,
  .form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #ccc;
    border-radius: 10px;
    font-size: 1rem;
    outline: none;
    transition: border 0.3s ease;
  }

  .form-group input:focus,
  .form-group textarea:focus {
    border-color: #6b4ce6;
  }

  .contact-btn {
    width: 100%;
    padding: 1rem;
    background: #6b4ce6;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
  }

  .contact-btn:hover {
    background: #5a3fcc;
    transform: translateY(-2px);
  }

