
/* CSS for section section:contact-form */
.contact-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 24px;
    min-height: calc(100vh - 89px - 272px); /* Fallback for viewport height minus header/footer */
  }

  .contact-container {
    max-width: 480px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .contact-title {
    font-family: 'jf-openhuninn-2.1', sans-serif;
    font-size: 30px;
    font-weight: 400;
    line-height: 40px;
    color: var(--text-light);
    margin: 0 0 54px 0;
  }

  .contact-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .form-group input,
  .form-group textarea {
    width: 100%;
    background-color: var(--bg-dark-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 16px;
    font-family: 'jf-openhuninn-2.1', sans-serif;
    font-size: 16px;
    color: var(--text-light);
  }

  .form-group input::placeholder,
  .form-group textarea::placeholder {
    color: var(--text-muted);
    opacity: 0.5;
  }

  .form-group textarea {
    min-height: 144px;
    resize: vertical;
  }

  .submit-button {
    align-self: center;
    background-color: #f2f2f2;
    color: var(--bg-dark-primary);
    border: none;
    border-radius: 12px;
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 700;
    line-height: 21px;
    cursor: pointer;
    margin-top: 22px;
    transition: background-color 0.3s;
  }

  .submit-button:hover {
    background-color: #dddddd;
  }

  .alt-contact {
    text-align: center;
    margin-top: 61px;
  }

  .alt-contact h3 {
    font-family: 'jf-openhuninn-2.1', sans-serif;
    font-size: 30px;
    font-weight: 400;
    margin: 0 0 16px 0;
    line-height: 1;
  }

  .alt-contact p {
    font-family: 'jf-openhuninn-2.1', sans-serif;
    font-size: 18px;
    font-weight: 400;
    margin: 0;
    line-height: 1;
  }
