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

body, html {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f4f4f9;
}

.container {
    max-width: 600px;
    text-align: center;
    padding: 20px;
    background: #fff;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

h1 {
    color: #333;
    font-size: 2em;
    margin-bottom: 10px;
}

p {
    color: #666;
    margin: 10px 0;
}

.contact-info p {
    margin: 5px 0;
}

.contact-info a {
    color: #0066cc;
    text-decoration: none;
    font-weight: bold;
}

.contact-info a:hover {
    text-decoration: underline;
}

.social-icons {
    display: flex;
    justify-content: center;
    margin-top: 15px;
}

.icon {
    margin: 0 10px;
}

.icon img {
    width: 24px;
    height: 24px;
}

/* Responsive Design */
@media (max-width: 600px) {
    h1 {
        font-size: 1.8em;
    }

    .contact-info p, .contact-info a {
        font-size: 0.9em;
    }
}
