.contact-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    padding: 110px 24px;
  }
  
  .contact-container {
    max-width: 520px;
    margin: 0 auto;
    text-align: center;
  }
  
  .contact-header h2 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 14px;
    color: #6b7280;
  }
  
  .contact-header p {
    font-size: 1rem;
    color: #6b7280;
    margin-bottom: 50px;
  }
  
  .contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }
  
  .contact-form input,
  .contact-form select {
    padding: 16px;
    font-size: 0.95rem;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    outline: none;
  }
  
  .contact-form button {
    padding: 18px;
    border: none;
    border-radius: 999px;
    background: #6b7280;
    color: #ffffff;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .contact-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(15, 23, 42, 0.25);
  }