* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f8f4f1;
    color: #333;
}

header {
    display: flex;
    justify-content: end; 
    padding: 15px;
    background-color: #f5c1b2;
}

.logo img {
    height: 40px;
}

.navbar {
    display: flex;
    flex-direction: column;
    align-items: center; 
}

.menu {
    list-style-type: none;
    display: flex;
    flex-direction: column; 
    align-items: center; 
    margin-top: 10px; 
}

.menu li {
    margin: 5px 0; 
}

.menu a {
    text-decoration: none;
    color: #333;
}

.hamburger {
    display: none;
    font-size: 24px;
    cursor: pointer;
}


main {
    display: flex;
    flex-direction: column; 
    align-items: center; 
    padding: 15px;
}

section {
    margin: 15px 0;
    text-align: center; 
}

#map {
    height: 300px; 
    width: 100%;
}

footer {
    text-align: center;
    padding: 15px;
    background-color: #f5c1b2;
}

.socials a {
    margin: 5px 0; 
    text-decoration: none;
    color: #333;
}


@media (max-width: 768px) {
    .menu {
        display: none;
        flex-direction: column; 
    }
    .menu.active {
        display: flex; 
    }
    .hamburger {
        display: block; 
    }
}
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}