/* This makes the page look cleaner */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
    max-width: 800px;
    margin: 0 auto; /* Centers the content */
    padding: 20px;
}

/* Style the main container */
main {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Style the main page title */
h1 {
    color: #d93025; /* A reddish color */
    border-bottom: 2px solid #f4f4f4;
    padding-bottom: 10px;
}

/* Style each listing section */
.listing {
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
    margin-bottom: 15px;
}

/* Style the business names */
h2 {
    color: #1a0dab; /* A blueish color */
    margin-bottom: 5px;
}

/* Style the details */
.address, .phone {
    font-style: italic;
    color: #555;
    margin: 0;
}

.description {
    margin-top: 10px;
}