body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
  }

  .container {
    max-width: 500px;
    margin: 20px auto;
    position: relative;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
  }

  .image-container {
    position: relative;
    width: 100%;
    height: auto;
    border-radius: 8px 8px 0 0;
    overflow: hidden;
  }

  .image-container img {
    display: block;
    width: 100%;
  }

  .address {
    padding: 20px;
  }

  .address h2 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333; /* Adjust the color as needed */
  }

  .address p {
    margin: 0 0 10px;
    font-size: 14px;
    line-height: 1.5;
    color: #666; /* Adjust the color as needed */
  }

  .address a {
    color: #007bff; /* Adjust the color as needed */
    text-decoration: none;
  }

  .address a:hover {
    text-decoration: underline;
  }