body {
      font-family: 'Inter', sans-serif;
      line-height: 1.6;
      margin: 0;
      padding: 0;
    }
    .contact-page {
      padding: 2rem;
      max-width: 800px;
      margin: auto;
    }
    .contact-hero h1 {
      font-size: 2rem;
      margin-bottom: 0.5rem;
    }
    .contact-form-section {
      margin-top: 2rem;
    }
    .contact-form label {
      font-weight: 600;
      display: block;
      margin-top: 1rem;
    }
    .contact-form input,
    .contact-form textarea {
      width: 100%;
      padding: 0.75rem;
      margin-top: 0.25rem;
      border: 1px solid #ccc;
      border-radius: 8px;
      font-size: 1rem;
    }
    .contact-form button {
      margin-top: 1.5rem;
      background: #2563eb;
      color: white;
      border: none;
      padding: 0.75rem 1.5rem;
      border-radius: 8px;
      font-size: 1rem;
      cursor: pointer;
      transition: background 0.3s ease;
    }
    .contact-form button:hover {
      background: #1e40af;
    }
    .contact-article {
      margin-top: 3rem;
    }
    .contact-article a {
      color: #2563eb;
      text-decoration: underline;
    }
    .hidden {
      display: none;
    }
