body {
    font-family: "Lora", serif;
    background-color: #000;
    color: #fff;
    margin: 0;
    padding: 0;
    text-align: center; /* Centers text for inline and inline-block elements */
    display: flex;
    justify-content: center; /* Centers child elements horizontally for flexbox */
    align-items: center; /* Centers child elements vertically for flexbox */
    flex-direction: column; /* Stacks child elements vertically */
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

header {
    padding: 65px 0;
}

h1 {
    font-size: 50px;
}

h2 {
    font-size: 20px;
    font-style: normal;
    padding: 2px;
}

p {
    font-style: normal;
}

.container {
}

.content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding-right: 150px;
}

.services img {
    width: 100%;
    transition: transform 0.25s ease; /* Smooth transition for zoom effect */
    cursor: pointer; /* Indicates the image is clickable */
}

/* Zoomed state */
.services img.zoomed {
    transform: scale(2); /* Adjust the scale value to control the zoom level */
    z-index: 10; /* Make sure the zoomed image is above other elements */
    position: relative; /* Required to work with z-index */
}

.contacts {
    width: 40%; /* Adjust the width as necessary */
    padding: 20px;
    color: #fff;
    text-align: center;
    padding-left: 200px;
}

.contacts a {
    color: #fff; /* This makes links white */
    text-decoration: none; /* Optional: removes the underline from links */
}

.contacts a:hover {
    text-decoration: underline; /* Optional: adds an underline on hover */
}

footer {
    padding: 10px 0;
    margin-top: 20px;
    color: #fff;
    text-align: center; /* Centers text for inline and inline-block elements */
    display: flex;
    justify-content: center; /* Centers child elements horizontally for flexbox */
    align-items: center; /* Centers child elements vertically for flexbox */
    flex-direction: column; /* Stacks child elements vertically */
}

@media (max-width: 768px) {
    .content {
        flex-direction: column;
    }

    .contacts, .services {
        width: 100%;
        margin-bottom: 20px;
    }
}
