* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

header {
    text-align: center;
    margin-bottom: 60px;
    padding-bottom: 20px;
    border-bottom: 1px solid #ddd;
}

.app-icon {
    width: 120px;
    height: 120px;
    margin-bottom: 20px;
    border-radius: 20px;
}

h1 {
    font-size: 36px;
    font-weight: normal;
    margin-bottom: 10px;
}

.business-name {
    font-size: 14px;
    color: #666;
}

main {
    margin-bottom: 60px;
}

section {
    margin-bottom: 40px;
}

h2 {
    font-size: 24px;
    font-weight: normal;
    margin-bottom: 20px;
}

p {
    margin-bottom: 15px;
}

a {
    color: #0066cc;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

footer {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #ddd;
    font-size: 14px;
    color: #666;
}
