html,
body {
    font-family: 'Helvetica Neue', 'Raleway', sans-serif;
    margin: 0;
    padding: 0;
    color: white;
    min-height: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

.mesh-gradient {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, #1E283C, #2A3954, #162033);
    animation: gradient-animate 10s infinite alternate;
    background-size: 200% 200%;
    z-index: -1;
}

.container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-grow: 1;
    padding: 2em;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2em;
    box-sizing: border-box;
}

.content {
    max-width: 600px;
    flex: 1;
}

body,
h1,
h2,
p,
ul {
    font-family: 'Raleway', sans-serif;
}

h1 {
    font-family: 'Raleway', 'Helvetica Neue', sans-serif;
    font-weight: 500;
    font-size: 3rem;
    margin-bottom: 0.2em;
}

.subtitle {
    font-family: 'Raleway', 'Helvetica Neue', sans-serif;
    font-weight: 300;
    font-size: 1.5rem;
    margin-top: 0;
    margin-bottom: 0.5em;
}

.terms-content {
    font-size: 1rem;
    line-height: 1.6;
}

.terms-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 1em;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.tagline {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 1.5em;
}

.key-features {
    list-style-type: none;
    padding: 0;
    margin-bottom: 1.5em;
    text-align: left;
}

.key-features li {
    font-size: 1.1rem;
    font-weight: 300;
    margin-bottom: 0.5em;
    position: relative;
    padding-left: 1.2em;
}

.key-features li::before {
    content: '•';
    color: #FF914D;
    position: absolute;
    left: 0;
    top: 0;
}

.download-button img {
    width: 200px;
}

.image-container {
    flex: 1;
    display: flex;
    justify-content: center;
}

.image-container img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 10px;
}

footer {
    width: 100%;
    text-align: center;
    padding: 1em;
    color: white;
    position: relative;
    z-index: 1;
    margin-top: auto;
    margin-bottom: 0;
    box-sizing: border-box;
}

a {
    color: #FF914D;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .image-container img {
        max-width: 80%;
        margin-top: 1em;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .tagline {
        font-size: 1rem;
    }

    .image-container img {
        max-width: 90%;
    }
}

@keyframes gradient-animate {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 50% 100%;
    }

    100% {
        background-position: 100% 50%;
    }
}