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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: white;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
}

.container {
    max-width: 800px;
    width: 90%;
    padding: 3rem 2rem;
    text-align: center;
}

.logo {
    max-width: 100%;
    height: auto;
    margin-bottom: 2rem;
}

h1 {
    font-size: 2.5rem;
    color: #E52421;
    margin-bottom: 1.5rem;
}

.description {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #333;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.links {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.links a {
    transition: opacity 0.2s;
}

.links a:hover {
    opacity: 0.7;
}

.links img {
    width: 48px;
    height: 48px;
}

footer {
    margin-top: 2rem;
    padding-top: 2rem;
    color: #999;
    font-size: 0.9rem;
}

@media (max-width: 600px) {
    h1 {
        font-size: 2rem;
    }
    
    .description {
        font-size: 1rem;
    }
    
    .links {
        gap: 1.5rem;
    }
    
    .links img {
        width: 40px;
        height: 40px;
    }
}
