body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background-color: #fff;
  font-family: "Bodoni Moda", serif;
}

.container {
  max-width: 480px;
  margin: 0 auto;
  padding: 0;
  width: 100%;
}
.footer-links a {
  color: inherit;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}
.header_content {
    display: flex;
    align-items: center;
    background-color: white;   
    justify-content: space-between;                 
    width: 100%;
    max-width: 480px;     
    margin: 0 auto;      
    padding: 0 15px; 
    padding-top: 10px;
    padding-bottom: 10px;  
    box-sizing: border-box; 
    box-shadow: 0 2px 5px rgba(0,0,0,0.1); 
}
.brand_name{
  font-size: 22px;
}
.menu {
  width: 25px;
  height: 10%;
  object-fit: cover;
  display: block;
}
.menu_font{
  font-family: "Saira", serif;
}
.body {
  max-width: 480px;
  margin: 0 auto 0; 
  text-align: center;
}
.info{
  font-family: "Montserrat", serif;
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin: 15px auto 0;
  padding: 15px;
  font-size: 15px;
  max-width: 400px;
  text-align: left;
}
.footer {
  background: black;
  color: white;
  font-family: 'Montserrat', sans-serif;
  margin:auto;
  max-width: 480px;
  box-sizing: border-box;
  padding: 30px 20px;
}

.footer h2 {
  font-weight: 500;
  margin-bottom: 25px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer li {
  margin-bottom: 12px;
  cursor: pointer;
}
.overlay {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 480px;
  height: 100vh;
  background: rgba(0,0,0,0.3);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  z-index: 998;
}

.side_menu {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 480px;
  height: 100vh;
  pointer-events: none;
  z-index: 999;
}
.menu_font{
  font-family: "Montserrat", serif;
}
.menu_panel {
  position: absolute;
  top: 0;
  left: -260px;
  width: 190px;
  height: 100%;
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  padding: 80px 20px;
  box-sizing: border-box;
  transition: 0.3s ease;
  pointer-events: auto;
}
.menu_panel a{
  text-decoration: none;
  color: inherit;
}
.side_menu.active .menu_panel {
  left: 0;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

.menu_panel ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}