
  /* full-width dark panel, from your services page */
  .contact-panel {
    width: 100%;
    background-color: #1a1a1a;
    padding: 80px 0;
  }

  /* gold-boxed content, from your services page */
  .contact-panel .contact-wrapper {
    width: 85%;
    max-width: 900px; /* Adjusted for a form layout */
    margin: 0 auto;
    padding: 50px 30px;
    text-align: center;
    border: 2px solid #ffd700;
    border-radius: 8px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.4);
  }

  /* Main title, from your services page */
  .contact-panel .contact-wrapper h1 {
    font-size: 4rem;
    color: #ffd700;
    margin-bottom: 2.5rem;
    font-weight: 700;
    letter-spacing: 0.5px;
  }
  
  /* --- Form Specific Styles --- */
  
  /* This is the div that wraps each field (label + input) */
  .form-field {
    text-align: left;
    margin-bottom: 1.5rem;
  }

  /* This targets the labels (Your Name, Your Email, etc.) */
  .form-label {
    color: #eee;
    font-size: 1.2rem;
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
  }

  /* This targets the actual input boxes and the message area */
  input[type="text"],
  input[type="email"],
  textarea {
    width: 100%;
    background-color: #333;
    border: 1px solid #555;
    color: #fff;
    padding: 12px 15px;
    border-radius: 4px;
    font-size: 1.1rem;
    box-sizing: border-box; /* Ensures padding doesn't break the layout */
  }

  /* This adds the gold highlight when a user clicks into a field */
  input[type="text"]:focus,
  input[type="email"]:focus,
  textarea:focus {
      border-color: #ffd700;
      outline: none;
  }

  /* This targets the submit button inside your form with high specificity */
  .contact-wrapper form button[type="submit"] {
      display: inline-block;
      background-color: #ffd700;
      color: #1a1a1a;
      border: none;
      padding: 15px 30px;
      min-width: 250px;
      font-size: 1.3rem;
      font-weight: 700;
      text-align: center;
      border-radius: 4px;
      cursor: pointer;
      margin-top: 1rem;
      transition: background-color 0.3s ease;
  }

  /* This targets the hover state with the same high specificity */
  .contact-wrapper form button[type="submit"]:hover {
      background-color: #e6c300;
  }

