body {
    background: #f6f8fb;
    font-family: 'Segoe UI', Arial, sans-serif;
    text-align: center;
    height: 100dvh;
    display: flex;
    margin: 0;
    justify-content: center;
    justify-items: center;
}

.container {
    background: #fff;
    height: fit-content;
    width: 50%;
    margin: auto;
    padding: 38px 24px;
    border-radius: 14px;
    box-shadow: 0 8px 36px rgba(0, 0, 0, 0.11);
}

img.logo {
    max-width: 400px;
    margin-bottom: 30px;
}

h1 {
    font-size: 2.2em;
    color: #3a4c63;
    margin-bottom: 10px;
    letter-spacing: 0.02em;
}

p {
    color: #63697a;
    font-size: 1.17em;
    margin-bottom: 24px;
}

.contact-info {
    margin-bottom: 28px;
}

.contact-info a,
.contact-info span {
    display: block;
    color: #2b6cb0;
    text-decoration: none;
    margin-top: 10px;
    font-size: 1.2em;
}

.social-links a {
    display: inline-block;
    margin: 0 10px;
    color: #4961a7;
    font-size: 1.65em;
    text-decoration: none;
    transition: color 0.18s;
}

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

@media (max-width: 830px) {
    .container {
        width: 70%;
    }
}

@media (max-width: 600px) {
    img.logo {
        max-width: 350px;
    }
}

@media (max-width: 450px) {
    img.logo {
        max-width: 250px;
    }
}
@media (max-width: 300px) {
    img.logo {
        max-width: 150px;
    }
}