body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f4f4f4;
    color: #262626;
}

a {
    font-weight: 500;
    text-decoration: none;
    color: #262626;
}

a:hover {
    text-decoration: underline;
}

.grey {
    padding-top: 20px;
    padding-bottom: 40px;
    font-size: 12px;
    line-height: 20px;
    text-align: left;
    max-width: 600px;
    color: #AAAAAA;
    margin: 0 auto 0 auto;
}

.container {
    width: 100%;
    padding: 20px;
    text-align: center;
}

.logo {
    width: 180px;
    margin-top: 20px;
}

.intro {
    max-width: 340px;
    margin: 0 auto;
}

.intro p {
    font-size: 15px;
    line-height: 22px;
    margin-bottom: 20px;
    text-align: center;
}

.join-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin: 0 auto;
}

.join-form input {
    padding: 15px;
    font-size: 14px;
    width: 100%;
    border-radius: 4px;
    text-align: center;
    box-sizing: border-box;
    border: 0px;
}

.join-form button {
    padding: 15px;
    font-size: 14px;
    width: 100%;
    border-radius: 4px;
    text-align: center;
    box-sizing: border-box;
    border: 0px;
}

.join-form button {
    padding: 15px 20px;
    font-weight: 600;
    width: 100%;
    margin-top: 8px;
    font-size: 14px;
    border: 0;
    background-color: #262626;
    color: #fff;
    cursor: pointer;
}

.headline-container {
    position: relative;
}

.headline {
    font-size: 72px;
    line-height: 80px;
    font-weight: 700;
    letter-spacing: -3px;
    margin: 50px 0 20px 0;
    animation: fadeIn 1s ease-in-out;
}

h2 {
    font-size: 14px;
    font-weight: 600;
    margin-top: 0px;
    margin-bottom: 25px;
}

.main-image {
    width: 100%;
    max-width: 1000px;
    animation: slideIn 1s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.icon-list {
            font-size: 14px;
            line-height: 20px;
            text-align: left;
            list-style: none;
            padding: 0;
            margin: 0 auto 25px auto;
        }
.icon-list li {
            position: relative;
            padding-left: 25px;
            margin-bottom: 10px;
        }
.icon-list li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 18px;
            height: 18px;
            background-size: contain;
            background-repeat: no-repeat;
        }

.icon-list li:nth-child(1)::before {
            background-image: url('../img/sparkles.png');
        }
.icon-list li:nth-child(2)::before {
            background-image: url('../img/shield-check.png');
        }
.icon-list li:nth-child(3)::before {
            background-image: url('../img/globe.png');
        }

footer {
    margin-top: 12px;
    font-size: 12px;
    line-height: 20px;
}

@media (max-width: 768px) {
    .headline {
        font-size: 42px;
        line-height: 46px;
        margin: 30px 0 20px 0;
        letter-spacing: -2px;
    }

    .logo {
    width: 140px;
    margin-top: 5px;
    }

    .intro p {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 20px;
    }

    .grey {
        font-size: 10px;
        line-height: 16px;
    }

    .main-image {
        display: none;
    }

    .mobile-image {
        display: block;
        width: 100%;
    }
}
