/* Overall page styles */
body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    background-color: #b3c6a7; /* Pastel olive green */
  }
  
  /* Centering and responsive container */
  .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
  }
  
  /* Header styling */
  header h1 {
    font-size: 1.5em;
    margin-bottom: 20px;
  }
  
  /* Language switcher styling */
  .language-switcher {
    margin-bottom: 20px;
  }
  .language-switcher button {
    margin: 5px;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    background-color: #a8bfa8; /* Slightly darker than the background */
    color: #fff;
    font-size: 1em;
    cursor: pointer;
  }
  .language-switcher button:hover {
    background-color: #8fa08f;
  }
  
  /* Translucent panel container for content below header */
  .content-panel {
    background-color: rgba(255, 255, 255, 0.6); /* Translucent */
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
  }
  
  /* Ensure images are responsive and centered */
  img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
  }
  
  /* Layout for QR code section */
  .qr-section {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    flex-wrap: wrap;
  }
  
  .qr-item {
    flex: 1 1 45%;
    margin: 10px;
  }
  
  .qr-item p {
    margin-top: 10px;
    font-size: 1.2em;
  }
  
  /* Mobile responsiveness */
  @media (max-width: 600px) {
    .qr-section {
      flex-direction: column;
    }
    .qr-item {
      margin: 10px auto;
    }
  }
  