
* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    background: #fff;
    color: #111;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    min-height: 100vh;
}

img {
    -webkit-user-drag: none;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
}

.page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.content {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 15px 0;
}

.logo {
    width: min(456px, 56.4vw);
    height: auto;
    display: block;
}

.website-image {
    width: min(720px, 94vw);
    height: auto;
    display: block;
    margin-top: 12px;
}

.contact-button {
    display: inline-block;
    margin: 28px 0 40px;
    padding: 13px 30px;
    border-radius: 8px;
    background: #1257df;
    color: #fff;
    font-size: 20px;
    font-weight: 800;
    text-decoration: none;
    border: 2px solid #071d52;
    box-shadow: 0 3px 0 #071d52;
}

.contact-button:hover {
    background: #0b45b7;
    color: #fff;
}

.contact-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-header {
    width: 100%;
    text-align: center;
    padding: 17px 15px 12px;
}

.contact-logo {
    display: block;
    width: min(210px, 36vw);
    height: auto;
    margin: 0 auto;
}

.phone {
    margin-top: 10px;
    font-size: clamp(11px, 2vw, 15px);
    font-weight: 800;
    color: #111;
}

.phone a,
.email a {
    color: inherit;
    text-decoration: none;
}

.email {
    margin-top: 3.5px;
    font-size: clamp(9px, 1.5vw, 11.5px);
    font-weight: 600;
}

.form-container {
    width: min(100%, 980px);
    padding: 0 15px 50px;
}

.form-container iframe {
    width: 100%;
    min-height: 900px;
    border: 0;
    display: block;
}

.back-link {
    margin: 0 0 30px;
    color: #1257df;
    font-weight: 700;
    text-decoration: none;
}

@media (max-width: 600px) {
    .content {
        padding-top: 10px;
    }

    .logo {
        width: 58.8vw;
    }

    .website-image {
        width: 98vw;
    }

    .contact-button {
        font-size: 18px;
        margin-top: 20px;
    }

}
