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

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

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

.logo {
    max-width: 512px;
    max-height: 512px;
    margin: 0 auto 2rem;
    animation: fadeIn 1s ease-in;
}

.logo img {
    width: 100%;
    height: auto;
}

h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    animation: fadeIn 1s ease-in 0.3s both;
}

.subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 3rem;
    opacity: 0.9;
    animation: fadeIn 1s ease-in 0.6s both;
}

.business-info {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.95rem;
    line-height: 1.6;
    animation: fadeIn 1s ease-in 0.9s both;
}

.company-relation {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.info-section {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.info-item {
    text-align: left;
    opacity: 0.85;
}

.info-item strong {
    font-weight: 600;
    opacity: 1;
}

.contact-section {
    margin-top: 2rem;
}

.address {
    font-weight: 500;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.contact-details {
    opacity: 0.85;
}

.contact-details a {
    color: #fff;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.contact-details a:hover {
    opacity: 1;
    border-bottom-color: rgba(255, 255, 255, 0.8);
}



@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .logo {
        max-width: 300px;
        max-height: 300px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 1.2rem;
    }
    
    .business-info {
        font-size: 0.85rem;
    }
    
    .company-relation {
        font-size: 1rem;
    }
    
    .info-section {
        gap: 2rem;
    }
}
