﻿* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  body {
    font-family: sans-serif;
    background: #fff;
    color: #111;
    margin: 0;
    padding: 2rem;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .container {
    max-width: 900px;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  
  .maintenance-block {
    margin: 1rem 0;
  }
  
  h1 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }
  
  .bold {
    font-weight: bold;
    font-size: 1.1rem;
    margin: 1rem 0;
  }
  
  .thank-you {
    margin-top: 1rem;
  }
  
  .divider {
    margin: 2rem auto;
    width: 60%;
    border: none;
    height: 1px;
    background-color: #ccc;
  }
  
  footer.logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
    align-items: center;
    margin-top: 4rem;
  }
  
  footer img {
    height: 40px;
    object-fit: contain;
  }
  
  .furnipart {
    font-weight: bold;
    font-size: 1rem;
  }
  
  /* Responsive styles */
  @media (max-width: 600px) {
    body {
      padding: 1rem;
    }
  
    h1 {
      font-size: 1.3rem;
    }
  
    .bold {
      font-size: 1rem;
    }
  
    .furnipart {
      display: block;
      margin-top: 1rem;
    }
  
    footer.logos {
      flex-direction: column;
      gap: 1rem;
    }
  }
  