

.footer-main {
  max-width: 100%
  margin: 0 auto;
  padding: 0 20px;
    background: #181818;
  color: #f3ded2;
  padding: 40px 0 20px 0;
}

.footer-logo-newsletter {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 40px;
}

.footer-logo img {
  max-width: 200px;
  height: auto;
  margin-bottom: 10px;
}

.footer-newsletter-text {
  color: #fff;
  margin-bottom: 12px;
  text-align: center;
  font-size: 18px;
}

.newsletter-form {
  display: flex;
  width: 300px;
  max-width: 100%;
  background: #232323;
  border-radius: 24px;
  overflow: hidden;
}

.newsletter-form input {
  flex: 1;
  border: none;
  padding: 12px 16px;
  background: transparent;
  color: #fff;
  font-size: 16px;
  outline: none;
}

.newsletter-form button {
  background: #fff;
  color: #232323;
  border: none;
  padding: 0 18px;
  font-size: 22px;
  cursor: pointer;
  border-radius: 0 24px 24px 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 20px;
  gap: 20px;
}

.footer-link-group {
  flex: 1 1 220px;
  min-width: 180px;
  margin-bottom: 30px;

}

.footer-link-group h5 {
  font-size: 16px;
  color: #fff;
  margin-bottom: 16px;
}

.footer-link-group ul {
  list-style: none;
  padding: 0;
  margin: 40px;
}

.footer-link-group ul li {
  margin-bottom: 10px;
}

.footer-link-group ul li a {
  color: #f3ded2;
  text-decoration: none;
  font-size: 15px;
  transition: color 0.2s;
}

.footer-link-group ul li a:hover {
  color: #ffe5c1;
}

/* ----------------
   Responsive part
------------------- */
@media (max-width: 900px) {
  .footer-links {
    flex-direction: column;
    gap: 0;
  }
}
@media (max-width: 650px) {
  .footer-links {
    display: block; !important;
  }
  .footer-logo-newsletter {
    padding-bottom: 20px;
  }
  .footer-main {
    
  }
  .newsletter-form {
    width: 100%;
  }
  .footer-newsletter-text {
    font-size: 16px;
  }
}

/* Import an elegant serif font for heading, and a clean sans-serif for body */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600&family=Inter:wght@400;500&display=swap');

.welcome-section {
  background: #fff;
  width: 100%;
  padding: 0;
  min-height: 60vh;
  position: relative;

}

.welcome-container {
  display: flex;
  align-items: stretch;
  justify-content: center;
  max-width: 1200px;
  margin: 20px auto;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 24px 0 rgba(0,0,0,0.04);
}

.welcome-image {
  flex: 1 1 50%;
  min-width: 320px;
  max-width: 600px;
  background: #141414;
  display: flex;
  align-items: stretch;
  justify-content: stretch;
}

.welcome-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0;
}

.welcome-content {
  flex: 1 1 50%;
  background: #fff;
  padding: 52px 48px 36px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.welcome-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: #163c37;
  font-weight: 600;
  line-height: 1.22;
  margin-bottom: 28px;
}

.welcome-content .brand {
  color: #11655d;
  letter-spacing: 0.01em;
}

.welcome-content p {
  font-family: 'Playfair Display', serif;
  color: #333;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 18px;
  font-weight: 400;
  letter-spacing: 0.01em;
  text-align: justify;
}


.whatsapp-float:hover {
  background: #128c7e;
}

/* Responsive Design */
@media (max-width: 900px) {
  .welcome-container {
    flex-direction: column;
    border-radius: 0;
    box-shadow: none;
  }
  .welcome-image,
  .welcome-content {
    max-width: 100%;
    min-width: 0;
    width: 100%;
  }
  .welcome-content {
    padding: 36px 18px 28px 18px;
  }
}

@media (max-width: 650px) {
  .welcome-content h1 {
    font-size: 20px;
    margin-bottom: 14px;
  }
  .welcome-content {
    padding: 22px 6vw 12px 6vw;
  }
  .whatsapp-float {
    right: 12px;
    bottom: 16px;
    width: 42px;
    height: 42px;
  }
  .whatsapp-float img {
    width: 26px;
    height: 26px;
  }
}

@media (max-width: 480px) {
  .welcome-image {
    min-height: 220px;
    height: 32vw;
    max-height: 190px;
  }
  .welcome-content {
    padding: 14px 3vw 8px 3vw;
  }
}

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600&family=Inter:wght@400;500&display=swap');

.features-section {
  background: #fdeadd;
  padding: 48px 0 38px 0;
  width: 100%;
}

.features-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 36px;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0 42px;
}

.feature-item {
  flex: 1 1 0;
  padding: 16px 22px;
  background: transparent;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 270px;
}

.feature-icon {
  margin-bottom: 18px;
}

.feature-item h2 {
  font-family: 'Playfair Display', serif;
  color: #14413c;
  font-size: 22px;
  font-weight: 600;
  margin: 0 0 16px 0;
  letter-spacing: 0.01em;
}

.feature-item h2 span {
  color: #11655d;
  font-weight: 600;
}

.feature-item p {
  font-family: 'Playfair Display', serif;
  color: #222;
  font-size: 19px;
  font-weight: 400;
  margin: 0;
  letter-spacing: 0.01em;
  line-height: 1.55;
  text-align: justify;
}

/* Responsive Design */
@media (max-width: 950px) {
  .features-container {
    flex-direction: column;
    gap: 32px;
    padding: 0 14vw;
  }
  .feature-item {
    align-items: flex-start;
    text-align: justify;
    min-width: 0;
  }
}
@media (max-width: 600px) {
  .features-container {
    padding: 0 6vw;
  }
  .feature-item h2 {
    font-size: 21px;
  }
  .feature-icon svg {
    width: 26px;
    height: 26px;
  }
  .features-section {
    padding: 30px 0 20px 0;
  }
}

 .section-main {
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 5vw 40px 5vw;
    }
    .section-main h1 {
      font-family: 'Playfair Display', serif;
      font-size: 22px;
      font-weight: bold;
      margin: 24px 0 48px 0;
      color: var(--main-color);
      line-height: 1.1;
      letter-spacing: 0.5px;
    }
    .section-main h1 span {
      color: var(--accent-color);
      font-weight: bold;
    }
    .two-col-flex {
      display: flex;
      align-items: flex-start;
      gap: 40px;
      flex-wrap: wrap;
    }
    .left-col {
      flex: 1 1 430px;
      min-width: 340px;
      max-width: 650px;
      margin-top: 44px;
    }
    .icon-star {
      font-size: 2rem;
      color: var(--accent-color);
      margin-bottom: 30px;
      display: inline-block;
      margin-left: -8px;
    }
    .left-col h2 {
      font-family:'Playfair Display', serif;
      font-size: 22px;
      font-weight: bold;
      margin: 0 0 8px 0;
      color: var(--main-color);
      letter-spacing: 0.5px;
      line-height: 1.1;
    }
    .left-col h2 span {
      color: var(--accent-color);
      text-decoration: underline;
      font-weight: bold;
    }
    .left-col p {
      font-size:18px;
      margin: 20px 0 28px 0;
      line-height: 1.7;
      color: #222;
      max-width: 600px;
    }
    .cta-link {
      font-family: 'Playfair Display', serif;
      font-size: 1rem;
      color: var(--main-color);
      text-decoration: none;
      font-weight: bold;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      transition: color 0.2s;
      cursor: pointer;
      margin-top: 8px;
    }
    .cta-link:hover {
      color: var(--accent-color);
    }
    .cta-link::after {
      content: "→";
      display: inline-block;
      font-size: 1.2em;
      margin-left: 3px;
    }
    .right-col {
      flex: 1 1 370px;
      min-width: 270px;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: justify;
    }
    .right-col img {
      max-width: 98%;
      height: auto;
      border-radius: 22px;
      box-shadow: 0 4px 36px 0 rgba(40,60,60,0.15);
      background: #111;
      margin-top: 14px;
      margin-bottom: 10px;
      object-fit: contain;
    }
    @media (max-width: 950px) {
      .section-main h1 {
        font-size: 22px;
      }
      .two-col-flex {
        flex-direction: column;
        gap: 0;
      }
      .left-col, .right-col {
        max-width: 100%;
        margin-top: 0;
      }
      .right-col {
        margin: 26px 0 0 0;
      }
    }
    @media (max-width: 600px) {
      .section-main {
        padding: 0 5vw 30px 5vw;
      }
      .section-main h1 {
        font-size: 20px;
        margin-bottom: 24px;
      }
      .left-col h2 {
        font-size: 20px;
      }
      .left-col p {
        font-size: 18px;
      }
    }

    .grow-section {
      max-width: 1400px;
      margin: 0 auto;
      padding: 40px 5vw 40px 5vw;
      display: flex;
      align-items: center;
      gap: 48px;
      flex-wrap: wrap;
    }
    .grow-image {
      flex: 1 1 450px;
      min-width: 340px;
      max-width: 580px;
    }
    .grow-image img {
      width: 100%;
      border-radius: 22px;
      box-shadow: 0 4px 36px 0 rgba(40,60,60,0.13);
      object-fit: cover;
      display: block;
      background: #222;
    }
    .grow-content {
      flex: 1 1 480px;
      min-width: 300px;
      max-width: 650px;
      padding-left: 0;
      box-sizing: border-box;
    }
    .grow-content h2 {
      font-family: 'Playfair Display', serif;
      font-size: 22px;
      font-weight: bold;
      margin: 0 0 18px 0;
      color: var(--main-color);
      line-height: 1.1;
      letter-spacing: 0.2px;
    }
    .grow-content h2 span {
      color: var(--accent-color);
      font-weight: bold;
    }
    .grow-content p {
      font-size: 16px;
      margin: 0 0 30px 0;
      line-height: 1.7;
      color: #222;
      max-width: 570px;
      text-align: justify;
    }
    .shop-link {
      font-family: 'Playfair Display', serif;
      font-size: 1rem;
      color: var(--main-color);
      text-decoration: none;
      font-weight: 500;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      transition: color 0.2s;
      cursor: pointer;
    }
    .shop-link:hover {
      color: var(--accent-color);
    }
    .shop-link::after {
      content: "→";
      font-size: 1.1em;
      margin-left: 4px;
    }
    @media (max-width: 950px) {
      .grow-section {
        flex-direction: column;
        gap: 22px;
        padding: 36px 5vw 24px 5vw;
      }
      .grow-content {
        padding-left: 0;
      }
      .grow-content h2 {
        font-size: 2rem;
      }
    }
    @media (max-width: 600px) {
      .grow-section {
        padding: 20px 2vw 18px 2vw;
      }
      .grow-content h2 {
        font-size: 20px;
        margin-bottom: 13px;
      }
      .grow-content p {
        font-size: 18px;
       
      }
    }