* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: linear-gradient(135deg, #f5f7fa 0%, #eef1f5 100%);
}

.main-content {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    text-align: center;
    padding: 2rem;
}

.logo-wrapper {
    width: 220px;
    height: 220px;
    margin: 0 auto 2rem;
    background: white;
    border-radius: 50%;
    padding: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

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

.logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 2rem;
}

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

.social-links a {
    color: #2c3e50;
    font-size: 1.8rem;
    text-decoration: none;
    transition: transform 0.3s ease, color 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
}

.social-links a.facebook:hover {
    color: #1877f2;
}

.social-links a.instagram:hover {
    color: #e4405f;
}

footer {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    color: #2c3e50;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .logo-wrapper {
        width: 170px;
        height: 170px;
    }

    h1 {
        font-size: 2rem;
    }

    .social-links a {
        font-size: 1.5rem;
    }
}
