 /* CSS Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Inter", Arial, sans-serif;
    line-height: 1.6;
    min-height: 100vh;
    color: #344054;
    font-size: 20px;
    font-weight: 500;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    right: 0;

    width: 300px;  /* adjust as needed */
    height: 300px; /* adjust as needed */

    background: url('../images/top-design.png') no-repeat top right;
    background-size: contain;

    pointer-events: none;
    z-index: -1; /* optional */
}

body::after {
    content: "";
    position: fixed;
    bottom: 0;
    left: 0;

    width: 300px;  /* adjust as needed */
    height: 300px; /* adjust as needed */

    background: url('../images/bottom-design.png') no-repeat bottom left;
    background-size: contain;

    pointer-events: none;
    z-index: -1; /* optional */
}

.container {
    width: min(90%, 1200px);
    margin: 0 auto;
    z-index: 2;
    position: relative;
}

header .container,
main {
    padding: 1rem;
}

/* Example responsive grid */
.grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 768px) {
    .grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.card {
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
}

#logo {
    background: url('../images/logo.png') no-repeat;
    width: 232px;
    height: 76px;
    text-indent: -9999999px;
}

h1 {
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 800;
}

h3 {
    font-size: clamp(14px, 5vw, 32px);
    font-weight: 500;
}

.text-center {
    text-align: center;
}

.illustration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 50px 0;
    background: url('../images/illustration-bg.png') center no-repeat;
    background-size: contain;
}

.illustration .laptop {
    width: 426px;
    height: 388px;
    background: url('../images/laptop.png') center no-repeat;
    text-indent: -9999999px;
    background-size: contain;
}

.illustration .arrow {
    width: 140px;
    height: 89px;
    background: url('../images/arrow.png') center no-repeat;
    text-indent: -9999999px;
    background-size: contain;
}


.illustration .driver-app {
    width: 411px;
    height: 447px;
    background: url('../images/driver-app.png') center no-repeat;
    text-indent: -9999999px;
    background-size: contain;
}
.instruction {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
}

.btn {
    padding: 15px 40px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 20px;
    text-decoration: none;
}
.btn-block {
    display: block;
}

.btn-primary {
    background-color: #1570EF;
    color: #FFF;
}

header,
footer {
    position: relative;
    min-height: 120px;
}

footer {
    min-height: 263px;
    overflow: hidden;
    margin-top: -263px;
    margin-bottom: 0;
    padding: 0;
}

@media (max-width: 768px) {
    .instruction,
    .illustration {
        display: block;
    }

    .illustration .laptop,
    .illustration .arrow,
    .illustration .driver-app {
        margin: 0 auto;
        width: 100%;
    }

    .illustration .arrow {
        transform: rotate(90deg);
        margin: 0 auto;
        margin-bottom: 60px;
    }

    .instruction {
        padding-top: 30px
    }

    .instruction div {
        margin-top: 30px;
    }

    header {
        padding:0;
    }
    .container {
        width: 100%;
    }
}