body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
    margin-top: 30px;
    margin-bottom: 100px;
  }
  
  header {
    padding: 20px;
  }
  
  h1 {
    font-size: 35px;
    font-weight: 500;
  }
  
  main {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    padding: 20px;
  }
  
  section {
    text-align: center;
    width: 100%;
  }
  
  h2 {
    font-size: 30px;
    text-align: left;
    margin-left: 320px;
    margin-bottom: 40px;
    font-weight: 500;
  }
  
  ul {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    width: 850px;
  }
  
  .location-btn {
    display: block;
    padding: 15px 20px;
    border: 1px solid #ccc;
    border-radius: 10px;
    text-decoration: none;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    color: black;
    background-color: white;
    transition: background-color 0.3s;
  }
  
  .location-btn:hover {
    background-color: white;
  }
  
  .location-btn span {
    font-size: 12px;
    color: gray;
  }