body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    margin: 0;
    background-color: #191A1F;
    color: #fff;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    height: 100vh;
    overflow: hidden;
    position: relative;
}

main {
    flex-grow: 1;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 2rem;
}

.logo img {
    height: 40px;
    margin-right: 10px;
}

.logo h1 {
    font-size: 2.5rem;
    margin: 0;
}

.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: left;
}

.hero-text {
    max-width: 500px;
    padding-right: 4rem;
}

.hero-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cta-container img {
    height: 50px;
}

.cta-container a {
    display: inline-block;
    transition: transform 0.3s ease;
}

.cta-container a:hover {
    transform: scale(1.05);
}

.legal-links {
    text-align: center;
    padding: 1rem;
}

.legal-links a {
    color: #8A8A8E;
    text-decoration: none;
    margin: 0 10px;
    font-size: 0.9rem;
}

.legal-links a:hover {
    text-decoration: underline;
}

.iphone-mockup {
    position: relative;
    width: 300px;
    height: 600px;
    border-radius: 40px;
    padding: 15px;
    box-sizing: border-box;
}

.iphone-mockup img {
    width: 100%;
    height: 100%;
    border-radius: 25px;
    object-fit: cover;
}

@media (max-width: 768px) {
    body {
        height: auto;
        min-height: 100vh;
        overflow-y: auto;
    }

    .hero {
        flex-direction: column;
        padding: 2rem 1rem;
        text-align: center;
    }

    .hero-text {
        padding-right: 0;
        margin-bottom: 3rem;
        text-align: center;
    }

    .logo {
        justify-content: center;
    }

    .iphone-mockup {
        width: 250px;
        height: 500px;
    }
}
