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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #e8f5e9;
    min-height: 100vh;
}

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

.logo-container {
    margin-bottom: 2rem;
    width: 100%;
    max-width: 300px;
    text-align: center;
}

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

h1 {
    color: #2e7d32;
    font-size: 3rem;
    text-align: center;
}

.content {
    text-align: center;
}

h2 {
    color: #388e3c;
    font-size: 2rem;
    margin-bottom: 1rem;
}

p {
    color: #4caf50;
    font-size: 1.2rem;
}

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

    h2 {
        font-size: 1.5rem;
    }

    p {
        font-size: 1rem;
    }
}
