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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f5f5f5;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    max-width: 600px;
    margin: 2rem;
    padding: 3rem 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

h1 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.tagline {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

.content {
    margin: 2rem 0;
    padding: 2rem 0;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.content p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 1rem;
}

.coming-soon {
    font-style: italic;
    color: #888;
    margin-top: 1.5rem;
}

footer {
    margin-top: 2rem;
}

.contact {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.8;
}

.contact p {
    margin-bottom: 0.5rem;
}

.contact strong {
    color: #333;
}

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

.contact a:hover {
    text-decoration: underline;
}

@media (max-width: 640px) {
    h1 {
        font-size: 2rem;
    }

    .container {
        margin: 1rem;
        padding: 2rem 1.5rem;
    }
}
