* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background: #ffffff;
  color: #1a3f7a;
  line-height: 1.6;
}

.header {
  background: #0d47a1;
  color: #ffffff;
  text-align: center;
  padding: 22px 16px;
}

.header h1 { font-size: 30px; }
.header p { font-size: 15px; margin-top: 6px; }

.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px 16px;
}

.logo {
  display: block;
  max-width: 200px;
  margin: 30px auto;
}

section { margin: 22px 0; }
section h2 { color: #0b3c91; font-size: 22px; margin-bottom: 6px; }
section p { font-size: 16px; }

.slideshow {
  position: relative;
  max-width: 900px;
  margin: 30px auto;
}

.slide {
  display: none;
  width: 100%;
  border-radius: 6px;
}

.slide.active { display: block; }

.nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(13,71,161,0.7);
  color: #fff;
  border: none;
  padding: 10px 14px;
  font-size: 20px;
  cursor: pointer;
}

.prev { left: 10px; }
.next { right: 10px; }

.map {
  width: 100%;
  height: 300px;
  border: 0;
  margin-top: 10px;
}

.map-link a {
  color: #0d47a1;
  font-weight: bold;
  text-decoration: none;
}

.footer {
  background: #0d47a1;
  color: #ffffff;
  text-align: center;
  padding: 14px;
  font-size: 14px;
}

/*SHOP FRONT IMAGE*/
.shop-front{
width: 100%;
max-width: 1000 px;
height: auto;
display: block;
margin: 24 px auto;
border-radius: 6px;
}


media (max-width: 768 px) {
.shop-front{
max-width: 90%;
margin: 16 px auto;
}

}