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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: white;
    color: #374151;
    line-height: 1.6;
}

.container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.content {
    text-align: center;
    max-width: 32rem;
    width: 100%;
}

.logo-container {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.logo {
    max-width: 100%;
    height: auto;
    width: 400px;
}

.tagline {
    font-size: 1.25rem;
    font-weight: 300;
    color: #374151;
    line-height: 1.75;
}

/* Responsive design */
@media (max-width: 640px) {
    .logo {
        width: 300px;
    }
    
    .tagline {
        font-size: 1.125rem;
    }
    
    .container {
        padding: 2rem 1rem;
    }
}

@media (max-width: 480px) {
    .logo {
        width: 250px;
    }
    
    .tagline {
        font-size: 1rem;
    }
}
