:root {
  --primary-color: #748E63;
  --primary-color-rgba: rgba(116, 142, 99, 0.2);
  --text-color: #000000;
  --background-color: #F8EDE3;
  --white: #FFFFFF;
  --shadow: 0px 7px 29px rgba(0, 0, 0, 0.2);
  --border-radius: 10px;
  --section-padding: 80px;
  --mobile-padding: 16px;
  --desktop-padding: 64px;
  --element-gap: 50px;
  --image-size: 100px;
}

body {
  margin: 0;
  padding: 0;
  background: var(--background-color);
  font-family: 'Inter', sans-serif;
  color: var(--text-color);
  text-align: center;
}

.hero {
  max-width: 70%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 50px;
  padding: 50px 16px;
  text-align: center;
  width: 100%;
  box-sizing: border-box;
}

h1, h2, h3, p, button {
  text-align: center;
  margin: 0 auto;
  width: 100%;
  max-width: 100%;
}

h1 {
  font-size: 48px;
  font-weight: bold;
}

h2 {
  font-size: 20px;
  font-weight: bold;
}

h3 {
  font-size: 20px;
  font-weight: 400;
}

p {
  font-size: 18px;
  font-weight: 400;
}

.button-primary {
  background-color: var(--primary-color);
  color: var(--white);
  font-size: 20px;
  border: none;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  width: 500px;
  height: 60px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.button-primary:hover {
  background-color: #5f734e;
}

.button-secondary {
  background-color: transparent;
  color: var(--primary-color);
  font-size: 20px;
  border: 3px solid var(--primary-color);
  border-radius: var(--border-radius);
  height: 60px;
  width: 500px;
  cursor: pointer;
  transition: all 0.3s;
}

.button-secondary:hover {
  background-color: #fef1ec;
}

.features {
  background-color: var(--primary-color);
  width: 100%;
  padding: var(--section-padding) 0;
}

.features-content {
  max-width: 70%;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  box-sizing: border-box;
}

.feature-container {
  flex: 1;
  max-width: calc(33.333% - 27px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: #F9F9F9;
  gap: 20px;
}

.feature-container img {
  margin-bottom: 0;
}

.feature-container h2 {
  font-size: 24px;
  margin-bottom: 0;
}

.feature-container p {
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
}

.benefits {
  padding: 80px 16px;
  display: flex;
  flex-direction: column;
  gap: 60px;
  max-width: 70%;
  margin: 0 auto;
  box-sizing: border-box;
}

.benefits h1 {
  margin-bottom: 20px;
  text-align: center;
}

.benefit-container {
  display: flex;
  align-items: center;
  gap: 60px;
}

.benefit-container.reverse {
  flex-direction: row;
}

.benefit-text {
  flex: 1;
  text-align: left;
}

.benefit-text h2 {
  margin-bottom: 20px;
  text-align: left;
}

.benefit-text p {
  font-size: 18px;
  line-height: 1.6;
  text-align: left;
}

.reviews {
  padding: 80px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 70%;
  margin: 0 auto;
  box-sizing: border-box;
}

.review-container {
  display: none;
  background-color: var(--primary-color-rgba);
  border: 3px solid var(--primary-color);
  border-radius: var(--border-radius);
  padding: 20px;
  width: 100%;
  margin-bottom: 20px;
}

.review-container h3 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 20px;
}

.review-container p {
  font-size: 18px;
  line-height: 1.6;
}

.review-dots {
  display: flex;
  gap: 10px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--primary-color-rgba);
  cursor: pointer;
}

.dot.active {
  background-color: var(--primary-color);
}

.faq {
  padding: 80px 16px;
  max-width: 70%;
  margin: 0 auto;
  box-sizing: border-box;
}

.faq h1 {
  text-align: center;
  margin-bottom: 40px;
}

.faq-container {
  margin-bottom: 20px;
}

.faq-top {
  background-color: var(--primary-color-rgba);
  padding: 20px;
  border-radius: var(--border-radius);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  box-shadow: var(--shadow);
  border: 3px solid var(--primary-color);
}

.faq-top h2 {
  font-size: 20px;
  font-weight: bold;
  margin: 0;
  color: rgb(0, 0, 0);
}

.faq-arrow {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}

.faq-bottom {
  background-color: var(--white);
  padding: 20px;
  border-radius: var(--border-radius);
  border: 3px solid var(--primary-color);
  margin-top: 10px;
  display: none;
  box-shadow: var(--shadow);
}

.faq-bottom p {
  font-size: 18px;
  font-weight: 500;
  margin: 0;
  line-height: 1.6;
}

.faq-container.active .faq-arrow {
  transform: rotate(180deg);
}

.faq-container.active .faq-bottom {
  display: block;
}

.last-cta {
  padding: 80px 16px;
  max-width: 70%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  box-sizing: border-box;
}

.last-cta h1 {
  font-size: 50px;
  font-weight: bold;
  color: var(--primary-color);
  text-align: center;
  margin: 0;
}

.last-cta h2 {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  margin: 0;
  line-height: 1.6;
}

.last-cta h3 {
  font-size: 20px;
  font-weight: 500;
  text-align: center;
  margin: 0;
  line-height: 1.6;
}

.hero .review-container {
  background-color: var(--primary-color-rgba);
  border: 3px solid var(--primary-color);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  padding: 20px 10px;
  text-align: center;
  width: 100%;
  display: block !important;
  position: relative;
  opacity: 1;
  transform: none;
}

.hero .review-container h3 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 20px;
}

.hero .review-container p {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  margin: 0;
}

.hero > .review-container {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

@media (min-width: 768px) {
  .hero,
  .features-content,
  .benefits,
  .reviews,
  .faq,
  .last-cta,
  .about {
    padding: var(--section-padding) var(--desktop-padding);
  }
}

@media (max-width: 768px) {
  /* Reset container widths for mobile */
  .hero,
  .features-content,
  .benefits,
  .reviews,
  .faq,
  .last-cta,
  .about {
    max-width: 100%;
    padding: 40px 16px;
  }

  /* Hero section mobile adjustments */
  .hero {
    gap: 30px;
    padding: 30px 16px;
  }

  /* Typography adjustments for mobile */
  h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 18px;
  }

  h3 {
    font-size: 16px;
  }

  p {
    font-size: 16px;
    line-height: 1.6;
  }

  /* Button adjustments for mobile */
  .button-primary,
  .button-secondary {
    width: 100%;
    max-width: 300px;
    font-size: 16px;
    height: 50px;
  }

  /* Features section mobile adjustments */
  .features {
    padding: 40px 0;
  }

  .features-content {
    flex-direction: column;
    gap: 30px;
    padding: 0 16px;
  }

  .feature-container {
    max-width: 100%;
    gap: 15px;
  }

  .feature-container h2 {
    font-size: 20px;
  }

  .feature-container p {
    font-size: 14px;
  }

  /* Benefits section mobile adjustments */
  .benefits {
    gap: 40px;
  }

  .benefit-container,
  .benefit-container.reverse {
    flex-direction: column !important;
  }

  .benefit-container > img,
  .benefit-container.reverse > img {
    order: 1;
  }
  .benefit-container > .benefit-text,
  .benefit-container.reverse > .benefit-text {
    order: 2;
  }

  .benefit-container .benefit-text,
  .benefit-container.reverse .benefit-text {
    display: flex;
    flex-direction: column;
    text-align: center;
  }

  .benefit-container .benefit-text h2,
  .benefit-container.reverse .benefit-text h2,
  .benefit-container .benefit-text p,
  .benefit-container.reverse .benefit-text p {
    text-align: center;
  }

  .benefit-container img {
    width: 250px;
    height: 250px;
  }

  /* Reviews section mobile adjustments */
  .reviews {
    gap: 20px;
  }

  .review-container {
    padding: 15px;
    max-width: 100%;
    box-sizing: border-box;
  }

  .review-container h3 {
    font-size: 16px;
  }

  .review-container p {
    font-size: 16px;
  }

  /* FAQ section mobile adjustments */
  .faq h1 {
    font-size: 24px;
  }

  .faq-top h2 {
    font-size: 16px;
  }

  .faq-bottom p {
    font-size: 16px;
  }

  /* Last CTA section mobile adjustments */
  .last-cta {
    gap: 30px;
  }

  .last-cta h1 {
    font-size: 28px;
  }

  .last-cta h2,
  .last-cta h3 {
    font-size: 16px;
  }

  /* About section mobile adjustments */
  .about {
    max-width: 100%;
    width: 100%;
    padding: 40px 8px;
    margin: 0;
  }

  .about-container {
    max-width: 100%;
    width: 100%;
    margin: 0;
    padding: 15px;
    border-radius: 10px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .about-container img {
    width: 70px;
    height: 70px;
  }

  .about-container p {
    font-size: 16px;
    text-align: left;
    word-break: break-word;
  }

  /* Navbar adjustments for mobile */
  .nav {
    height: 56px;
    padding: 0 8px;
  }
  .nav-logo {
    font-size: 1.1rem;
  }
  .nav-menu {
    flex-direction: column;
    align-items: flex-end;
    background: #fff;
    position: absolute;
    top: 56px;
    right: 0;
    width: 200px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    border-radius: 0 0 10px 10px;
    display: none;
    z-index: 1001;
    padding: 1rem 0.5rem;
  }
  .nav-menu.open {
    display: flex;
  }
  .nav-toggle {
    display: flex;
  }
}

@media (max-width: 480px) {
  /* Further adjustments for very small screens */
  .hero {
    padding: 20px 12px;
    gap: 20px;
  }

  h1 {
    font-size: 24px;
  }

  h2 {
    font-size: 16px;
  }

  h3 {
    font-size: 14px;
  }

  p {
    font-size: 14px;
  }

  .button-primary,
  .button-secondary {
    font-size: 14px;
    height: 45px;
  }

  .features-content {
    padding: 0 12px;
    gap: 20px;
  }

  .feature-container h2 {
    font-size: 18px;
  }

  .feature-container p {
    font-size: 13px;
  }

  .benefits {
    padding: 30px 12px;
    gap: 30px;
  }

  .benefit-container img {
    width: 200px;
    height: 200px;
  }

  .benefit-text h2 {
    font-size: 16px;
  }

  .benefit-text p {
    font-size: 14px;
  }

  .reviews {
    padding: 30px 12px;
  }

  .review-container {
    padding: 12px;
  }

  .review-container h3 {
    font-size: 14px;
  }

  .review-container p {
    font-size: 14px;
  }

  .faq {
    padding: 30px 12px;
  }

  .faq h1 {
    font-size: 20px;
  }

  .faq-top h2 {
    font-size: 14px;
  }

  .faq-bottom p {
    font-size: 14px;
  }

  .last-cta {
    padding: 30px 12px;
    gap: 25px;
  }

  .last-cta h1 {
    font-size: 24px;
  }

  .last-cta h2,
  .last-cta h3 {
    font-size: 14px;
  }

  .about {
    padding: 24px 4px;
  }

  .about-container {
    padding: 10px;
  }

  .about-container img {
    width: 50px;
    height: 50px;
  }

  .about-container p {
    font-size: 15px;
  }

  /* Navbar adjustments for mobile */
  .nav {
    height: 44px;
    padding: 0 4px;
  }
  .nav-logo {
    font-size: 1.1rem;
  }
  .nav-menu {
    top: 44px;
    width: 100vw;
    right: 0;
    left: auto;
  }
}

.about {
  max-width: 70%;
  margin: 0 auto;
  padding: 80px 16px;
  box-sizing: border-box;
}

.about-container {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  background-color: rgba(116, 142, 99, 0.2);
  box-shadow: 0px 7px 29px rgba(0, 0, 0, 0.2);
  padding: 20px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

@media (max-width: 768px) {
  .about {
    max-width: 100%;
    padding: 40px 16px;
  }
  .about-container {
    max-width: 100%;
    width: 100%;
    margin: 0;
    padding: 15px;
    border-radius: 10px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .about {
    padding: 24px 4px;
  }
  .about-container {
    padding: 10px;
  }
}

.about-container img {
  width: 100px;
  height: 100px;
  border-radius: 180px;
  box-shadow: 0px 7px 29px rgba(0, 0, 0, 0.2);
}

.about-container p {
  font-size: 18px;
  font-weight: 500;
  margin: 0;
  text-align: left;
  width: 100%;
}

.about-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.about-link:hover {
  color: #5f734e;
  text-decoration: underline;
}

/* --- Modern Responsive Header Styles --- */
.header {
  width: 100%;
  background: transparent;
  position: static;
  z-index: 1000;
}
.nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.nav-left {
  display: flex;
  align-items: center;
}
.nav-logo {
  font-size: 1.6rem;
  font-weight: bold;
  color: #748E63;
  text-decoration: none;
  letter-spacing: 1px;
}
.nav-menu {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-menu li a {
  color: #222;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.2s;
  padding: 8px 0;
}
.nav-menu li a:hover {
  color: #748E63;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: 1rem;
}
.nav-toggle-bar {
  width: 26px;
  height: 3px;
  background: #748E63;
  margin: 4px 0;
  border-radius: 2px;
  transition: all 0.3s;
  display: block;
}

/* Responsive styles */
@media (max-width: 900px) {
  .nav {
    max-width: 100vw;
    padding: 0 12px;
  }
  .nav-menu {
    gap: 1rem;
  }
}
@media (max-width: 768px) {
  .nav {
    height: 56px;
    padding: 0 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .nav-left {
    flex: 1;
    display: flex;
    align-items: center;
  }
  .nav-logo {
    font-size: 1.1rem;
  }
  .nav-toggle {
    display: flex;
    margin-left: auto;
  }
  .nav-menu {
    flex-direction: column;
    align-items: flex-end;
    background: #fff;
    position: absolute;
    top: 56px;
    right: 0;
    width: 200px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    border-radius: 0 0 10px 10px;
    display: none;
    z-index: 1001;
    padding: 1rem 0.5rem;
    transition: background 0.3s;
  }
  .nav-menu.open {
    display: flex;
    background: var(--primary-color)
  }
}
@media (max-width: 480px) {
  .nav {
    height: 44px;
    padding: 0 4px;
  }
  .nav-logo {
    font-size: 1.1rem;
  }
  .nav-menu {
    top: 44px;
    width: 100vw;
    right: 0;
    left: auto;
  }
}

/* Popup overlay */
#popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(248, 237, 227, 0.85); /* gentle pastel overlay */
  z-index: 2000;
  justify-content: center;
  align-items: center;
}

/* Popup container */
#popup-form-container {
  background: #fff;
  border-radius: 18px;
  max-width: 95vw;
  width: 370px;
  padding: 32px 24px 24px 24px;
  box-shadow: 0 8px 32px rgba(116, 142, 99, 0.12), 0 1.5px 8px rgba(0,0,0,0.07);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 18px;
  animation: popup-fade-in 0.2s;
}

@keyframes popup-fade-in {
  from { opacity: 0; transform: translateY(30px) scale(0.98); }
  to { opacity: 1; transform: none; }
}

#popup-form-container h2 {
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0 0 10px 0;
  text-align: left;
  color: #222;
}

#popup-form-container label {
  font-size: 1rem;
  font-weight: 500;
  color: #748E63;
  margin-bottom: 4px;
  margin-top: 8px;
  text-align: left;
}

#popup-form-container input,
#popup-form-container textarea {
  border: 1.5px solid #e3e3e3;
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 1rem;
  font-family: inherit;
  background: #f8f8f8;
  margin-bottom: 6px;
  transition: border 0.2s, box-shadow 0.2s;
  outline: none;
  resize: none;
}
#popup-form-container input:focus,
#popup-form-container textarea:focus {
  border: 1.5px solid #748E63;
  box-shadow: 0 0 0 2px #e6f0e0;
}
#popup-form-container textarea {
  min-height: 70px;
  max-height: 180px;
}

#popup-close-btn {
  position: absolute;
  top: 14px;
  right: 14px;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #bdbdbd;
  cursor: pointer;
  transition: color 0.2s;
  z-index: 10;
}
#popup-close-btn:hover {
  color: #748E63;
}

#popup-form-container form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

#popup-form-container button[type="submit"] {
  background: #e6f4ea;
  color: #3a6b4b;
  border: none;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 12px 0;
  margin-top: 8px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(116, 142, 99, 0.07);
  transition: background 0.2s, color 0.2s;
}
#popup-form-container button[type="submit"]:hover {
  background: #d0e9d7;
  color: #222;
}

@media (max-width: 480px) {
  #popup-form-container {
    width: 98vw;
    padding: 18px 6vw 18px 6vw;
    min-width: 0;
  }
  #popup-form-container h2 {
    font-size: 1.1rem;
  }
}

/* Video section */
.video-section {
  padding: 80px 16px;
  max-width: 70%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  box-sizing: border-box;
}

.video-section h1 {
  font-size: 48px;
  font-weight: bold;
  text-align: center;
  margin: 0;
}

.video-section h2 {
  font-size: 20px;
  font-weight: 400;
  text-align: center;
  margin: 0;
  line-height: 1.6;
}

.video-container {
  width: 100%;
  max-width: 800px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .video-section {
    max-width: 100%;
    padding: 40px 16px;
    gap: 30px;
  }
  
  .video-section h1 {
    font-size: 28px;
  }
  
  .video-section h2 {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .video-section {
    padding: 30px 12px;
    gap: 20px;
  }
  
  .video-section h1 {
    font-size: 24px;
  }
  
  .video-section h2 {
    font-size: 16px;
  }
}