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

body {
  background: #fff;
}

.body-content {
  background:
    url('images/v2/Bottom.png') bottom center no-repeat,
    linear-gradient(270deg, #67b73c 0%, #64c2d1 100%) top no-repeat;
  background-size: 100% auto, cover;
  max-width: 400px;
  margin: 0 auto;
  min-height: 100vh;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.main-content {
  max-width: 400px;
  margin: 0 auto;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: url('images/v2/Top.png') top no-repeat;
  background-size: 100% auto;
  position: relative;
  padding: 0 0 24px 0;
}

.header {
  padding: 24px 20px 0 20px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.nav-btns {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 110px;
}

.nav-btn {
  background: #fff;
  color: #67b73c;
  padding: 6px 18px;
  border-radius: 16px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  font-family: 'Comfortaa', cursive;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  display: flex;
  align-items: center;
  gap: 6px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  margin-bottom: 4px;
}

.nav-btn:hover {
  background: #67b73c;
  color: #fff;
}

.logo-quote {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  margin-left: 12px;
}

.logo {
  color: #fff;
  font-size: 2.2rem;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 2px;
}

.quote {
  color: #fff;
  font-size: 1.05rem;
  font-style: italic;
  font-family: 'Comfortaa', cursive;
}

.page-content {
  color: #fff;
  font-size: 1rem;
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  padding: 0 20px;
}

.page-content li {
  font-size: 0.95em;
}

.content-section {
  margin: 20px 0;
}

.simple-carousel {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  margin-bottom: 20px;
  border-radius: 16px;
  background: #eee;
}

.carousel-img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: opacity 0.5s;
}

.carousel-prev, .carousel-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.7);
  border: none;
  font-size: 2rem;
  cursor: pointer;
  z-index: 2;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.carousel-indicators {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 8px;
  gap: 8px;
  position: absolute;
  left: 0; right: 0; bottom: 10px;
  z-index: 3;
}

.carousel-indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fff;
  opacity: 0.5;
  cursor: pointer;
  transition: opacity 0.2s, background 0.2s;
  border: 1px solid #67b73c;
}

.carousel-indicator.active {
  opacity: 1;
  background: #67b73c;
}

.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 24px;
  gap: 8px;
  padding: 0 20px 20px 20px;
}

.social-link {
  background: #fff;
  color: #67b73c;
  padding: 8px 14px;
  border-radius: 16px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.98rem;
  font-family: 'Comfortaa', cursive;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: background 0.2s, color 0.2s;
}

.social-link:hover {
  background: #67b73c;
  color: #fff;
}

@media (max-width: 500px) {
  .main-content, .body-content {
    max-width: 98vw;
    padding: 12px 2vw 8px 2vw;
  }
  .header, .footer {
    padding-left: 4vw;
    padding-right: 4vw;
  }
  .page-content {
    padding-left: 4vw;
    padding-right: 4vw;
  }
} 

.menu-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(180deg, #066c3a 0%, #67b73c 100%);
    color: #fff;
    padding: 18px 32px;
    margin: 16px 0;
    border-radius: 16px;
    border: 2px solid #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.15rem;
    box-shadow: none;
    transition: background 0.2s;
    min-height: 60px;
}