.contact-wrapper {
    max-width: 800px;
    margin: 2rem auto;
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  }
  
  .contact-wrapper h1 {
    color: #004aad;
    margin-bottom: 0.5rem;
  }
  
  .contact-wrapper .intro {
    color: #555;
    margin-bottom: 2rem;
    line-height: 1.5;
  }
  
  .contact-form label {
    display: block;
    margin-bottom: 0.3rem;
    font-weight: 500;
  }
  
  .contact-form input,
  .contact-form textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-bottom: 1rem;
    font-size: 1rem;
  }
  
  .contact-form textarea {
    resize: vertical;
    min-height: 120px;
  }
  
  .contact-form button {
    background: #004aad;
    color: white;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
  }
  
  .contact-form button:hover {
    background: #003580;
  }
  
  .contact-info {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
  }
  
  .contact-info h2 {
    color: #004aad;
    margin-bottom: 0.5rem;
  }
  