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

body {
    background-color: #000;
    color: #fff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
}

.container {
    padding: 20px;
}

.logo {
    max-width: 300px;
    width: 80%;
    height: auto;
    margin-bottom: 1.5rem;
}

.description {
    font-size: 1rem;
    line-height: 1.6;
    max-width: 500px;
    margin: 0 auto 2.5rem auto;
    color: #ccc;
}

.address {
    font-size: 1rem;
    letter-spacing: 1px;
    margin-top: 2rem;
    text-transform: uppercase;
    color: #888;
}

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

.social-links a {
    color: #fff;
    font-size: 2rem;
    transition: transform 0.3s ease, color 0.3s ease;
}

.social-links a:hover {
    color: #ccc;
    transform: scale(1.1);
}

@media (max-width: 480px) {
    .logo {
        max-width: 250px;
    }
    
    .address {
        font-size: 1rem;
    }
    
    .social-links a {
        font-size: 1.8rem;
    }
}
