body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background-color: #fff;
  font-family: "Montserrat", 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-family: "Bodoni Moda", serif;
  font-size: 22px;
}
.menu {
  width: 25px;
  height: 10%;
  object-fit: cover;
  display: block;
}
.menu_font{
  font-family: "Montserrat", serif;
}
.body {
  max-width: 480px;
  margin: 0 auto 0; 
  text-align: center;
}
.pic_widget {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 15px;
  gap: 15px;
  
}
.picture {
  width: 100%;
  max-width: 480px;
  margin: 0;
  margin-bottom: 30px;
  padding: 0;
  height: auto;
  display: block;
  object-fit: cover;
}
.about_us{
  display: flex;
  flex-direction: column;
  margin-top: 150px;
  padding: 25px;
  font-size: 15px;
}
.aboutus_widget{
  display: flex;
  flex-direction: column;
  margin-top: 150px;
  padding: 25px;
  font-size: 15px;
}
.headlines{
  font-size: 20px;
  font-weight: bold;
}
.aboutus_widget{
  margin-top: 150px;
}
.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_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;
}