body {
    margin: 0;
    font-family: 'Helvetica Neue', sans-serif;
    background: #f9f9f9;
    color: #333;
    text-align: center;
  }
  
  .container {
    max-width: 500px;
    margin: 0 auto;
    padding: 2rem;
  }
  
  .logo {
    width: 100%;
    height: auto;
    margin-bottom: 1rem;
  }
  
  h1 {
    font-size: 2rem;
    margin: 0.5rem 0;
  }
  
  p {
    color: #666;
    margin-bottom: 2rem;
  }
  
  .links a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    color: white;
    text-decoration: none;
    margin: 0.5rem 0;
    padding: 1rem;
    border-radius: 10px;
    transition: background 0.3s ease, transform 0.2s ease;
    font-size: 1rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  }
  
  .links a svg {
    flex-shrink: 0;
  }
  
  .links a:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 10px rgba(0,0,0,0.15);
  }
  
  /* Themed link colors */
  .link-instagram {
    background-color: #158256;
  }
  .link-instagram:hover {
    background-color: #1e9c67;
  }
  
  .link-facebook {
    background-color: #409247;
  }
  .link-facebook:hover {
    background-color: #51a75a;
  }
  
  .link-email {
    background-color: #2069a4;
  }
  .link-email:hover {
    background-color: #2e7bbd;
  }
  
  .link-phone {
    background-color: #454c92;
  }
  .link-phone:hover {
    background-color: #5860aa;
  }

  .image-gallery {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 2rem auto;
    overflow: hidden;
    border-radius: 12px;
  }
  
  .image-gallery img {
    position: absolute;
    width: 100%;
    height: auto;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 1s ease-in-out;
  }
  
  .image-gallery img.active {
    opacity: 1;
    position: relative;
  }
  