<style>
  body {
    font-family: 'Segoe UI', sans-serif;
    margin: 0;
    background-color: #fff;
    color: #333;
  }

  .contact-info {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 80px;
    padding: 40px 20px;
    text-align: center;
    flex-wrap: wrap;
  }

  .info-block {
    flex: 1 1 200px;
  }

  .info-block img {
    width: 40px;
    height: 40px;
    margin-bottom: 15px;
  }

  .info-block h3 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 10px;
    font-family: serif;
  }

  .info-block p {
    margin: 0;
    font-size: 16px;
    color: #c9a295; /* Light brown shade */
  }

  .info-block a {
    color: #c9a295;
    text-decoration: none;
  }

  .info-block a:hover {
    text-decoration: underline;
  }

  .address {
    color: #5c6570; /* Grayish blue for address text */
  }
</style>