body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background: #f7f7f7;
    color: #333;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
  }
  
  header {
    display: flex;
    justify-content: space-between;
    padding: 1rem 2rem;
    background: #ffffff;
    border-bottom: 1px solid #eee;
  }
  
  .logo {
    font-weight: bold;
    font-size: 1.5rem;
  }
  
  .lang-switcher button {
    margin-left: 0.5rem;
    border: none;
    background: transparent;
    cursor: pointer;
    font-weight: bold;
  }
  
  main {
    flex: 1;
    padding: 2rem;
    text-align: center;
  }
  
  main h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  main p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
  }
  
  .buttons a {
    text-decoration: none;
    margin: 0 0.5rem;
    padding: 0.7rem 1.2rem;
    background: #007bff;
    color: white;
    border-radius: 5px;
  }
  
  footer {
    padding: 1rem;
    text-align: center;
    background: #fff;
    border-top: 1px solid #eee;
  }
  
  .gif-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    margin: 2rem 0;
  }
  
  .gif-wrapper img {
    max-width: 50%;
    max-height: 50%;
    object-fit: contain;
    width: auto;
    height: auto;
  }

/* Mobile responsive styles */
@media (max-width: 768px) {
  .gif-wrapper img {
    max-width: 80%;
    max-height: 60%;
  }
}

@media (max-width: 480px) {
  .gif-wrapper img {
    max-width: 90%;
    max-height: 50%;
  }
}