* {
    box-sizing: border-box;
  }
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    font-family: 'Poppins', sans-serif;
    color: #fff;
    background-image: url('/media-content/contact-media/background.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center 20%;
}
main {
    flex: 1
}
a {
    color: #fff;
    text-decoration: none;
}
a:hover,
a:focus {
    text-decoration: underline;
}
.logo img {
    height: 40px;
    display: block;
}
main {
    background: rgba(0,0,0,0.6);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 2rem;
}
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    position: relative;
    color: #fff;
    min-height: 600px;
}

.hero > * {
    position: relative;
    padding: 3rem 2rem;
    z-index: 1;
}
.contact-info h2,
.newsletter h2 {
    font-weight: 700;
    font-size: 2rem;
    margin-top: 0;
    margin-bottom: 1rem;
    text-transform: uppercase;
}
.contact-info p,
.newsletter p {
    font-size: 1rem;
    margin-top: 0;
    margin-bottom: 1rem;
}
.contact-info strong {
    display: block;
    margin-top: 1rem;
    margin-bottom: 0.25rem;
}
.newsletter form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 320px;
}
.newsletter input[type="text"],
.newsletter input[type="email"] {
    padding: 0.75rem 1rem;
    font-size: 1rem;
    border: none;
    border-radius: 0;
}
.newsletter button {
    background: #65c4ff;
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.newsletter button:hover,
.newsletter button:focus {
    background: #028fe7;
}
#footer-placeholder {
    flex-shrink: 0;
}
@media (max-width: 1010px) {
    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
        padding-bottom: 4rem;
    }
    .contact-info,
    .newsletter {
        padding: 2rem 1.5rem;
    }
    .contact-info h2,
    .newsletter h2 {
        font-size: 1.5rem;
    }
    .newsletter form {
        max-width: 100%;
    }
}