/* Global Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

::selection {
  background-color: #2F5D50;
  color: #FFFFFF;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #F8F4EA;
  color: #1C1C1C;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Topbar */
.topbar {
  background-color: #2F5D50;
  color: #FFFFFF;
  font-size: 0.9rem;
  padding: 0.4rem 0;
  width: 100%;
}

.contact-info {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 2rem;
}

.contact-info i {
  font-size: 1rem;
  color: white;
}

.contact-info span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Mobile */
@media (max-width: 768px) {
  .contact-info {
    justify-content: center;
    flex-wrap: nowrap;
    gap: 1.5rem;
    font-size: 0.9rem;
    padding: 0.2rem 1rem;
  }

  .contact-info span {
    flex-direction: row;
    white-space: nowrap;
  }
}

.site-header.transparent {
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(47, 93, 80, 0.7);
  backdrop-filter: blur(10px);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo img {
  height: 50px;
}

.menu-toggle {
  display: none;
  font-size: 2rem;
  color: white;
  cursor: pointer;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: #FFFFFF;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.nav-links a.active,
.nav-links a:hover {
  color: #B2E5D3;
}

/* Hero */
.hero-slider {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero-slide {
  height: 100%;
  width: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slide::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(47, 93, 80, 0.25);
  z-index: 2;
}

.hero-text {
  text-align: center;
  color: #fff;
  max-width: 800px;
  padding: 2rem;
  background-color: rgba(47, 93, 80, 0.25);
  border-radius: 16px;
  backdrop-filter: blur(4px);
  position: relative;
  z-index: 3;
}

.hero-text h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero-text p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #fff;
}

.btn-primary {
  background-color: #B2E5D3;
  color: #1C1C1C;
  padding: 1rem 2rem;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

.btn-primary:hover {
  background-color: #2F5D50;
  color: #fff;
}

.site-footer {
  background-color: #2F5D50;
  text-align: center;
  padding: 1rem;
  color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    background-color: #2F5D50;
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    text-align: center;
    padding: 1rem 0;
    z-index: 10;
  }

  .nav-links.active {
    display: flex;
  }

  .contact-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.3rem;
    padding-left: 1rem;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .hero-text p {
    font-size: 1rem;
  }

  .btn-primary {
    width: 90%;
    max-width: 300px;
  }
}

/* Brand Story */
.homepage-story {
  text-align: center;
  margin: 3rem auto;
  max-width: 800px;
}

.homepage-story h2 {
  font-size: 1.7rem;
  color: #2F5D50;
  margin-bottom: 1rem;
}

.homepage-story p {
  font-size: 1.05rem;
  color: #1C1C1C;
  line-height: 1.7;
}


/* Why Choose Us & Ingredients Sections */
.homepage-why,
.homepage-ingredients {
  text-align: center;
  margin: 3rem auto;
  max-width: 800px;
}

.homepage-why h2,
.homepage-ingredients h2 {
  font-size: 1.7rem;
  color: #2F5D50;
  margin-bottom: 1rem;
}

.homepage-why p,
.homepage-ingredients p {
  font-size: 1.05rem;
  color: #1C1C1C;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}


/* Highlights */
.homepage-highlights {
  display: flex;
  gap: 2rem;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 3rem auto;
  text-align: center;
}

.highlight-card {
  flex: 1 1 30%;
  padding: 2rem 1.5rem;
  background: #2F5D50;
  color: #F8F4EA;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  transition: transform 0.3s ease;
}

.highlight-card:hover {
  transform: translateY(-4px);
}

.highlight-card i {
  font-size: 2rem;
  color: #B2E5D3;
  margin-bottom: 0.8rem;
}

.event-slider {
  position: relative;
  height: 60vh;
  overflow: hidden;
}

.event-slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: 0;
}

.event-slide.active {
  opacity: 1;
  z-index: 1;
}

.event-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(47, 93, 80, 0.55);
  backdrop-filter: blur(4px);
  z-index: 2;
}

.event-content {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
}

.event-content h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.event-content p {
  font-size: 1.1rem;
  font-weight: 500;
  color: #F8F4EA;
  margin-bottom: 1.5rem;
}


.btn-secondary {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.75rem 1.5rem;
  background-color: #ffffff;
  border: 2px solid #2F5D50;
  color: #2F5D50;
  font-weight: bold;
  text-decoration: none;
  border-radius: 30px;
  transition: all 0.3s ease-in-out;
}

.btn-secondary:hover {
  background-color: #2F5D50;
  color: #ffffff;
}

/* CTA Block */
.homepage-cta {
  background-color: #B2E5D3;
  text-align: center;
  padding: 3rem 1rem;
  margin-top: 3rem;
  border-top: 6px solid #2F5D50;
}

.homepage-cta h2 {
  color: #2F5D50;
  margin-bottom: 1rem;
}

/* Footer Container */
.footer-section {
  background-color: #2F5D50;
  color: #F8F4EA;
  padding: 4rem 1rem 2rem;
  font-size: 0.95rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

/* Contact Block */
.footer-contact h3,
.footer-newsletter h3 {
  font-size: 1.2rem;
  color: #FFFFFF;
  margin-bottom: 1rem;
}

.footer-contact p,
.footer-newsletter p {
  margin-bottom: 1rem;
}

.footer-contact a,
.footer-contact a:visited,
.footer-contact a:active {
  color: #B2E5D3;
  text-decoration: none;
}

.footer-contact a:hover {
  text-decoration: underline;
}

/* Newsletter */
.footer-newsletter form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-newsletter input[type="email"] {
  padding: 0.6rem 1rem;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
}

.footer-newsletter button {
  padding: 0.6rem 1rem;
  background-color: #B2E5D3;
  color: #1C1C1C;
  font-weight: bold;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.footer-newsletter button:hover {
  background-color: #F8F4EA;
}

/* Social Media */
.footer-social {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-top: 0.5rem;
}

.footer-social a {
  color: #B2E5D3;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.footer-social a:hover {
  color: #F8F4EA;
}

/* Policies */
.footer-policies {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.footer-policies a {
  color: #B2E5D3;
  text-decoration: none;
  font-size: 0.9rem;
}

.footer-policies a:hover {
  text-decoration: underline;
}

/* Footer Credit */
.footer-credit {
  grid-column: 1 / -1;
  text-align: center;
  margin-top: 0rem; /* reduced from 2rem */
  font-size: 0.85rem;
  color: #e6e6e6;
}

/* Concept Lab hover effect */
.footer-credit a {
  color: #B2E5D3;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-credit a:hover {
  color: #ffcc00;
}

/* Responsive Adjustments */
@media (max-width: 600px) {
  .footer-newsletter form {
    flex-direction: column;
  }

  .footer-policies {
    align-items: center;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-container {
    text-align: center;
  }

  .footer-contact,
  .footer-newsletter {
    align-items: center;
  }
}

.animated-section {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animated-section.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Page Heros ---------- */
/* What We Offer Page Hero */
.page-hero-what-we-offer {
  height: 55vh;
  background: url('../assets/placeholder1.png') center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #FFF7E8;
  margin-bottom: 3rem;
}

.page-hero-what-we-offer .hero-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(47, 93, 80, 0.25);
  backdrop-filter: blur(2px);
  z-index: 1;
}

.page-hero-what-we-offer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.page-hero-what-we-offer .hero-text {
  position: relative;
  z-index: 2;
}

.page-hero-what-we-offer h1 {
  font-size: 2.8rem;
  margin-bottom: 0.5rem;
}

.page-hero-what-we-offer p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
}
/* End Of What We Offer Page Hero */

/* Our Approach Page Hero */
.page-hero-our-approach {
  height: 55vh;
  background: url('../assets/placeholder11.jpg') center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #FFF7E8;
  margin-bottom: 3rem;
}

.page-hero-our-approach .hero-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(47, 93, 80, 0.25);
  backdrop-filter: blur(2px);
  z-index: 1;
}

.page-hero-our-approach::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.page-hero-our-approach .hero-text {
  position: relative;
  z-index: 2;
}

.page-hero-our-approach h1 {
  font-size: 2.8rem;
  margin-bottom: 0.5rem;
}

.page-hero-our-approach p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
}
/* End Of Our ApproachPage Hero */

/* Contact Page Hero */
.page-hero-contact {
  height: 55vh;
  background: url('../assets/placeholder3.png') center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #FFF7E8;
  margin-bottom: 3rem;
}

.page-hero-contact .hero-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(47, 93, 80, 0.25);
  backdrop-filter: blur(2px);
  z-index: 1;
}

.page-hero-contact::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.page-hero-contact .hero-text {
  position: relative;
  z-index: 2;
}

.page-hero-contact h1 {
  font-size: 2.8rem;
  margin-bottom: 0.5rem;
}

.page-hero-contact p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
}
/* End Of Contact Page Hero */

/* Service Cards */
.what-we-do h2,
.how-it-works h2,
.teaser-section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.service-types {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding: 0 1rem;
  margin-top: 1.5rem;
}

/* Each card is fixed-width to enable centering logic */
.service-card {
  position: relative;
  width: 350px;
  background: #F8F4EA;
  padding: 1.8rem;
  border-left: 5px solid #2F5D50;
  border-radius: 10px;
  box-shadow: 0 5px 10px rgba(0,0,0,0.06);
  transition: all 0.35s ease;
}

/* Elegant hover effect */
.service-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-left: 5px solid #25f5d5;
  box-shadow: 0 10px 20px rgba(47, 93, 80, 0.15);
  background-color: #fdfaf4;
}

/* Light overlay effect */
.service-card::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(255, 255, 255, 0.05);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.service-card:hover::after {
  opacity: 1;
}

/* Typography inside card */
.service-card h3 {
  margin-bottom: 0.5rem;
  color: #2F5D50;
  font-size: 1.1rem;
}

.service-card p {
  line-height: 1.6;
  font-size: 0.95rem;
  color: #1C1C1C;
}

.how-it-works {
  margin-top: 4rem;
  text-align: center;
}

.steps-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.step-card {
  background: #F8F4EA;
  padding: 2rem;
  border-radius: 12px;
  width: 280px;
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.step-card:hover {
  transform: translateY(-6px);
}

.step-icon {
  background-color: #2F5D50;
  color: #fff;
  font-size: 1.5rem;
  width: 50px;
  height: 50px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-card h3 {
  font-size: 1.2rem;
  color: #2F5D50;
  margin-bottom: 0.5rem;
}

.step-card p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #1C1C1C;
}


.cta-enhanced-banner {
  position: relative;
  background: url('../assets/placeholder5.jpg') center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 4rem 1rem;
  margin-top: 4rem;
  overflow: hidden;
}

.cta-enhanced-banner .cta-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: rgba(47, 93, 80, 0.7);
  backdrop-filter: blur(2px);
  z-index: 1;
}

.cta-enhanced-banner .container {
  position: relative;
  z-index: 2;
}

.cta-enhanced-banner h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #FFF7E8;
}

.cta-enhanced-banner p {
  font-size: 1.05rem;
  color: #f0ebe1;
  margin-bottom: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.cta-enhanced-banner .btn-primary {
  background-color: #B2E5D3;
  color: #1C1C1C;
  padding: 0.9rem 1.7rem;
  border-radius: 6px;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.cta-enhanced-banner .btn-primary:hover {
  background-color: #FFF7E8;
  color: #2F5D50;
}


/* Animation */
.animated-section {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animated-section.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Tweak */
@media (max-width: 768px) {
  .page-hero h1 {
    font-size: 2.2rem;
  }

  .page-hero p {
    font-size: 1rem;
    padding: 0 1rem;
  }

  .btn-primary {
    width: 100%;
    max-width: 320px;
  }
}

.brand-philosophy,
.our-story,
.values-section {
  text-align: left;
  max-width: 950px;
  margin: 4rem auto;
  padding: 0 2rem;
}

.brand-philosophy {
  background: #F8F4EA;
  border-radius: 10px;
  padding: 1rem 2rem;
}

.crafted-purpose-section {
  background: #B2E5D3;
  padding: 4rem 1.5rem;
  text-align: center;
}

.crafted-purpose-section .container {
  max-width: 850px;
  margin: 0 auto;
}

.crafted-purpose-section h2 {
  font-size: 2rem;
  color: #2F5D50;
  margin-bottom: 1rem;
  position: relative;
}

.crafted-purpose-section h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: #2F5D50;
  margin: 0.5rem auto;
}

.crafted-purpose-section p {
  font-size: 1.05rem;
  color: #1C1C1C;
  line-height: 1.7;
}

.our-story {
  border-left: 6px solid #2F5D50;
  background: #F8F4EA;
  padding: 2.5rem 2rem;
  border-radius: 10px;
}

/* Heading underline */
.brand-philosophy h2,
.our-story h2,
.values-section h2,
.testimonials-block h2 {
  font-size: 2rem;
  color: #2F5D50;
  margin-bottom: 1rem;
  position: relative;
}

.brand-philosophy h2::after,
.our-story h2::after,
.values-section h2::after,
.testimonials-block h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: #2F5D50;
  margin: 0.5rem 0;
}

/* Split section */
.split-section {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  justify-content: center;
  margin: 4rem auto;
  padding: 0 1rem;
  max-width: 1000px;
}

.split-image {
  flex: 1 1 400px;
}

.split-image img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
  max-height: 320px;
}

.split-text {
  flex: 1 1 400px;
}

.split-text h2 {
  color: #2F5D50;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.split-text p {
  font-size: 1rem;
  line-height: 1.6;
}

/* Values section grid */
.value-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin-top: 2rem;
}

.value-item {
  width: 280px;
  background: #F8F4EA;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  text-align: center;
}

.value-item i {
  font-size: 2rem;
  color: #2F5D50;
  margin-bottom: 0.5rem;
}

.value-item h3 {
  margin-bottom: 0.5rem;
  color: #2F5D50;
  font-size: 1.2rem;
}

.testimonial-fade-section {
  position: relative;
  background: url('../assets/placeholder6.jpg') center/cover no-repeat;
  padding: 4rem 1.5rem;
  text-align: center;
  overflow: hidden;
}

.testimonial-fade-section::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;

  /* Branded gradient overlay with blur */
  background: linear-gradient(
    to bottom right,
    #21a376bb,
    #24493f
  );
  backdrop-filter: blur(6px);
  z-index: 1;
}

.testimonial-fade-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.testimonial-fade-slide {
  opacity: 0;
  transition: opacity 1s ease;
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
}

.testimonial-fade-slide.active {
  opacity: 1;
  position: relative;
}

.testimonial-fade-slide blockquote {
  font-style: italic;
  background-color: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-left: 4px solid #B2E5D3;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  color: #F8F4EA;
  font-size: 1.1rem;
}

.testimonial-fade-slide blockquote::before {
  content: "“";
  font-size: 3rem;
  color: #FFF7E8;
  font-family: serif;
  display: block;
  margin-bottom: 0.5rem;
}

.testimonial-fade-slide blockquote span {
  display: block;
  margin-top: 1rem;
  font-weight: bold;
  color: #B2E5D3;
}


/* Responsive */
@media (max-width: 768px) {
  .split-section {
    flex-direction: column;
    text-align: center;
  }

  .value-item {
    width: 100%;
    max-width: 320px;
  }
}

/* CONTACT PAGE */
.contact-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  padding: 4rem 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-info-block,
.contact-form {
  flex: 1 1 45%;
}

.contact-info-block h2,
.contact-form h2 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: #2F5D50;
}

.contact-info-block p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 0.75rem;
  color: #1C1C1C;
}

.contact-info-block a {
  color: #2F5D50;
  text-decoration: none;
}

/* Contact Form */
  .contact-form {
    display: flex;
    flex-direction: column;
  }

  .contact-form label {
    margin-top: 1rem;
    margin-bottom: 0.4rem;
    font-weight: 600;
    color: #2F5D50;
  }

  .contact-form input,
  .contact-form textarea {
    padding: 0.75rem 1rem;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-family: inherit;
    font-size: 1rem;
    background: #F8F4EA;
    transition: border-color 0.3s ease;
  }

  .contact-form input:focus,
  .contact-form textarea:focus {
    border-color: #2F5D50;
    outline: none;
  }

  .contact-form button {
    margin-top: 1.5rem;
    padding: 0.9rem 1.5rem;
    border: none;
    background-color: #2F5D50;
    color: #fff;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-size: 1rem;
  }

  .contact-form button:hover {
    background-color: #25f5d5;
    color: #1C1C1C;
  }

  .success-message {
    display: none;
    margin-top: 1rem;
    padding: 1rem;
    background-color: #B2E5D3;
    border-left: 5px solid #2F5D50;
    color: #1C1C1C;
    font-weight: 600;
    border-radius: 6px;
  }

    @media (max-width: 768px) {
      .contact-section {
        flex-direction: column;
        padding: 3rem 1rem;
      }

      .contact-info-block,
      .contact-form {
        flex: 1 1 100%;
      }

      .contact-form h2,
      .contact-info-block h2 {
        font-size: 1.5rem;
      }
    }
/* End of Contact Form */

/* Offering Menu */
  .offering-menu {
    margin-top: 4rem;
    margin-bottom: 2rem;
  }

  .offering-menu h2 {
    text-align: center;
    color: #2F5D50;
    margin-bottom: 0.8rem;
    font-size: 2.2rem;
    font-weight: 700;
  }

  .offering-menu .menu-intro {
    text-align: center;
    font-size: 1rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    color: #444;
  }

  .offering-menu .menu-category {
    margin-bottom: 0;
    border-top: 1px solid #ccc;
  }

  .offering-menu .menu-toggle {
    width: 100%;
    text-align: left;
    background: #F8F4EA;
    color: #2F5D50;
    font-size: 1.2rem;
    font-weight: 600;
    padding: 1rem 1.2rem;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
  }

  .offering-menu .menu-toggle:hover {
    background-color: #eee;
  }

  .offering-menu .menu-toggle small {
    font-size: 0.85rem;
    color: #888;
    font-weight: 400;
  }

  .offering-menu .menu-list {
    list-style: none;
    margin: 0;
    padding: 0 1.2rem 1rem;
    background: transparent;
  }

  .offering-menu .menu-list li {
    background: #F8F4EA;
    padding: 0.75rem 1rem;
    margin: 0.4rem 0;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.03);
    font-size: 0.95rem;
  }

  .offering-menu .collapsible {
    display: none;
    animation: fadeIn 0.3s ease;
  }

  .offering-menu .collapsible.show {
    display: block;
  }

    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(-5px); }
      to { opacity: 1; transform: translateY(0); }
    }
    /* End of Offering Menu */

.policy-container {
  max-width: 900px;
  margin: 0 auto 4rem;
  padding: 12rem 1.5rem 0; /* <-- Top padding fixed */
  font-family: 'Montserrat', sans-serif;
  color: #1C1C1C;
  background-color: #F8F4EA; /* Optional: match brand background */
}

.policy-container h1 {
  font-size: 2.2rem;
  color: #2F5D50;
  margin-bottom: 1rem;
  font-weight: 700;
}

.policy-container h2 {
  font-size: 1.4rem;
  color: #2F5D50;
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.policy-container h3 {
  font-size: 1.1rem;
  color: #24493f;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.policy-container p {
  margin-bottom: 1.2rem;
  font-size: 1rem;
  color: #333;
  line-height: 1.7;
}

.policy-container ul {
  margin-left: 1.2rem;
  margin-bottom: 1.5rem;
  padding-left: 1rem;
  list-style-type: disc;
}

.policy-container li {
  margin-bottom: 0.5rem;
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
}

/* Link Styling */
.policy-container a {
  color: #2F5D50;
  font-weight: 500;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.policy-container a:hover {
  color: #25f5d5;
}

#cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #2F5D50;
  color: #FFF7E8;
  padding: 1rem 1.2rem;
  font-family: 'Montserrat', sans-serif;
  z-index: 1000;
  box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.15);
}

#cookie-content {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

#cookie-content p {
  margin: 0;
  font-size: 0.95rem;
  flex: 1 1 60%;
  color: #FFF7E8;
}

#cookie-buttons {
  display: flex;
  gap: 0.75rem;
  flex: 1 1 35%;
  justify-content: flex-end;
}

#cookie-buttons button {
  background-color: #F8F4EA;
  color: #2F5D50;
  border: none;
  padding: 0.6rem 1.2rem;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: background-color 0.3s ease;
}

#cookie-buttons button:hover {
  background-color: #25f5d5;
  color: #2F5D50;
}
