* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
  }
  
  .popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .popup-content {
    background: white;
    padding: 20px;
    text-align: center;
    border-radius: 10px;
  }
  
  .popup-content button {
    margin: 10px;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
  }
  
  #confirm-yes { background: green; color: white; }
  #confirm-no { background: red; color: white; }
  
  .hidden {
    display: none;
  }
  
  .hero {
    background: url('Cognac-14.png') center/cover no-repeat;
    height: 700px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: whitesmoke;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    font-size: 2em;
    font-weight: bold;
  }
  
  main {
    padding: 40px;
    height: 700px;
    display: flex;
    justify-content: center;
    background-color: rgb(84, 65, 39);
  }
  
  .content {
    display: flex;
    max-width: 900px;
    align-items: center;
    gap: 40px;
  }
  
  .text-section {
    flex: 1;
    font-size: 18px;
    color: whitesmoke;
  }
  
  .image-section {
    display: flex;
    gap: 20px;
  }
  
  .image-box {
    width: 200px;
    border-radius: 10px;
    overflow: hidden;
  }
  
  .image-box img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
  }
.image-box img {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .image-box img:hover {
    transform: scale(1.1);
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.4);
  }
  
  
  footer {
    background: #222;
    color: white;
    text-align: center;
    padding: 10px 0;
    margin-top: 20px;
  }  
  