/* Basic Reset & Defaults */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
      Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji",
      "Segoe UI Symbol";
    line-height: 1.6;
    background-color: #f4f7f6; /* A light, neutral background */
    color: #333;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
  }
  
  .container {
    width: 100%;
    max-width: 900px; /* Adjust as needed for flyer optimal viewing */
    margin: 0 auto;
    background-color: #fff;
    padding: 20px 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }
  
  header {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
  }
  
  header h1 {
    font-size: 1.8rem;
    color: #d9534f; /* A color sampled from the flyer's title */
    font-weight: 600;
  }
  
  .flyer-display {
    text-align: center; /* Centers the image if it's smaller than container */
    margin-bottom: 30px;
  }
  
  .flyer-image {
    max-width: 100%; /* Makes the image responsive */
    height: auto; /* Maintains aspect ratio */
    display: block; /* Removes extra space below image */
    margin: 0 auto; /* Centers the image if its max-width is less than container */
    border: 1px solid #ddd; /* Optional: adds a light border around the image */
    border-radius: 4px; /* Optional: slightly rounded corners for the image */
  }
  
  footer {
    text-align: center;
    font-size: 0.9rem;
    color: #555;
    padding-top: 20px;
    border-top: 1px solid #eee;
    margin-top: 20px;
  }
  
  footer p {
    margin-bottom: 8px;
  }
  
  footer a {
    color: #0275d8; /* A standard link color */
    text-decoration: none;
  }
  
  footer a:hover {
    text-decoration: underline;
  }
  
  /* Responsive adjustments */
  @media (max-width: 768px) {
    header h1 {
      font-size: 1.5rem;
    }
    .container {
      padding: 15px 20px;
    }
  }
  
  @media (max-width: 480px) {
    header h1 {
      font-size: 1.3rem;
    }
    footer {
      font-size: 0.8rem;
    }
  }