.logo-wrapper {
    display: flex;
    align-self: center;
    align-items: center;
}

.logo-style {
    max-width: 270px;
    max-height: 35px;
}

.thumbnail-image {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background-image: url(https://assets.languageweaver.com/language-weaver-login-hero-image-3.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-position-y: 100%;

    @media (min-width: 767px) {
        background-position-y: -325px;
    }

    @media (max-width: 767px) {
        background-attachment: unset;
        background-position-y: bottom;
    }
}

.hero-section {
    background-color: rgb(33, 14, 49);
    position: relative;
    width: 100%;
    transition: padding 0.5s ease-out;
    min-width: 250px;
    padding: 20px 30px;
}

.hero-title-wrapper {
    width: 100%;
    height: 100%;
    z-index: 1;
    color: rgb(255, 255, 255);
    display: flex;
    flex-flow: column;
    position: relative;
    top: 25px;
    max-width: 960px;
    margin: auto
}

.hero-main-title {
    width: 100%;
    display: inline-block;
    color: rgb(255, 255, 255);
    font-size: 42px;
    font-weight: 400;
    margin: 0;
}

.hero-second-title {
    font-size: 26px;
    font-weight: 100;
    margin: 0;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
}

header {
    min-height: 50px;
    padding: 10px 30px 0;
    width: 100%;
    flex-wrap: wrap;
    max-width: 900px;
    margin: auto
}

.main-content {
    max-width: 900px;
    margin: auto;
    padding: 0 30px;
}

section {
    margin-bottom: 2rem;
}

li {
    margin-bottom: 10px;
}

ul {
    list-style: disc;
}

a {
    color: #3e016f;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

footer {
    text-align: center;
    padding: 2rem;
    font-size: 0.9rem;
    color: #666;
    border-top: 1px solid #ccc;
}