body {
    font-family: 'Montserrat', sans-serif;
    background-color: #E5E5E5;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    color: #333;
}

.container {
    text-align: center;
    flex: 1;
    padding: 30px 20px;
}


.logo {
    font-size: 64px; 
    font-weight: bold;
    color: #000;
    letter-spacing: -1px; 
    margin-bottom: 15px;
    text-align: center;
}

.logo span {
    display: block;
    font-size: 30px; 
    font-weight: normal;
    color: #666; 
    margin-top: 5px;
}

.red-text {
    color: #FF0000;
    font-size: 32px; 
    font-weight: bold;
    margin: 25px 0;
    line-height: 1.4; 
}

.details {
    font-size: 20px; 
    color: #333; 
    font-weight: normal;
    margin: 25px 0;
}

.details a {
    text-decoration: none;
    color: #000; 
    font-weight: normal;
    display: block;
    margin: 10px 0;
}

.details a:hover {
    color: #FF0000;
}

.cityscape {
    margin-top: 40px; 
}

.wide-image {
    width: 100%;
    height: auto;
}


.corner-images {
    position: relative;
    width: 100%;
    height: auto;
}

.corner-images img {
    position: absolute;
    width: 22%;  
    height: auto;
}


.top-left {
    top: 190px;
    left: 10px;
}

.top-right {
    top: 190px;
    right: 10px;
}

.bottom-left {
    bottom: 10px;
    left: 10px;
}

.bottom-right {
    bottom: 10px;
    right: 10px;
}

@media(max-width: 480px) {
    .oem-page .top-left {
        top: 220px;
    }

    .oem-page .top-right {
        top: 220px;
    }
}


.contact {
    position: absolute;
    top: 30px;
    right: 30px;
}

.contact-button {
    background-color: #FF0000;
    color: #fff;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.contact-button:hover {
    background-color: #cc0000;
    cursor: pointer;
}

.contact-page .contact-form form {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.contact-page .contact-form form label {
    text-align: left;
    font-size: 14px;
    margin-top: 5px;
}

.contact-page .contact-form form input {
    padding: 5px;
    font-size: 16px;
    border: 1px solid #bbb4b4;
    border-radius: 5px;
}
.contact-page .contact-form form textarea {
    padding: 5px;
    font-size: 16px;
    border: 1px solid #bbb4b4;
    border-radius: 5px;
}
.contact-page .contact-form form textarea:focus-visible {
    outline: none;
    box-shadow: 0 0 10px -5px rgb(0 0 0 / 98%);
}
.contact-page .contact-form form input:focus-visible {
    outline: none;
    box-shadow: 0 0 10px -5px rgb(0 0 0 / 98%);
}
.contact-page .details ul {
    list-style-type: none;
    padding: 0;
}

.call-now {
    position: absolute;
    top: 30px;
    left: 30px;
}

.call-button {
    background-color: #ff0000;
    color: white;
    padding: 12px 20px;
    text-align: center;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.call-button:hover {
    background-color: #cc0000;
}

/* Footer стили */
footer {
    background-color: #F5F5F5;
    text-align: center;
    padding: 10px 0;
    width: 100%;
    margin-top: 40px;
}


@media (max-width: 768px) {
    .logo {
        font-size: 50px; 
    }
    
    .logo span {
        font-size: 26px; 
    }

    .red-text {
        font-size: 28px; 
    }

    .details {
        font-size: 18px; 
    }

    .details a {
        font-size: 16px; 
    }

    .contact-button,
    .call-button {
        font-size: 14px; 
    }

    .corner-images img {
        width: 20%; 
    }

    .container {
        padding: 0px 15px;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 36px; 
    }
    
    .logo span {
        font-size: 18px;
    }

    .red-text {
        font-size: 22px;
    }

    .details {
        font-size: 16px; 
    }
    .contact-page .details ul li p {
        margin: 10px 0;
    }

    .details a {
        font-size: 14px; 
    }

    .corner-images img {
        width: 25%; 
    }

    .contact,
    .call-now {
        top: 130px; 
    }

    .container {
        padding: 35px 10px 20px;
    }
    .contact-page .container {
        padding: 0 10px 20px;
    }
    .oem-page .container {
        padding: 45px 10px 20px;
    }
    .index-page .container {
        padding: 35px 10px 20px;
    }
}

a {
    text-decoration: none;
    color: inherit;
}

/*a:visited {
    color: inherit;
}

a:active {
    color: inherit;
}*/

.aftermarket-info {
    text-align: center;
    background-color: #FFFFFF; 
    border: 2px solid #FF0000; 
    border-radius: 10px; 
    padding: 30px 20px; 
    margin-top: -15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
}

.aftermarket-info p {
    font-size: 22px; 
    color: #333; 
    font-weight: 600; 
    line-height: 1.6;
    margin-bottom: 20px;
}

.makes-logos {
    display: flex;
    justify-content: center;
    gap: 10px; 
    align-items: center;
    flex-wrap: wrap; 
}

.makes-logos img {
    width: 250px; 
    height: auto;
    transition: transform 0.3s ease; 
}

.makes-logos img:hover {
    transform: scale(1.1); 
}


.oem-parts-info {    
    text-align: center;
    background-color: #FFFFFF; 
    border: 2px solid #FF0000; 
    border-radius: 10px; 
    padding: 30px 20px; 
    margin-top: -20px; 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
}

.oem-parts-info p {
    font-size: 22px;
    color: #333; 
    font-weight: 600; 
    line-height: 1.6; 
    margin-bottom: 20px; 
}

.oem-makes-logos {
    display: flex;
    justify-content: center;
    gap: 10px; 
    align-items: center;
    flex-wrap: wrap; 
}

.oem-makes-logos img {
    width: 250px; 
    height: auto;
    transition: transform 0.3s ease; 
}

.oem-makes-logos img:hover {
    transform: scale(1.1);
}

.suspension-parts-info {
    text-align: center;
    background-color: #FFFFFF; 
    border: 2px solid #FF0000; 
    border-radius: 10px; 
    padding: 30px 20px; 
    margin-top: -20px; 
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.suspension-parts-info p {
    font-size: 22px; 
    color: #333; 
    font-weight: 600; 
    line-height: 1.6; 
    margin-bottom: 20px; 
}

.suspension-makes-logos {
    display: flex;
    justify-content: center;
    gap: 10px; 
    align-items: center;
    flex-wrap: wrap; 
}

.suspension-makes-logos img {
    width: 250px; 
    height: auto;
    transition: transform 0.3s ease;
}

.suspension-makes-logos img:hover {
    transform: scale(1.1); 
}

.bodyshop-supplies-info {
    text-align: center;
    background-color: #FFFFFF; 
    border: 2px solid #FF0000;
    border-radius: 10px; 
    padding: 30px 20px; 
    margin-top: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); 
}

.bodyshop-supplies-info p {
    font-size: 22px; 
    color: #333;
    font-weight: 600;
    line-height: 1.6;
    margin-bottom: 15px;
    margin-top: 0;
}

.bodyshop-makes-logos {
    display: flex;
    justify-content: center;
    gap: 10px; 
    align-items: center;
    flex-wrap: wrap; 
}

.bodyshop-makes-logos img {
    width: 250px; 
    height: auto;
    transition: transform 0.3s ease;
}

.bodyshop-makes-logos img:hover {
    transform: scale(1.1); 
}
