html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    background: #f9f9f9;
    font-family: Arial, sans-serif;
    color: #333;
  }
  
  .content {
    width: 100%;
    margin: 0 auto;
    padding: 60px 20%;
    background: #fff;
    box-sizing: border-box;
  }
  
  h1 {
    font-size: 2.0em;
    text-align: center;
    margin-top: 1.5em;
    margin-bottom: 1em;
    color: #333;
  }

  h2 {
    font-size: 1.5em;
    text-align: left;
    margin-top: 1em;
    margin-bottom: 0.5em;
    color: #333;
  }

  p {
    line-height: 1.5;
  }

  #image-container {
    margin-left: 10%;
    margin-right: 10%;
    background: #fff;
    overflow: hidden;
    position: relative;
  }

  #image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  #container1 {
    margin-left: 25%;
    margin-right: 25%;
    aspect-ratio: 1;
  }

  #container2 {
    margin-left: 25%;
    margin-right: 25%;
    aspect-ratio: 3 / 2;
  }

  #container3 {
    margin-left: 25%;
    margin-right: 25%;
    aspect-ratio: 5 / 3;
  }

  #container4 {
    margin-left: 25%;
    margin-right: 25%;
    aspect-ratio: 5 / 3;
  }

  #container5 {
    margin-left: 35%;
    margin-right: 35%;
    aspect-ratio: 1 / 1.5;
  }

  #container6 {
    margin-left: 20%;
    margin-right: 20%;
    aspect-ratio: 1 / 1.4;
  }

  #container7 {
    margin-left: 15%;
    margin-right: 15%;
    aspect-ratio: 1.5 / 1;
  }

  .zoomable-container {
    margin-left: 25%;
    margin-right: 25%;
    aspect-ratio: 5 / 4;
    background: #fff;
    overflow: hidden;
    position: relative;
  }

  .zoomable-container img {
    position: absolute;
    transform-origin: top left;
    cursor: grab;
  }

  .zoom-controls {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    gap: 5px;
    z-index: 10; /* Ensure they sit above the image */
  }
  
  .zoom-controls button {
    background: rgba(255, 255, 255, 0.8); /* Slightly transparent white */
    border: 1px solid #ccc;
    border-radius: 3px;
    padding: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
  }
  
  .zoom-controls button:hover {
    background: rgba(240, 240, 240, 0.9);
  }
  
  .zoom-controls button svg {
    width: 12px;
    height: 12px;
    fill: #333; /* Dark fill for contrast */
  }
