* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #fff4d4;
    min-height: 100vh;
    position: relative;
}

.header {
    background-color: #fff4d4;
    padding: 15px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1000;
    gap: 20px;
}

.hamburger-menu {
    position: absolute;
    right: 20px;
}

.logo-link {
    display: block;
}

.logo-link object {
    pointer-events: none;
}



.logo-header {
    width: 150px;
    height: auto;
}

.hamburger-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger-icon {
    width: 30px;
    height: 22px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hamburger-icon span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #333;
    border-radius: 2px;
    transition: 0.3s;
}

.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 250px;
    height: 100vh;
    background-color: rgba(255, 244, 212, 0.98);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    padding: 80px 30px 30px;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    z-index: 2000;
}

.menu-overlay.active {
    display: block;
    transform: translateX(0);
}

.menu-overlay ul {
    list-style: none;
}

.menu-overlay li {
    margin-bottom: 25px;
}

.menu-overlay a {
    text-decoration: none;
    color: #333;
    font-size: 18px;
    font-weight: 500;
}

.menu-overlay a:hover {
    color: #8B4513;
}

.menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 28px;
    cursor: pointer;
    color: #333;
}

.main-content {
    padding: 20px;
    min-height: calc(100vh - 80px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.contact-info {
    text-align: center;
    max-width: 600px;
}

.contact-info address {
    font-style: normal;
    line-height: 1.6;
    margin-top: 10px;
}

.logo-main {
    max-width: 90%;
    max-height: 70vh;
    width: 400px;
    height: auto;
}

#map {
    width: 100%;
    max-width: 600px;
    height: 100vw;
    max-height: 600px;
    margin: 0 auto;
    display: block;
}

.content-page {
    max-width: 800px;
    text-align: center;
}

.content-page h1,
.content-page h2 {
    color: #524238;
    margin-bottom: 20px;
}

.content-page p {
    line-height: 1.6;
    margin-bottom: 15px;
    color: #524238;
}

.back-link {
    position: absolute;
    top: 70px;
    left: 20px;
    z-index: 1001;
    background: rgba(255, 255, 255, 0.8);
    padding: 8px 16px;
    border-radius: 4px;
    text-decoration: none;
    color: #524238;
    font-size: 14px;
}

.back-link:hover {
    background: rgba(255, 255, 255, 1);
}

}
