body {
    background-color: #E5E5E5; 
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    min-height: 100vh;
    position: relative;
}


.container {
    text-align: center;
    padding: 0 20px;
}

.logo {
    font-size: 72px; 
    font-weight: bold;
    color: #000;
    letter-spacing: -3px;
}

.logo span {
    display: block;
    font-size: 36px; 
    font-weight: normal;
    color: #000;
}

.red-text {
    color: #FF0000; 
    font-size: 32px;
    font-weight: bold;
    margin: 15px 0;
}

.details {
    font-size: 18px; 
    color: #000; 
    font-weight: normal;
}

.details a {
    text-decoration: none;
    color: #000; 
    font-weight: normal;
    display: block;
    margin: 8px 0;
}

.details a:hover {
    color: #FF0000;
}

.cityscape {
    margin-top: 15px;
}

.wide-image {
    width: 100%;
    height: auto;
}

.corner-images {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%; 
    height: 100%;
    pointer-events: none;
}

.corner-images img {
    position: absolute;
    max-width: 22%; 
    height: auto;
}

.top-left {
    top: 150px;
    left: 5px;
}

.top-right {
    top: 150px;
    right: 5px;
}

.bottom-left {
    bottom: 5px;
    left: 5px;
}

.bottom-right {
    bottom: 5px;
    right: 5px;
}

.contact {
    position: absolute;
    top: 15px;
    right: 15px;
}

.contact-button {
    background-color: #FF0000; 
    color: #fff;
    padding: 8px 16px;
    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;
}

.call-now {
    position: absolute;
    top: 15px;
    left: 15px;
}

.call-button {
    background-color: #FF0000;
    color: white;
    padding: 8px 16px;
    text-align: center;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.call-button:hover {
    background-color: #cc0000;
}

@media (max-width: 768px) {
    .logo {
        font-size: 48px;
    }

    .logo span {
        font-size: 24px;
    }

    .red-text {
        font-size: 24px;
    }

    .details {
        font-size: 16px;
    }

    .contact-button,
    .call-button {
        font-size: 14px;
        padding: 6px 12px;
    }

    .corner-images img {
        max-width: 10%;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 32px; 
        margin-top: 20px; 
    }

    .logo span {
        font-size: 24px; 
    }

    .red-text {
        font-size: 18px; 
        margin: 10px 0; 
    }

    .details {
        font-size: 14px; 
        margin: 8px 0;
    }

    .contact-button,
    .call-button {
        font-size: 12px;
        padding: 5px 10px; 
    }

    .corner-images img {
        max-width: 40%; 
    }

    .contact,
    .call-now {
        top: 10px;
    }

    .container {
        padding: 10px 20px; 
    }

    .wide-image {
        margin-top: 10px;
    }
}

.corner-images {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.corner-images img {
    position: absolute;
    max-width: 22%; /*Razmer dlya pc */
    height: auto;
}

/*Razmer dlya pc */
.top-left {
    top: 160px;
    left: 5px;
}

.top-right {
    top: 160px;
    right: 5px;
}

.bottom-left {
    bottom: 5px;
    left: 5px;
}

.bottom-right {
    bottom: 5px;
    right: 5px;
}
/*Razmer dlya telefonov i planshetov */

@media (max-width: 768px) {
    .corner-images img {
        max-width: 15%; 
    }

    .top-left {
        top: 50px; 
        left: 10px;
    }

    .top-right {
        top: 50px;
        right: 10px;
    }

    .bottom-left {
        bottom: 20px;
        left: 10px;
    }

    .bottom-right {
        bottom: 20px;
        right: 10px;
    }
}

@media (max-width: 480px) {
    .corner-images img {
        max-width: 40%; 
    }

  
    .top-left {
        top: 20px;
        left: 10px;
    }

    .top-right {
        top: 20px;
        right: 10px;
    }

    .bottom-left {
        bottom: 30px; 
        left: 10px;
    }

    .bottom-right {
        bottom: 30px;
        right: 10px;
    }
}
