*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: "Geist Mono", monospace;
    margin: 4rem;
    background: #f9f9f9;
  }
  
  .hero_title {
    font-family: "Geist", sans-serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
  }
  
  .wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 3rem;
    margin-bottom: 2rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  }
  
  .name {
    font-family: "Geist", sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  
  .price {
    font-weight: bold;
    font-size: 1.2rem;
    color: #e63946;
    margin-bottom: 1rem;
  }
  
  .amenities {
    font-size: 0.9rem;
    margin: 1rem 0;
    color: #444;
  }
  
  .host_name {
    font-weight: bold;
    margin: 0.5rem 0;
  }
  
  .host_image {
    position: relative;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
  }
  
  /* Trust Meter */
  .trust-meter {
    margin-top: 1rem;
  }
  .meter-bar {
    background: #ddd;
    border-radius: 10px;
    overflow: hidden;
    height: 20px;
  }
  .meter-fill {
    height: 100%;
    background: linear-gradient(90deg, #6fcf97, #56ccf2);
    text-align: center;
    color: #fff;
    font-size: 0.8rem;
    font-weight: bold;
    line-height: 20px;
    width: 0%;
    transition: width 1s ease-in-out;
  }
  
  /* Eco Highlight */
  .eco-highlight {
    margin-top: 1rem;
    padding: 10px;
    border-left: 5px solid #6fcf97;
    background: #f0fff5;
    border-radius: 8px;
    font-style: italic;
  }
  