* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --stone-white: #F5F5F4;
  --charcoal: #1E1E1E;
  --sage-green: #6FAF9A;
  --light-gray: #E5E5E5;
  --medium-gray: #9CA3AF;
  --shadow: rgba(0, 0, 0, 0.08);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: var(--charcoal);
  background-color: var(--stone-white);
  font-weight: 300;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 0.8rem;
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.4rem;
}

h4 {
  font-size: 1.1rem;
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--charcoal);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--sage-green);
}

.btn-primary, .btn-secondary {
  display: inline-block;
  padding: 12px 28px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 2px;
}

.btn-primary {
  background-color: var(--sage-green);
  color: white;
}

.btn-primary:hover {
  background-color: #5a9d87;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px var(--shadow);
}

.btn-secondary {
  background-color: transparent;
  color: var(--charcoal);
  border: 1px solid var(--charcoal);
}

.btn-secondary:hover {
  background-color: var(--charcoal);
  color: white;
  transform: translateY(-2px);
}

.privacy-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: white;
  padding: 20px;
  box-shadow: 0 -2px 20px var(--shadow);
  z-index: 1000;
  display: none;
}

.privacy-popup.show {
  display: block;
}

.privacy-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.privacy-content p {
  margin: 0;
  font-size: 14px;
  flex: 1;
}

.privacy-buttons {
  display: flex;
  gap: 15px;
  align-items: center;
}

.privacy-buttons a {
  font-size: 14px;
  text-decoration: underline;
}

.privacy-buttons button {
  padding: 8px 20px;
  background-color: var(--sage-green);
  color: white;
  border: none;
  cursor: pointer;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  transition: background-color 0.3s ease;
  border-radius: 2px;
}

.privacy-buttons button:hover {
  background-color: #5a9d87;
}

.header {
  background-color: white;
  padding: 15px 0;
  box-shadow: 0 1px 3px var(--shadow);
  position: relative;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--charcoal);
}

.nav {
  display: flex;
  gap: 30px;
}

.nav a {
  font-size: 14px;
  font-weight: 400;
  position: relative;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--sage-green);
  transition: width 0.3s ease;
}

.nav a:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--charcoal);
}

.hero {
  padding: 100px 0;
  background-color: white;
}

.hero-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.hero h1 {
  margin-bottom: 1.5rem;
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: var(--medium-gray);
}

.philosophy, .services, .process, .benefits, .methods, .systems, .products, .situations, .challenges, .approach {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}

.section-header p {
  font-size: 1.05rem;
  color: var(--medium-gray);
}

.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.philosophy-item {
  text-align: center;
}

.philosophy-item i {
  font-size: 2.5rem;
  color: var(--sage-green);
  margin-bottom: 1rem;
}

.philosophy-item h3 {
  margin-bottom: 0.8rem;
}

.philosophy-item p {
  font-size: 14px;
  color: var(--medium-gray);
}

.services {
  background-color: white;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.service-card {
  padding: 35px;
  background-color: var(--stone-white);
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px var(--shadow);
  border-color: var(--sage-green);
}

.service-card i {
  font-size: 2.2rem;
  color: var(--sage-green);
  margin-bottom: 1.2rem;
}

.service-card h3 {
  margin-bottom: 1rem;
}

.service-card p {
  font-size: 14px;
  color: var(--medium-gray);
  margin-bottom: 1.5rem;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 35px;
  margin-top: 50px;
}

.step {
  position: relative;
  padding: 30px;
  background-color: white;
  border-left: 3px solid var(--sage-green);
}

.step-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--light-gray);
  margin-bottom: 0.5rem;
}

.step h3 {
  margin-bottom: 0.8rem;
}

.step p {
  font-size: 14px;
  color: var(--medium-gray);
}

.image-section, .image-section-reverse {
  padding: 80px 0;
  background-color: white;
}

.image-section-reverse {
  background-color: var(--stone-white);
}

.image-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.image-section-reverse .image-content {
  grid-template-columns: 1fr 1fr;
}

.image-wrapper {
  width: 100%;
}

.image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 2px;
  box-shadow: 0 4px 12px var(--shadow);
}

.image-text h2 {
  margin-bottom: 1.5rem;
}

.image-text p {
  margin-bottom: 2rem;
  color: var(--medium-gray);
}

@media (max-width: 768px) {
  .image-content, .image-section-reverse .image-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .image-section-reverse .image-wrapper {
    order: 2;
  }
  
  .image-section-reverse .image-text {
    order: 1;
  }
}

.benefits {
  background-color: white;
}

.benefits-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.benefits-text h2 {
  margin-bottom: 1.5rem;
}

.benefits-text p {
  margin-bottom: 1.5rem;
  color: var(--medium-gray);
}

.benefits-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.stat {
  padding: 25px;
  background-color: var(--stone-white);
  text-align: center;
  border-left: 3px solid var(--sage-green);
}

.stat-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--sage-green);
  margin-bottom: 0.3rem;
}

.stat-label {
  font-size: 14px;
  color: var(--medium-gray);
}

.cta {
  padding: 80px 0;
  background-color: var(--charcoal);
  color: white;
}

.cta-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta h2 {
  color: white;
  margin-bottom: 1rem;
}

.cta p {
  font-size: 1.05rem;
  margin-bottom: 2rem;
  color: var(--light-gray);
}

.footer {
  background-color: white;
  padding: 30px 0;
  border-top: 1px solid var(--light-gray);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-info p {
  font-size: 13px;
  color: var(--medium-gray);
  margin: 0;
}

.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 13px;
  color: var(--medium-gray);
}

.page-hero {
  padding: 80px 0 60px;
  background-color: white;
  text-align: center;
}

.page-hero h1 {
  margin-bottom: 1rem;
}

.page-hero p {
  font-size: 1.05rem;
  color: var(--medium-gray);
  max-width: 700px;
  margin: 0 auto;
}

.methods-list {
  display: flex;
  flex-direction: column;
  gap: 50px;
  margin-top: 50px;
}

.method-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 30px;
  padding: 35px;
  background-color: white;
  border-left: 3px solid var(--sage-green);
}

.method-icon i {
  font-size: 2.5rem;
  color: var(--sage-green);
}

.method-content h3 {
  margin-bottom: 1rem;
}

.method-content p {
  color: var(--medium-gray);
  margin-bottom: 1.5rem;
}

.method-content ul {
  list-style: none;
  padding-left: 0;
}

.method-content ul li {
  padding-left: 25px;
  position: relative;
  margin-bottom: 0.8rem;
  font-size: 14px;
  color: var(--medium-gray);
}

.method-content ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--sage-green);
}

.systems {
  background-color: white;
}

.systems-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.system-card {
  padding: 30px;
  background-color: var(--stone-white);
  transition: all 0.3s ease;
}

.system-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px var(--shadow);
}

.system-card i {
  font-size: 2rem;
  color: var(--sage-green);
  margin-bottom: 1rem;
}

.system-card h3 {
  margin-bottom: 0.8rem;
  font-size: 1.2rem;
}

.system-card p {
  font-size: 14px;
  color: var(--medium-gray);
  margin: 0;
}

.products {
  background-color: var(--stone-white);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.product-card {
  padding: 25px;
  background-color: white;
  border: 1px solid var(--light-gray);
  transition: all 0.3s ease;
  position: relative;
}

@media (min-width: 376px) {
  .product-card {
    padding: 40px;
  }
}

.product-card.featured {
  border: 2px solid var(--sage-green);
  transform: scale(1.05);
}

.product-card:hover {
  box-shadow: 0 8px 20px var(--shadow);
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--sage-green);
  color: white;
  padding: 5px 15px;
  font-size: 12px;
  font-weight: 500;
  border-radius: 2px;
}

.product-card h3 {
  text-align: center;
  margin-bottom: 1rem;
}

.product-price {
  text-align: center;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--sage-green);
  margin-bottom: 1.5rem;
}

.product-features {
  list-style: none;
  margin-bottom: 2rem;
}

.product-features li {
  padding: 10px 0;
  border-bottom: 1px solid var(--light-gray);
  font-size: 14px;
  color: var(--medium-gray);
}

.product-features li:last-child {
  border-bottom: none;
}

.product-card .btn-primary,
.product-card .btn-secondary {
  width: 100%;
}

.situations-list {
  display: flex;
  flex-direction: column;
  gap: 50px;
  margin-top: 50px;
}

.situation-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 30px;
  padding: 35px;
  background-color: white;
  border-left: 3px solid var(--sage-green);
}

.situation-icon i {
  font-size: 2.5rem;
  color: var(--sage-green);
}

.situation-content h3 {
  margin-bottom: 1rem;
}

.situation-content > p {
  color: var(--medium-gray);
  margin-bottom: 1.5rem;
}

.situation-details h4 {
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.situation-details ul {
  list-style: none;
  padding-left: 0;
}

.situation-details ul li {
  padding-left: 25px;
  position: relative;
  margin-bottom: 0.8rem;
  font-size: 14px;
  color: var(--medium-gray);
}

.situation-details ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--sage-green);
}

.challenges {
  background-color: white;
}

.challenges-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.challenge-card {
  padding: 30px;
  background-color: var(--stone-white);
  transition: all 0.3s ease;
}

.challenge-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 16px var(--shadow);
}

.challenge-card i {
  font-size: 2rem;
  color: var(--sage-green);
  margin-bottom: 1rem;
}

.challenge-card h3 {
  margin-bottom: 0.8rem;
  font-size: 1.2rem;
}

.challenge-card p {
  font-size: 14px;
  color: var(--medium-gray);
  margin: 0;
}

.approach-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.approach-text h2 {
  margin-bottom: 1.5rem;
}

.approach-text p {
  margin-bottom: 1.5rem;
  color: var(--medium-gray);
}

.approach-features {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.feature-item {
  padding: 25px;
  background-color: white;
  border-left: 3px solid var(--sage-green);
}

.feature-item i {
  font-size: 1.8rem;
  color: var(--sage-green);
  margin-bottom: 0.8rem;
}

.feature-item h4 {
  margin-bottom: 0.5rem;
}

.feature-item p {
  font-size: 14px;
  color: var(--medium-gray);
  margin: 0;
}

.contact-hero {
  padding: 80px 0 60px;
  background-color: white;
  text-align: center;
}

.contact-hero h1 {
  margin-bottom: 1rem;
}

.contact-hero p {
  font-size: 1.05rem;
  color: var(--medium-gray);
  max-width: 700px;
  margin: 0 auto;
}

.contact-content {
  padding: 80px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info h2 {
  margin-bottom: 1.5rem;
}

.contact-info > p {
  color: var(--medium-gray);
  margin-bottom: 2rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact-item {
  display: flex;
  gap: 20px;
  align-items: start;
}

.contact-item i {
  font-size: 1.5rem;
  color: var(--sage-green);
  margin-top: 3px;
}

.contact-item h3 {
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

.contact-item p {
  font-size: 14px;
  color: var(--medium-gray);
  margin: 0;
}

.contact-form-wrapper {
  background-color: white;
  padding: 40px;
  box-shadow: 0 2px 12px var(--shadow);
}

.contact-form-wrapper h2 {
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 400;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--light-gray);
  background-color: var(--stone-white);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--sage-green);
}

.form-group textarea {
  resize: vertical;
}

.checkbox-group {
  margin-bottom: 25px;
}

.checkbox-label {
  display: flex;
  align-items: start;
  gap: 10px;
  cursor: pointer;
  font-size: 13px;
}

.checkbox-label input[type="checkbox"] {
  margin-top: 3px;
  width: auto;
  cursor: pointer;
}

.checkbox-label a {
  color: var(--sage-green);
  text-decoration: underline;
}

.contact-form button {
  width: 100%;
}

.map-section {
  padding: 60px 0 80px;
}

.map-section h2 {
  text-align: center;
  margin-bottom: 2rem;
}

.map-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.map-container iframe {
  width: 100%;
  border-radius: 2px;
}

.fullheight-main {
  min-height: calc(100vh - 140px);
  display: flex;
  align-items: center;
}

.thankyou-section, .error-section {
  padding: 60px 0;
  width: 100%;
}

.thankyou-content, .error-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.thankyou-icon {
  margin-bottom: 2rem;
}

.thankyou-icon i {
  font-size: 4rem;
  color: var(--sage-green);
}

.thankyou-content h1 {
  margin-bottom: 1.5rem;
}

.thankyou-content p {
  font-size: 1.05rem;
  color: var(--medium-gray);
  margin-bottom: 1.5rem;
}

.thankyou-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.error-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 8rem;
  font-weight: 700;
  color: var(--light-gray);
  line-height: 1;
  margin-bottom: 1rem;
}

.error-content h1 {
  margin-bottom: 1.5rem;
}

.error-content p {
  font-size: 1.05rem;
  color: var(--medium-gray);
  margin-bottom: 1.5rem;
}

.error-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.policy-hero {
  padding: 80px 0 40px;
  background-color: white;
  text-align: center;
  border-bottom: 1px solid var(--light-gray);
}

.policy-hero h1 {
  margin-bottom: 0.5rem;
}

.policy-hero p {
  font-size: 14px;
  color: var(--medium-gray);
}

.policy-content {
  padding: 60px 0 80px;
}

.policy-text {
  max-width: 900px;
  margin: 0 auto;
}

.policy-text h2 {
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--light-gray);
}

.policy-text h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.policy-text h3 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.policy-text h4 {
  margin-top: 1.5rem;
  margin-bottom: 0.8rem;
  font-size: 1rem;
}

.policy-text p {
  color: var(--medium-gray);
  margin-bottom: 1.2rem;
}

.policy-text ul {
  margin-bottom: 1.5rem;
  padding-left: 25px;
}

.policy-text ul li {
  margin-bottom: 0.8rem;
  color: var(--medium-gray);
  font-size: 14px;
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.6rem;
  }

  h3 {
    font-size: 1.2rem;
  }

  .nav {
    position: fixed;
    top: 60px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 60px);
    background-color: white;
    flex-direction: column;
    padding: 30px;
    gap: 20px;
    transition: left 0.3s ease;
    box-shadow: 2px 0 10px var(--shadow);
  }

  .nav.active {
    left: 0;
  }

  .menu-toggle {
    display: block;
  }

  .hero {
    padding: 60px 0;
  }

  .philosophy, .services, .process, .benefits, .methods, .systems, .products, .situations, .challenges, .approach, .contact-content {
    padding: 50px 0;
  }

  .benefits-content, .contact-grid, .approach-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .method-item, .situation-item {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .privacy-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .error-number {
    font-size: 5rem;
  }

  .thankyou-actions, .error-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .thankyou-actions a, .error-actions a {
    width: 100%;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 14px;
  }

  h1 {
    font-size: 1.8rem;
  }

  h2 {
    font-size: 1.4rem;
  }

  .container {
    padding: 0 15px;
  }

  .btn-primary, .btn-secondary {
    padding: 10px 20px;
    font-size: 13px;
  }

  .philosophy-grid, .services-grid, .process-steps, .systems-grid, .products-grid, .challenges-grid {
    grid-template-columns: 1fr;
  }

  .product-card.featured {
    transform: scale(1);
  }

  .contact-form-wrapper {
    padding: 25px;
  }
}
