body#page {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
  }
  
  .site-main {
    flex: 1;
  }
  
  .modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
    z-index: 1000;
  }
  
  .modal-content {
    position: relative;
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 0.5rem;
    max-width: 400px;
    width: 90%;
    color: #000000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  }
  
  .close-modal {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    font-size: 1.25rem;
    cursor: pointer;
    color: #888;
  }
  .close-modal:hover {
    color: #000;
  }
  
  .modal-content h2 {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.5rem;
  }
  
  .modal-content form label {
    display: block;
    margin-bottom: 0.25rem;
    font-weight: 600;
  }
  .modal-content form input,
  .modal-content form textarea {
    width: 100%;
    padding: 0.5rem;
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    border-radius: 0.25rem;
    font-size: 1rem;
    font-family: inherit;
    box-sizing: border-box;
  }
  
  .modal-content form button {
    width: 100%;
    padding: 0.75rem;
    border: none;
    border-radius: 0.25rem;
    background-color: #000000;
    color: #ffffff !important;
    font-size: 1rem;
    cursor: pointer;
  }
  .modal-content form button:hover {
    background-color: #333333;
  }
  
  .button {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 0.25rem;
    background-color: #ffffff;
    color: #ffffff;
    cursor: pointer;
    font-size: 1rem;
  }
  .button:hover {
    background-color: #333333;
  }
  
  .footer-content {
    text-align: center;
  }
  
  .grecaptcha-badge { visibility: hidden !important; }
  