        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body, html {
            height: 100%;
        }
        body {
            font-family: "Montserrat", sans-serif;
            font-optical-sizing: auto;
            font-style: normal;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }
        a {
            color: #000;
            text-decoration: none;
        }
        h1 {
            font-size: 36px;
        }
        h6 {
            margin: 5px 0 0 0;
            text-align: left;
            font-size: 12px;
            font-weight: 500;
        }
        .offer h1 {
            font-size:56px;
            font-weight: 600;
            margin-bottom: 20px;
        }
        .offer h3 {
            font-size:26px;
            font-weight: 500;
            line-height: 2em;
        }
        header {
            background-color: #f7f7f7;
            color: #000;
        }
        header .content {
            width: 100%;
            height: 100px;
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            text-transform: uppercase;
            font-size: 26px;
            font-weight: 700;
            display: flex;
            justify-content: start;
            align-items: center;
        }
        .logo .description {
            text-transform: none;
            font-size: 14px;
            font-weight: 400;
        }
        .menu, .phone {
            display: flex;
            justify-content: start;
            align-items: center;
        }
        .phone img {
            padding: 0 3px 0 20px;
            height: 24px;
        }
        .menu-container {
            position: relative;
        }
        #logomenu {
            display:none;
        }
        .menu-nav {
            display: flex;
            gap: 15px;
        }

        .menu-nav a {
            color: #333;
            text-decoration: none;
            padding: 10px 0;
            margin: 0 -4px;
        }

        .menu-toggle {
            display: none;
            background: none;
            border: none;
            color: #333;
            cursor: pointer;
            font-size: 42px;
            margin: 0 0 0 20px;
        }

        .menu a {
            color: black;
            padding: 0 10px;
            text-decoration: none;
            text-transform: uppercase;
            font-size: 16px;
            font-weight: 400;
        }
        .menu a:hover {
            text-decoration: underline;
        }
        .phone a {
            font-size: 22px;
            font-weight: 300;
        }
        footer {
            background-color: #333;
            color: #fff;
            text-align: center;
            padding: 10px;
            margin-top: auto;
        }
        .section {
            padding: 60px 20px;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        .section .content {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            text-align: left;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .full-width-background {
            width: 100%;
            background-position: center;
            background-size: cover;
        }
        .section.offer {
            background: url('offer.jpg') no-repeat center center;
            background-size: cover;
            color: white;
            height: 600px;
        }
        .offer-form h4 {
            font-size: 20px;
            font-weight: 500;
            margin: 0 0 15px 0;
        }
        .offer-form h5 {
            font-size: 16px;
            font-weight: 400;
            margin: 0 0 5px 0;
            text-align: left;
        }
        .offer-form h6 {
            font-size: 12px;
            font-weight: 300;
            margin: 0 0 5px 0;
            text-align: left;
        }
        .offer-form input[type=text] {
            border-radius: 5px;
            background-color: #fff;
            border: 1px solid #bbb;
            padding: 12px;
            width: 100%;
            margin: 0 0 20px 0;
        }
        .offer-form input[type=text]:focus {
            outline: none;
            border: 1px solid #FF6633;
        }
        .offer-form button {
            border-radius: 30px;
            width: 100%;
            padding: 12px;
            background-color: #FF6633;
            color: #fff;
            font-size: 20px;
            font-weight: 500;
            border: 0;
            margin: 15px 0;
            cursor: pointer;
        }

        .offer-form button:hover {
            background-color: #FF9966;
        }

        .offer-form {
            width:390px;
            height: auto;
            background-color: #ddd;
            padding: 35px;
            text-align: center;
            color: #000;
        }
        .section.advantages {
            color: #000;
            background-color: #fff;
        }

        .column {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        .advantage-block {
            width: 300px;
            height: 170px; 
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
        }
        .advantage-block .description {
            width: 230px;
            font-size: 17px;
            font-weight: 300;
        }
        .advantage-block .description h2 {
            text-transform: uppercase;
            font-weight: 500;
            font-size: 18px;
            margin: 5px 0 15px 0;
        }
        .advantage-block .digital {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border: 3px solid #FF6633;
            border-radius: 100%;
            font-size: 24px;
            font-weight: 600;
            color: #FF6633;
            margin: 0 15px 0 15px;
        }
        .advantage-center {
            text-align: center;
        }
        .alignright {
            text-align: right;
        }
        .alignleft {
            text-align: left;
        }
        .section.goods {
            background-color: #f7f7f7;
        }
.parts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); 
    gap: 20px; 
    justify-content: center;
}


        .goods-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            grid-template-rows: repeat(1, 1fr);
            grid-column-gap: 0px;
            grid-row-gap: 0px;
        }

.goods-item {
    background-color: #fff;
    box-shadow: 0px 0px 10px 0px rgba(163,163,163,1);
    padding: 10px;
    transition: 0.5s;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
margin: 20px;
}

        .section.goods .content a {
            margin: 0;
            line-height: normal;
            padding: 0;
        }
        .goods-item.button:hover {
            transform: scale(110%);
            cursor: pointer;
        }
        .goods-item img {
            display: block;
            margin: 0 auto 10px auto;
            height: 250px;
        }
        .goods-item input[type=button] {
            border-radius: 30px;
            width: 80%;
            height: 40px;
            padding: 10px;
            background-color: #FF6633;
            color: #fff;
            font-size: 18px;
            font-weight: 500;
            border: 0;
            margin: 15px 0;
            cursor: pointer;
        }
        .goods-item input[type=button]:hover {
            background-color: #FF9966;
        }
        .reviews-grid {
            width: 100%;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            grid-template-rows: repeat(1, 1fr);
            grid-column-gap: 50px;
            grid-row-gap: 0px;
        }
        .reviews-grid img {
            display: block;
            width: 150px;
            height: 150px;
            border-radius: 100%;
            text-align: center;
            margin: 0 auto 10px auto;
        }
        .review-stars img {
            display: inline-block;
            width: 24px;
            height: 24px;
            border-radius: 0;
            margin: 10px 0;
        }
        .section.contacts {
            background-color: #f7f7f7;
        }
        .map-container {
            padding: 20px;
        }
        .map {
            width: 700px;
            height: 450px;
        }
        .contacts-info {
            padding: 20px;
        }
        .imgwidth {
            width:200px;
            height:auto;
            object-fit: contain;
        }
#modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-content {
    width: 390px;
    background-color: #ddd;
    padding: 35px;
    text-align: center;
    color: #000;
    border-radius: 8px;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    font-weight: bold;
    color: #333;
    cursor: pointer;
}

.modal-content h5 {
    font-size: 16px;
    font-weight: 400;
    margin: 0 0 5px 0;
    text-align: left;
}

.modal-content input[type="text"] {
    border-radius: 5px;
    background-color: #fff;
    border: 1px solid #bbb;
    padding: 12px;
    width: 100%;
    margin: 0 0 20px 0;
}

.modal-content input[type="text"]:focus {
    outline: none;
    border: 1px solid #FF6633;
}

.modal-content button {
    border-radius: 30px;
    width: 100%;
    padding: 12px;
    background-color: #FF6633;
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    border: 0;
    margin: 15px 0;
    cursor: pointer;
}

.modal-content button:hover {
    background-color: #FF9966;
}

.modal-content p {
    font-size: 16px;
    color: black;
    margin-top: 15px;
}
