body {
    font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
    background-color: #121212;
    margin: 0;
    padding: 0;
    color: #f5f5f5;
    line-height: 1.6;
  }
  
  .container {
    max-width: 800px;
    margin: 60px auto;
    padding: 0;
    background-color: #1e1e1e;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    
  }
  
  h1 {
    font-size: 32px;
    font-weight: 700;
    margin: 0;
    padding: 40px 40px 10px;
    color: #ffffff;
    position: relative;
    margin-top: 100px; /* Added padding to the top to avoid nav menu overlap */
  }
  
  h1::after {
    content: '';
    position: absolute;
    left: 40px;
    bottom: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #f04e3c, #ff7e5f);
    border-radius: 2px;
  }
  
  form {
    padding: 30px 40px 40px;
  }
  
  form label {
    display: block;
    margin-bottom: 8px;
    color: #e0e0e0;
    font-weight: 500;
    font-size: 15px;
  }
  
  form input[type="text"],
  form input[type="tel"],
  form input[type="email"],
  form textarea {
    width: 100%;
    padding: 14px 16px;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    font-size: 16px;
    transition: all 0.2s ease;
    box-sizing: border-box;
  }
  
  form input:focus,
  form textarea:focus {
    outline: none;
    border-color: #f04e3c;
    background-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 4px rgba(240, 78, 60, 0.15);
  }
  
  form textarea {
    height: 180px;
    resize: vertical;
    line-height: 1.5;
  }
  
  form button {
    background: linear-gradient(to right, #f04e3c, #ff7e5f);
    color: #fff;
    padding: 14px 28px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 4px 12px rgba(240, 78, 60, 0.3);
  }
  
  form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(240, 78, 60, 0.4);
  }
  
  form button:active {
    transform: translateY(1px);
    box-shadow: 0 2px 8px rgba(240, 78, 60, 0.4);
  }
  
  /* Responsive adjustments */
  @media (max-width: 768px) {
    .container {
      margin: 30px 20px;
      margin-top: 100px; /* Maintain top padding on mobile */
      border-radius: 12px;
    }
    
    h1 {
      font-size: 28px;
      padding: 30px 25px 10px;
    }
    
    form {
      padding: 20px 25px 30px;
    }
  }
  
  /* Placeholder styling */
  ::placeholder {
    color: rgba(255, 255, 255, 0.4);
  }
  
  /* Focus state indicator for accessibility */
  input:focus-visible,
  textarea:focus-visible,
  button:focus-visible {
    outline: 2px solid #f04e3c;
    outline-offset: 2px;
  }
  
  /* Adding subtle animations */
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
  .container {
    animation: fadeIn 0.4s ease-out;
  }
  
  /* Improving form field states */
  input.error,
  textarea.error {
    border-color: #ff4d4d;
    background-color: rgba(255, 77, 77, 0.08);
  }
  
  .error-message {
    color: #ff4d4d;
    font-size: 14px;
    margin-top: -16px;
    margin-bottom: 16px;
    display: block;
  }

 