.app-hero {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--md-sys-color-primary);
    color: var(--md-sys-color-on-primary);
    padding: 64px 64px 64px 512px;
    margin-top: 60px;
    margin-bottom: 128px;
}
.app-hero-icon svg {
    height: 120px;
    width: 120px;
}
.app-hero-icon svg path {
    fill: var(--md-sys-color-on-primary) !important;
}
.app-hero-text {
    max-width: 600px;
}
.app-hero-image {
    position: absolute;
    top: 64px;
    left: 7vw;
}
.app-hero-image img {
    height: auto;
    width: 30vw;
}
.app-hero-buttons {
    margin-top: 128px;
}
.app-hero-button {
    height: 64px;
    width: 256px;
    margin: 16px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}
.app-hero-button:hover {
    transform: scale(1.1);
}

.app-step {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 32px;
    padding: 32px 128px;
    align-items: center;
    justify-items: center;
}

.app-step-text {
    text-align: start;
    padding: 0 64px;
}

.app-step-image-container {
    position: relative;
    width: 150px;
    height: 150px;
    background-color: var(--md-sys-color-primary);
    color: var(--md-sys-color-on-primary);
    border-radius: 50%;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 599px) {
    .app-hero {
        padding: 64px;
        margin-bottom: 16px;
    }
    .app-hero-image {
        position: relative;
        margin: 32px 0;
        top: 0;
        left: 0;
    }
    .app-hero-image img {
        width: 100%;
        height: auto;
    }
    .app-hero-buttons {
        margin-top: 0;
    }
    .app-step {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 16px 32px;
    }
    .app-step-text {
        text-align: center;
        padding: 0;
    }
    .app-step-image-container {
        order: -1;
    }
}

@media (min-width: 600px) and (max-width: 1199px) {
    .app-hero {
        padding-left: 64px;
        margin-bottom: 16px;
    }
    .app-hero-image {
        position: relative;
        margin: 32px 0;
        top: 0;
        left: 0;
    }
    .app-hero-image img {
        height: 500px;
        width: auto;
    }
    .app-hero-buttons {
        margin-top: 0;
    }
    .app-step {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 32px 64px;
    }
    .app-step-text {
        text-align: center;
        padding: 0;
    }
    .app-step-image-container {
        order: -1;
    }
}

@media (min-width: 1200px) {

}