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

/* Layout */
body {
    font-family: "Poppins", "Helvetica Neue", Helvetica, Arial, sans-serif;
    color: #222;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    min-height: 100vh;
    text-align: center;
}

body:after {
    background-color: rgba(255, 255, 255, 0.8);
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Container */
.container {
    display: flex;
    width: 100%;
    /* padding: 20px; */
    position: relative;
    z-index: 2;
}

.container>div:first-child {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: calc(40% - 0px);
}

.container>div:last-child {
    width: calc(60% - 0px);
}

.container>div:last-child img {
    max-width: 100%;
    height: auto;
}

/* Inner content */
.content {
    max-width: 400px;
    margin: 0 auto;
}

/* Logo */
.logo {
    max-width: 350px;
    height: auto;
    margin-bottom: 20px;
}

/* Headline */
h1 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: #444;
}

p {
    margin-bottom: 15px;
    line-height: 1.5;
    font-size: 1rem;
    color: #555;
}

/* Contact info */
.contact-info {
    padding-top: 20px;
}

.contact-info p {
    margin-bottom: 8px;
    font-size: 1rem;
}

.contact-info a {
    color: #0073e6;
    text-decoration: none;
}

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

/* Responsive design */
@media (min-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    .contact-info p {
        font-size: 1.1rem;
    }
}

@media (min-width: 1024px) {
    .content {
        max-width: 600px;
    }

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

@media(max-width: 1024px) {
    .container {
        flex-direction: column-reverse;
        gap: 50px;
    }

    .container>div:first-child,
    .container>div:last-child {
        width: calc(100% - 0px);
    }
}