body {
    font-family: "Segoe UI", sans-serif;
    margin: 0;
    background: #fdfdfd;
    color: #333;
}

.top-contact-bar {
    text-align: center;
    font-size: 14px;
}
.top-contact-bar a {
    color: #0073e6;
    text-decoration: none;
    margin: 0 10px;
}
nav.menu {
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 10px 0;
}

.menu-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.menu-links {
    display: flex;
    gap: 20px;
}

nav.menu a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 10px;
}

nav.menu a:hover {
    color: #0073e6;
}
.hamburger {
    display: none;
    font-size: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
}
.top-contact-bar {
    padding: 4px;
}

.slider {
    position: relative;
    height: 88vh;
    overflow: hidden;
}
.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}
.slide.active {
    opacity: 1;
}

.vishki-section {
    display: flex;
    flex-wrap: wrap;
    width: 70%;
    padding: 50px 10%;
    gap: 40px;
    background: #ffffff;
    margin: 0 auto;
    margin-top: 70px;
}

.vishka-box {
    flex: 1 1 45%;
    background: #f5f5f5;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}
.vishka-box:hover {
    transform: translateY(-5px);
}
.vishka-box img {
    width: 100%;
    height: auto;
    max-height: 65%;
}

.vishka-info {
    padding: 20px;
    padding-bottom: 0;
}
.vishka-info h2 {
    margin-top: 0;
    color: #0073e6;
}

.vishka-info p {
    line-height: 1.6;
}

.contact-section {
    padding: 40px 10%;
    background: #eef3f7;
    text-align: center;
}
.contact-section h2 {
    color: #0073e6;
}
.contact-section a {
    color: #333;
    text-decoration: none;
}
.contact-section a:hover {
    text-decoration: underline;
}

.vishki-section {
    padding: 40px 20px;
    font-family: sans-serif;
}

.vishka-box {
    max-width: 1200px;
    margin: 0 auto;
}

.two-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.column {
    flex: 1 1 45%;
    min-width: 300px;
}

.column h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

p {
    line-height: 1.6;
}

@media (max-width: 768px) {
    .slider {
        height: 78vh;
    }

    .hamburger {
        display: block;
    }

    .vishki-section {
        width: 90%;
        margin: 0 auto;
    }

    .menu-links {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: #fff;
        position: absolute;
        top: 50px;
        left: 0;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }

    .menu-links.active {
        display: flex;
    }

    nav.menu a {
        font-weight: 500;
        padding: 4px;
    }

    .menu-links a {
        padding: 15px;
        border-bottom: 1px solid #eee;
        text-align: center;
    }
    .menu-links {
        gap: 15px;
    }
}
