body {
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    font-family: sans-serif;
  }
  
  .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 5vh;
  }
  
  .logo {
    max-width: 200px;
    height: auto;
  }
  
  .site-footer {
    background-color: #cc7f73;
    width: 100%;
    text-align: center;
    padding: 10px 0;
    color: white;
  }
  
  .center-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
  }
  
  h1 {
    margin-bottom: 20px;
  }
  
  .black {
    color: black;
  }
  
  .white {
    color: #ffffff;
  }
  
  .footer-content {
    padding: 0.5rem;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .site-footer {
      font-size: larger;
    }
    
    .footer-content p, 
    .footer-content a {
      font-size: 18px;
    }
    
    .footer-content i {
      font-size: 1.2rem;
    }
  }
  
  @media (max-width: 480px) {
    .site-footer {
      font-size: larger;
    }
    
    .center-wrapper h1 {
      font-size: 2rem;
    }
    
    .footer-content p {
      font-size: 16px;
      line-height: 1.5;
      margin: 10px 0;
    }
    
    .footer-content i {
      font-size: 1.4rem;
    }
    
    .footer-content a {
      font-size: 16px;
    }
    
    .center-wrapper img {
      max-width: 250px;
    }
    
    .footer-content {
      padding: 1rem;
    }
  }