body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background-color: #f9f9f9;
}
.container {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.logo {
    display: block;
    margin: 0 auto 2rem;
}
h1, h2 {
    color: #2c3e50;
    text-align: center;
}
h2 {
    margin-top: 2rem;
    font-size: 1.5rem;
}
p {
    margin-bottom: 1rem;
}
a {
    color: #3498db;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}
.footer {
    text-align: center;
    font-size: 0.9rem;
    color: #666;
}
.links {
    margin: 2rem 0;
    text-align: center;
}
.links a {
    margin: 0 1rem;
}
.effective-date {
    text-align: center;
    color: #666;
    margin-bottom: 2rem;
}
.terms-section {
    margin: 2rem 0;
    padding: 1rem;
    border-bottom: 1px solid #eee;
}
.terms-section:last-child {
    border-bottom: none;
}
.terms-section h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
}
.contact-info {
    background-color: #f8f9fa;
    padding: 1rem;
    border-radius: 4px;
    margin-top: 1rem;
}
.list {
    list-style-type: none;
    padding-left: 1.5rem;
}
.list li {
    margin-bottom: 0.5rem;
    position: relative;
}
.list li:before {
    content: "•";
    position: absolute;
    left: -1rem;
    color: #666;
}