
body {
    font-family: 'Inter', sans-serif;
    background-color: #f8f4ec;
    color: #2b2b2b;
    margin: 0;
    padding: 0;
  }
  .contact-container {
    max-width: 720px;
    margin: 0 auto;
    padding: 3rem 2rem;
  }
  .contact-container h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
  }
  .contact-container p.intro {
    text-align: center;
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: #555;
  }
  form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  input, textarea {
    padding: 0.75rem 1rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    width: 100%;
  }
  textarea {
    resize: vertical;
    min-height: 140px;
  }
  button {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    background-color: #5e2b2a;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  button:hover {
    background-color: #3d1817;
  }
  .direct-email {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.95rem;
  }
  .direct-email a {
    color: #5e2b2a;
    text-decoration: underline;
  }
  .social-follow {
    text-align: center;
    margin-top: 2rem;
  }
  .social-follow a {
    font-size: 1.25rem;
    margin: 0 0.5rem;
    color: #5e2b2a;
  }