    * {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
        font-family: Arial, sans-serif;
    }

    body {
        background-color: #E5E5E5;
        color: #333;
    }

    /* Меню */
    .navbar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 20px 40px;
        background-color: whitesmoke;
        border-radius: 12px;
        margin: 20px;
        flex-wrap: wrap;
    }

    .nav-left {
        display: flex;
        align-items: center;
        gap: 20px;
    }

    .logo img {
        width: 40px;
    }

    .city {
        display: flex;
        align-items: center;
        gap: 8px;
        font-weight: bold;
    }

    .nav-center {
        display: none;
        flex: 1;
        text-align: center;
    }

    .nav-center a {
        margin: 0 15px;
        text-decoration: none;
        color: #333;
        font-weight: 500;
    }

    .nav-right {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .phone {
        display: flex;
        align-items: center;
        gap: 8px;
        background-color: white;
        padding: 8px 16px;
        border-radius: 12px;
        font-weight: 500;
    }

    /* Заголовок */
    .hero {
        text-align: center;
        padding: 40px 20px;
    }

    .hero h1 {
        font-size: 2em;
        font-weight: bold;
    }

    .cards-back {
        width: 70%;
        margin: auto;
    }

    .cards {
        display: flex;
        justify-content: space-around;
        flex-wrap: wrap;
        padding: 20px;
        gap: 20px;
    }

    .card {
        background-color: whitesmoke;
        border-radius: 12px;
        padding: 20px;
        width: 300px;
        text-align: center;
    }

    .card img {
        width: 50px;
        height: 50px;
        object-fit: contain;
        margin-bottom: 10px;
    }

    .card-title {
        font-size: 1.2em;
        font-weight: bold;
        margin: 10px 0;
    }

    .card-subtitle {
        font-size: 1em;
        margin: 5px 0;
    }

    .card-desc {
        font-size: 0.9em;
        color: gray;
        margin-top: 10px;
    }

    .big-card {
        background: whitesmoke;
        margin: auto;
        border-radius: 12px;
        padding: 2rem;
        width: 70%;
        margin-bottom: 2rem;
    }

    .first-big-card {
        display: grid;
        grid-template-columns: auto auto;
    }

    .middle-description {
        font-size: 18px;
        line-height: 25px;
    }

    .first-decsription {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
    }

    h2 {
        font-size: 46px;
    }

    .btn-main {
        background: linear-gradient(91.47deg, #02AD41 0%, #FFFFFF 50%, #EF9210 100%);
        border-radius: 24px;
        padding: 12px 64px 12px 64px;
        border: none;
        font-weight: 600;

    }

    .btns {
        display: grid;
        grid-template-columns: auto auto;
        gap: 1rem;
    }

    .telega {
        height: 48px;
        width: 48px;
        border-radius: 24px;
        border: none;
        background: black;
        display: grid;
        justify-content: center;
        align-items: center;
    }

    .foot-description {
        display: flex;
        justify-content: space-around;
    }

    .desc-item {
        border-radius: 12px;
        border: none;
        background: white;
        font-size: 14px;
        display: flex;
        padding: 4px;
        justify-content: center;
        align-items: center;
        margin-right: 5px;
    }

    .item-icon {
        width: 44px;
        height: 44px;
        border-radius: 12px;
        background: #02AD41;
        margin-right: 1rem;
    }

    .bike-with-back {
        background: url('/images/back-bike.png');
        height: 545px;
    }

    .options {
        background: #E5E5E5;
        border-radius: 12px;
        padding: 1rem;
        text-align: center;
        display: grid;
        gap: 1rem;
    }

    .opt-item {
        background: white;
        border: none;
        border-radius: 12px;
        display: grid;
        grid-template-columns: auto auto auto;
        gap: 5px;
        justify-content: flex-start;
        align-items: center;
        padding-left: 1rem;
    }

    .second-big-card {
        display: grid;
        grid-template-columns: auto auto;
        gap: 5rem;
        height: 542px;
    }

    .in-img {
        display: grid;
        grid-template-columns: auto auto;
        gap: 5px;
        font-size: 14px;
        align-items: center;
        position: relative;
        width: 159px;
        height: 36px;


        padding-top: 2px;
        padding-right: 12px;
        padding-bottom: 2px;
        padding-left: 2px;
        border-radius: 20px;
        background: white;
    }

    .circ {
        background: #44C882;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 16px;
        height: 32px;
        width: 32px;
        color: white;
        font-size: 24px;
    }


    .last-card {
        margin: auto;
        padding: 2rem;
        width: 70%;
        margin-bottom: 2rem;
    }


    @media (max-width: 768px) {
        .cars-back {
            width: 98%;
        }

        .big-card {
            width: 98%;
            padding: 10px;
        }

        .last-card {
            width: 98%;
        }

        .bike-with-back {
            display: none;
        }

        .img-bike {
            display: none;
        }

        .foot-description {
            display: grid;
            gap: 10px;
        }

        .first-decsription {
            display: grid;
            gap: 10px;
            padding: 10px;
        }

        h2 {
            font-size: 32px;
        }

        .desc-item {
            justify-content: start;
        }

        .second-big-card {
            grid-template-columns: auto;
        }
    }