body {
    font-family: 'Roboto', sans-serif;
    background-color: #f8f9fa;
    color: #343a40;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    text-align: center;
}

.container {
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    background-color: white;
    max-width: 600px;
    width: 100%;
}

.logo {
    max-width: 150px;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
}

p {
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.6;
}

.social-icons {
    margin-top: 1.5rem;
}

.social-icons a {
    display: inline-block;
    margin: 0 0.5rem;
}

.social-icons img {
    width: 32px;
    height: 32px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.social-icons img:hover {
    opacity: 1;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .container {
        padding: 1.5rem;
    }

    h1 {
        font-size: 1.75rem;
    }

    p {
        font-size: 1rem;
    }

    .logo {
        max-width: 120px;
    }
}