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

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

.container {
    max-width: 600px;
    text-align: center;
    padding: 2rem;
}

.logo {
    margin-bottom: 2rem;
}

.logo-square {
    width: 60px;
    height: 60px;
    background-color: #000000;
    margin: 0 auto;
    transition: transform 0.3s ease;
}

.logo-square:hover {
    transform: scale(1.05);
}

.company-name {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
    color: #000000;
    text-transform: uppercase;
}

.description {
    margin-bottom: 2rem;
}

.description p {
    font-size: 1rem;
    color: #333333;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.7;
}

.contact {
    margin-top: 2rem;
}

.contact-email {
    color: #000000;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.contact-email:hover {
    color: #666666;
    text-decoration: underline;
}

/* Responsive design */
@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }
    
    .company-name {
        font-size: 2rem;
    }
    
    .description p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .company-name {
        font-size: 1.5rem;
    }
    
    .logo-square {
        width: 50px;
        height: 50px;
    }
}
