* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', sans-serif;
    background: #fff;
    color: #333;
    line-height: 1.6;
}

/* Header */
.site-header {
    background-color: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
    font-family: 'Roboto', sans-serif;
}

.header-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    height: 40px;
    width: auto;
}

.nav-links a {
    margin-left: 1.5rem;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #007bff;
}

/* Landing Section */
.landing-section-content, .steps {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 10px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.landing-section {
    background: linear-gradient(
        to top,
        #1D9BF0, /* Start with blue at the bottom */
        #fff 50% /* Transition to white at the top */
    );
}

.landing-section-image {
    width: 300px;
    border-radius: 12px;
}

/* App Description */
.app-description h1 {
    font-size: 48px;
    font-weight: 700;
    color: #1D9BF0;
}

.app-description p {
    font-size: 18px;
    color: #555;
    max-width: 90%;
    margin-bottom: 30px;
}

/* Download Links */
.email-input {
    width: 300px;
    height: 40px;
    border-radius: 12px;
    border: 1px solid #ccc;
    padding: 10px;
    margin-bottom: 10px;
}

.email-input:focus {
    outline: none;
}

.email-button {
    width: 100px;
    height: 40px;
    border-radius: 12px;
    border: none;
    padding: 10px;
    margin-bottom: 10px;
    background-color: #1D9BF0;
    color: #fff;
}

.email-button:disabled {
    background-color: #b3d8f7;
    color: #fff;
    cursor: not-allowed;
    opacity: 0.7;
}

.app-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}

.download-links a {
    display: inline-block;
    margin-right: 20px;
    transition: transform 0.2s;
}

.download-links img {
    height: 50px;
    width: auto;
}

.download-links a:hover {
    transform: scale(1.05);
}

/* Steps */
.steps {
    max-width: 750px;
    display: flex;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.step {
    text-align: center;
    display: flex;
    justify-content: center;
}

.step-text {
    text-align: start;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.step-title {
    font-size: 36px;
    line-height: 48px;
    font-weight: 600;
    color: black;
}

.step-description {
    font-size: 16px;
    color: #666;
    margin-top: 16px;
}

.step img {
    width: 100%;
    max-width: 250px;
    margin-bottom: 20px;
    margin-right: 70px;
}

.align-right {
    text-align: end;
}

.margin-left {
    margin-left: 70px;
}

/* Footer */
footer {
    text-align: center;
    color: #888;
    padding: 40px 20px;
}

/* Media Queries */
@media (max-width: 600px) {
    /* Landing Section */
    .landing-section-content {
        flex-direction: column; /* Change to column layout */
        justify-content: center;
        align-items: center;
        padding: 20px;
    }

    .app-description {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 20px; /* Add some space below */
        text-align: center;
    }

    .download-links a {
        padding: 0 10px;
        margin: 0;
    }

    /* Steps */
    .steps {
        flex-direction: column;
        align-items: center;
        padding: 20px;
    }

    .step {
        flex-direction: column;
        align-items: center;
        order: 2;
    }

    .step-text {
        text-align: center;
        order: 1;
    }
    
    .step img {
        margin: 0;
        margin-top: 20px;
        order: 2;
    }
    
}
