/* CSS Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: #2c3e50;
  background-color: #ffffff;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  line-height: 1.2;
  color: #1E4029;
  margin-bottom: 16px;
}

h1 {
  font-size: 48px;
  margin-bottom: 24px;
}

h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

h3 {
  font-size: 24px;
  margin-bottom: 16px;
}

h4 {
  font-size: 18px;
  margin-bottom: 12px;
}

p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 16px;
  color: #2c3e50;
}

a {
  text-decoration: none;
  color: #2D5F3F;
  transition: color 0.3s ease;
}

a:hover {
  color: #7EC8A3;
}

ul {
  list-style-position: inside;
  margin-bottom: 16px;
}

li {
  margin-bottom: 8px;
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

/* Header */
header {
  background-color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 16px 0;
}

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

.logo img {
  height: 40px;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.main-nav a {
  font-size: 16px;
  font-weight: 500;
  color: #2c3e50;
  transition: color 0.3s ease;
}

.main-nav a:hover {
  color: #2D5F3F;
}

.header-cta {
  display: flex;
  align-items: center;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  background-color: #2D5F3F;
  color: #ffffff;
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.mobile-menu-toggle:hover {
  background-color: #1E4029;
  transform: scale(1.05);
}

.mobile-menu-toggle:active {
  transform: scale(0.95);
}

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background-color: #ffffff;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  padding: 80px 32px 32px;
  overflow-y: auto;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: transparent;
  border: none;
  font-size: 32px;
  color: #2c3e50;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease, transform 0.3s ease;
}

.mobile-menu-close:hover {
  color: #2D5F3F;
  transform: rotate(90deg);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mobile-nav a {
  font-size: 18px;
  font-weight: 500;
  color: #2c3e50;
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
  transition: color 0.3s ease, padding-left 0.3s ease;
}

.mobile-nav a:hover {
  color: #2D5F3F;
  padding-left: 8px;
}

/* Buttons */
.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid transparent;
  margin: 8px 8px 8px 0;
}

.btn-primary {
  background-color: #2D5F3F;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(45, 95, 63, 0.2);
}

.btn-primary:hover {
  background-color: #1E4029;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(45, 95, 63, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: #2D5F3F;
  border: 2px solid #2D5F3F;
}

.btn-secondary:hover {
  background-color: #2D5F3F;
  color: #ffffff;
  transform: translateY(-2px);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #f8faf9 0%, #e8f5ed 100%);
  padding: 80px 20px;
  margin-bottom: 60px;
  text-align: center;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  color: #1E4029;
  margin-bottom: 24px;
}

.hero-subtitle {
  font-size: 18px;
  color: #2c3e50;
  margin-bottom: 32px;
  line-height: 1.8;
}

.hero-cta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.trust-badge {
  font-size: 14px;
  color: #7EC8A3;
  font-weight: 600;
  margin-top: 16px;
}

/* Section Styles */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.section-subtitle {
  text-align: center;
  color: #2c3e50;
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 40px;
}

section h2 {
  text-align: center;
  margin-bottom: 48px;
}

/* Benefits Section */
.benefits {
  background-color: #ffffff;
}

.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.benefit-card {
  background-color: #f8faf9;
  padding: 32px 24px;
  border-radius: 12px;
  flex: 1 1 calc(50% - 12px);
  min-width: 250px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.benefit-card h3 {
  color: #2D5F3F;
  font-size: 20px;
  margin-bottom: 12px;
}

.benefit-card p {
  color: #2c3e50;
  font-size: 16px;
}

/* Features Section */
.features {
  background-color: #f8faf9;
}

.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 40px;
}

.feature-card {
  background-color: #ffffff;
  padding: 32px 24px;
  border-radius: 12px;
  flex: 1 1 calc(33.333% - 16px);
  min-width: 280px;
  margin-bottom: 20px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #e8f5ed;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(45, 95, 63, 0.12);
}

.feature-card h3 {
  color: #2D5F3F;
  font-size: 20px;
  margin-bottom: 12px;
}

.feature-card p {
  color: #2c3e50;
  font-size: 15px;
}

/* Features Detailed */
.features-detailed {
  background-color: #ffffff;
  margin-bottom: 60px;
  padding: 40px 20px;
}

.features-detailed h2 {
  text-align: left;
  color: #2D5F3F;
  margin-bottom: 16px;
}

.features-detailed p {
  font-size: 16px;
  margin-bottom: 24px;
  color: #2c3e50;
}

.features-detailed ul {
  margin-left: 24px;
  margin-bottom: 32px;
}

.features-detailed li {
  color: #2c3e50;
  margin-bottom: 12px;
  line-height: 1.6;
}

/* Services Preview */
.services-preview {
  background-color: #ffffff;
  text-align: center;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 32px;
}

.service-card {
  background-color: #f8faf9;
  padding: 32px 24px;
  border-radius: 12px;
  flex: 1 1 calc(33.333% - 16px);
  min-width: 280px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.service-card h3 {
  color: #2D5F3F;
  font-size: 20px;
  margin-bottom: 16px;
}

.service-card .price {
  font-size: 32px;
  font-weight: 700;
  color: #1E4029;
  margin: 16px 0;
}

.service-card .price span {
  font-size: 16px;
  font-weight: 400;
  color: #7EC8A3;
}

/* Pricing Section */
.pricing-cards {
  background-color: #f8faf9;
  padding: 60px 20px;
}

.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  align-items: stretch;
}

.pricing-card {
  background-color: #ffffff;
  padding: 40px 32px;
  border-radius: 16px;
  flex: 1 1 calc(33.333% - 22px);
  min-width: 300px;
  max-width: 380px;
  margin-bottom: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  border: 2px solid #e8f5ed;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(45, 95, 63, 0.15);
  border-color: #7EC8A3;
}

.pricing-card.featured {
  border: 3px solid #2D5F3F;
  box-shadow: 0 8px 24px rgba(45, 95, 63, 0.2);
}

.pricing-card.featured .badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background-color: #2D5F3F;
  color: #ffffff;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.pricing-card h3 {
  color: #2D5F3F;
  font-size: 24px;
  margin-bottom: 16px;
  text-align: center;
}

.pricing-card .price {
  font-size: 48px;
  font-weight: 700;
  color: #1E4029;
  text-align: center;
  margin: 20px 0;
}

.pricing-card .price span {
  font-size: 18px;
  font-weight: 400;
  color: #7EC8A3;
}

.pricing-card > p {
  text-align: center;
  color: #2c3e50;
  margin-bottom: 24px;
  line-height: 1.6;
}

.pricing-card ul {
  list-style: none;
  margin: 24px 0;
  flex-grow: 1;
}

.pricing-card ul li {
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
  color: #2c3e50;
  font-size: 15px;
}

.pricing-card ul li:last-child {
  border-bottom: none;
}

.pricing-card .btn-primary {
  width: 100%;
  margin-top: auto;
}

/* Services Cards */
.services-cards {
  background-color: #ffffff;
  padding: 60px 20px;
}

.services-cards h2 {
  text-align: center;
  margin-bottom: 16px;
}

.services-cards > .container > p {
  text-align: center;
  color: #2c3e50;
  margin-bottom: 48px;
}

/* Social Proof Section */
.social-proof {
  background-color: #f8faf9;
  text-align: center;
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-around;
  margin-top: 40px;
}

.stat {
  flex: 1 1 200px;
  min-width: 200px;
  margin-bottom: 20px;
}

.stat h3 {
  font-size: 48px;
  color: #2D5F3F;
  margin-bottom: 8px;
}

.stat p {
  font-size: 16px;
  color: #2c3e50;
}

/* Testimonials Section */
.testimonials {
  background-color: #ffffff;
  padding: 60px 20px;
}

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  margin-top: 40px;
}

.testimonial-card {
  background-color: #f8faf9;
  padding: 32px;
  border-radius: 12px;
  flex: 1 1 calc(50% - 16px);
  min-width: 300px;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  border-left: 4px solid #7EC8A3;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.testimonial-card p {
  font-size: 16px;
  line-height: 1.8;
  color: #2c3e50;
  margin-bottom: 0;
}

.testimonial-card .author {
  font-weight: 600;
  color: #2D5F3F;
  font-size: 14px;
  margin-top: 16px;
}

/* Industries Grid */
.industries-grid {
  background-color: #ffffff;
}

.industries-grid .industries-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 40px;
}

.industry-card {
  background-color: #f8faf9;
  padding: 32px 24px;
  border-radius: 12px;
  flex: 1 1 calc(50% - 12px);
  min-width: 280px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 3px solid #7EC8A3;
}

.industry-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.industry-card h3 {
  color: #2D5F3F;
  font-size: 20px;
  margin-bottom: 12px;
}

.industry-card p {
  color: #2c3e50;
  font-size: 15px;
}

/* Story Section */
.story {
  background-color: #ffffff;
  padding: 60px 20px;
}

.story h2 {
  text-align: center;
  margin-bottom: 32px;
}

.story p {
  max-width: 800px;
  margin: 0 auto 24px;
  font-size: 16px;
  line-height: 1.8;
}

/* Mission & Vision */
.mission-vision {
  background-color: #f8faf9;
  padding: 60px 20px;
}

.mission-vision .container {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  justify-content: space-between;
}

.mission, .vision {
  flex: 1 1 calc(50% - 24px);
  min-width: 300px;
  margin-bottom: 20px;
}

.mission h2, .vision h2 {
  text-align: left;
  color: #2D5F3F;
  margin-bottom: 16px;
}

.mission p, .vision p {
  font-size: 16px;
  line-height: 1.8;
}

/* Values Section */
.values {
  background-color: #ffffff;
  padding: 60px 20px;
}

.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 40px;
}

.value-card {
  background-color: #f8faf9;
  padding: 32px 24px;
  border-radius: 12px;
  flex: 1 1 calc(50% - 12px);
  min-width: 250px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  text-align: center;
  border-top: 3px solid #2D5F3F;
}

.value-card h3 {
  color: #2D5F3F;
  font-size: 20px;
  margin-bottom: 12px;
}

.value-card p {
  color: #2c3e50;
  font-size: 15px;
}

/* Blog Grid */
.blog-grid {
  background-color: #ffffff;
  padding: 60px 20px;
}

.posts-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 40px;
}

.post-card {
  background-color: #f8faf9;
  padding: 32px 24px;
  border-radius: 12px;
  flex: 1 1 calc(50% - 12px);
  min-width: 280px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  position: relative;
}

.post-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.post-card.featured {
  flex: 1 1 100%;
  background: linear-gradient(135deg, #2D5F3F 0%, #1E4029 100%);
  color: #ffffff;
  padding: 48px 40px;
  position: relative;
}

.post-card.featured h2 {
  color: #ffffff;
  font-size: 32px;
}

.post-card.featured p {
  color: #ffffff;
}

.post-card.featured .meta {
  color: #7EC8A3;
}

.post-card.featured .badge {
  position: absolute;
  top: 24px;
  right: 24px;
  background-color: #7EC8A3;
  color: #1E4029;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.post-card h3 {
  color: #2D5F3F;
  font-size: 20px;
  margin-bottom: 12px;
}

.post-card p {
  color: #2c3e50;
  font-size: 15px;
  margin-bottom: 16px;
}

.post-card .meta {
  font-size: 13px;
  color: #7EC8A3;
  font-weight: 500;
}

/* Contact Section */
.contact-methods {
  background-color: #f8faf9;
  padding: 60px 20px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 40px;
}

.contact-card {
  background-color: #ffffff;
  padding: 32px 24px;
  border-radius: 12px;
  flex: 1 1 calc(33.333% - 16px);
  min-width: 250px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  text-align: center;
  border-top: 3px solid #7EC8A3;
}

.contact-card h3 {
  color: #2D5F3F;
  font-size: 20px;
  margin-bottom: 16px;
}

.contact-card p {
  color: #2c3e50;
  font-size: 15px;
  margin-bottom: 8px;
}

.contact-card .note {
  font-size: 13px;
  color: #7EC8A3;
  font-weight: 600;
}

/* Contact Form */
.contact-form {
  background-color: #ffffff;
  padding: 60px 20px;
}

.contact-form h2 {
  text-align: center;
  margin-bottom: 16px;
}

.contact-form > .container > p {
  text-align: center;
  color: #2c3e50;
  margin-bottom: 40px;
}

.form-wrapper {
  max-width: 600px;
  margin: 0 auto;
  background-color: #f8faf9;
  padding: 40px 32px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.form-field {
  margin-bottom: 24px;
}

.form-field label {
  display: block;
  font-weight: 600;
  color: #2D5F3F;
  margin-bottom: 8px;
  font-size: 15px;
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #e8f5ed;
  border-radius: 8px;
  font-size: 15px;
  font-family: 'Open Sans', sans-serif;
  background-color: #ffffff;
  transition: border-color 0.3s ease;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: #7EC8A3;
}

.form-field textarea {
  min-height: 150px;
  resize: vertical;
}

.form-note {
  font-size: 13px;
  color: #7EC8A3;
  text-align: center;
  margin: 24px 0;
  font-style: italic;
}

.form-wrapper .btn-primary {
  width: 100%;
  margin-top: 8px;
}

/* Quick Actions */
.quick-actions {
  background-color: #f8faf9;
  padding: 60px 20px;
}

.actions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 40px;
}

.action-card {
  background-color: #ffffff;
  padding: 32px 24px;
  border-radius: 12px;
  flex: 1 1 calc(50% - 12px);
  min-width: 280px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.action-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.action-card h3 {
  color: #2D5F3F;
  font-size: 20px;
  margin-bottom: 12px;
}

.action-card p {
  color: #2c3e50;
  font-size: 15px;
}

/* Legal Content */
.legal-content {
  background-color: #ffffff;
  padding: 60px 20px;
}

.legal-content h1 {
  text-align: center;
  margin-bottom: 16px;
}

.legal-content .last-updated,
.legal-content .effective-date,
.legal-content .subtitle {
  text-align: center;
  color: #7EC8A3;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 40px;
}

.legal-content .container {
  max-width: 800px;
}

.legal-content h2 {
  text-align: left;
  color: #2D5F3F;
  font-size: 24px;
  margin-top: 32px;
  margin-bottom: 16px;
}

.legal-content p,
.legal-content ul {
  color: #2c3e50;
  line-height: 1.8;
  margin-bottom: 16px;
}

.legal-content ul {
  margin-left: 24px;
}

.legal-content li {
  margin-bottom: 12px;
}

/* Thank You Page */
.thank-you {
  background-color: #f8faf9;
  padding: 80px 20px;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thank-you-content {
  background-color: #ffffff;
  padding: 60px 40px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.thank-you-content h1 {
  color: #2D5F3F;
  font-size: 48px;
  margin-bottom: 24px;
}

.thank-you-content h2 {
  color: #2D5F3F;
  font-size: 24px;
  margin-top: 40px;
  margin-bottom: 20px;
  text-align: left;
}

.thank-you-content p {
  font-size: 18px;
  color: #2c3e50;
  margin-bottom: 32px;
  line-height: 1.8;
}

.thank-you-content ul {
  text-align: left;
  margin: 24px 0 40px 24px;
}

.thank-you-content li {
  color: #2c3e50;
  font-size: 16px;
  margin-bottom: 12px;
}

.quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin: 32px 0;
}

.quick-links a {
  padding: 12px 24px;
  background-color: #f8faf9;
  color: #2D5F3F;
  border-radius: 8px;
  font-weight: 600;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.quick-links a:hover {
  background-color: #e8f5ed;
  transform: translateY(-2px);
}

/* CTA Sections */
.cta-final,
.cta-section {
  background: linear-gradient(135deg, #2D5F3F 0%, #1E4029 100%);
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  margin-bottom: 0;
}

.cta-final h2,
.cta-section h2 {
  color: #ffffff;
  font-size: 40px;
  margin-bottom: 16px;
}

.cta-final p,
.cta-section p {
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 32px;
}

.cta-final .btn-primary,
.cta-section .btn-primary {
  background-color: #7EC8A3;
  color: #1E4029;
}

.cta-final .btn-primary:hover,
.cta-section .btn-primary:hover {
  background-color: #ffffff;
  color: #2D5F3F;
}

.guarantee {
  font-size: 14px;
  color: #7EC8A3;
  margin-top: 16px;
}

/* Footer */
footer {
  background-color: #1E4029;
  color: #ffffff;
  padding: 60px 20px 20px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  margin-bottom: 40px;
}

.footer-column {
  flex: 1 1 200px;
  min-width: 200px;
  margin-bottom: 20px;
}

.footer-column h4 {
  color: #7EC8A3;
  font-size: 18px;
  margin-bottom: 16px;
}

.footer-column p,
.footer-column a {
  color: #ffffff;
  font-size: 14px;
  line-height: 1.8;
  display: block;
  margin-bottom: 8px;
}

.footer-column a:hover {
  color: #7EC8A3;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.footer-bottom p {
  color: #ffffff;
  font-size: 14px;
  margin: 0;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-legal a {
  color: #ffffff;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: #7EC8A3;
}

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #1E4029;
  color: #ffffff;
  padding: 24px 20px;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.2);
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-banner.active {
  transform: translateY(0);
}

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

.cookie-banner p {
  flex: 1 1 300px;
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: #ffffff;
}

.cookie-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.cookie-banner button {
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.cookie-banner .btn-accept {
  background-color: #7EC8A3;
  color: #1E4029;
}

.cookie-banner .btn-accept:hover {
  background-color: #ffffff;
  transform: translateY(-2px);
}

.cookie-banner .btn-reject {
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.cookie-banner .btn-reject:hover {
  background-color: #ffffff;
  color: #1E4029;
}

.cookie-banner .btn-settings {
  background-color: transparent;
  color: #7EC8A3;
  text-decoration: underline;
  padding: 10px 16px;
}

.cookie-banner .btn-settings:hover {
  color: #ffffff;
}

/* Cookie Settings Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.cookie-modal.active {
  opacity: 1;
  visibility: visible;
}

.cookie-modal-content {
  background-color: #ffffff;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  border-radius: 16px;
  padding: 40px 32px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
  transform: translateY(-20px);
  transition: transform 0.3s ease;
}

.cookie-modal.active .cookie-modal-content {
  transform: translateY(0);
}

.cookie-modal h2 {
  color: #2D5F3F;
  font-size: 28px;
  margin-bottom: 24px;
}

.cookie-category {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #e8f5ed;
}

.cookie-category:last-of-type {
  border-bottom: none;
}

.cookie-category h3 {
  color: #2D5F3F;
  font-size: 18px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cookie-category p {
  font-size: 14px;
  color: #2c3e50;
  margin-bottom: 12px;
}

.cookie-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cookie-toggle input[type="checkbox"] {
  width: 48px;
  height: 24px;
  appearance: none;
  background-color: #e8f5ed;
  border-radius: 12px;
  position: relative;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cookie-toggle input[type="checkbox"]:checked {
  background-color: #2D5F3F;
}

.cookie-toggle input[type="checkbox"]::before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  top: 2px;
  left: 2px;
  background-color: #ffffff;
  transition: transform 0.3s ease;
}

.cookie-toggle input[type="checkbox"]:checked::before {
  transform: translateX(24px);
}

.cookie-toggle input[type="checkbox"]:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.cookie-toggle label {
  font-size: 13px;
  color: #7EC8A3;
  font-weight: 600;
}

.cookie-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.cookie-modal-actions button {
  flex: 1 1 auto;
  padding: 14px 24px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.cookie-modal-actions .btn-save {
  background-color: #2D5F3F;
  color: #ffffff;
}

.cookie-modal-actions .btn-save:hover {
  background-color: #1E4029;
  transform: translateY(-2px);
}

.cookie-modal-actions .btn-close {
  background-color: #f0f0f0;
  color: #2c3e50;
}

.cookie-modal-actions .btn-close:hover {
  background-color: #e0e0e0;
}

/* Responsive Design */
@media (max-width: 768px) {
  /* Typography */
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  p {
    font-size: 15px;
  }
  
  /* Header */
  .main-nav {
    display: none;
  }
  
  .header-cta {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  /* Hero */
  .hero {
    padding: 60px 20px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }
  
  .hero-cta .btn-primary,
  .hero-cta .btn-secondary {
    width: 100%;
    margin: 8px 0;
  }
  
  /* Cards */
  .benefit-card,
  .feature-card,
  .service-card,
  .pricing-card,
  .industry-card,
  .value-card,
  .testimonial-card,
  .contact-card,
  .post-card,
  .action-card {
    flex: 1 1 100%;
  }
  
  /* Grids */
  .benefits-grid,
  .features-grid,
  .services-grid,
  .pricing-grid,
  .stats-grid,
  .testimonials-grid,
  .industries-grid .industries-grid,
  .values-grid,
  .posts-grid,
  .contact-grid,
  .actions-grid {
    flex-direction: column;
  }
  
  .mission, .vision {
    flex: 1 1 100%;
  }
  
  /* Pricing */
  .pricing-card .price {
    font-size: 40px;
  }
  
  /* CTA */
  .cta-final h2,
  .cta-section h2 {
    font-size: 28px;
  }
  
  .cta-final p,
  .cta-section p {
    font-size: 16px;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-legal {
    justify-content: center;
  }
  
  /* Cookie Banner */
  .cookie-banner .container {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-banner-actions {
    width: 100%;
    justify-content: center;
  }
  
  .cookie-banner button {
    flex: 1 1 auto;
  }
  
  /* Cookie Modal */
  .cookie-modal-content {
    padding: 32px 24px;
  }
  
  .cookie-modal h2 {
    font-size: 24px;
  }
  
  /* Thank You */
  .thank-you-content {
    padding: 40px 24px;
  }
  
  .thank-you-content h1 {
    font-size: 32px;
  }
  
  .quick-links {
    flex-direction: column;
  }
  
  .quick-links a {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 480px) {
  /* Mobile optimizations */
  .container {
    padding: 0 16px;
  }
  
  section {
    padding: 32px 16px;
  }
  
  .btn-primary,
  .btn-secondary {
    padding: 12px 24px;
    font-size: 15px;
  }
  
  .hero {
    padding: 40px 16px;
  }
  
  .pricing-card,
  .service-card {
    padding: 32px 20px;
  }
  
  .form-wrapper {
    padding: 32px 20px;
  }
  
  .cookie-modal-content {
    padding: 24px 20px;
  }
  
  .thank-you-content {
    padding: 32px 20px;
  }
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}

@keyframes slideInUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mt-0 {
  margin-top: 0 !important;
}

/* Print Styles */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal,
  header,
  footer {
    display: none;
  }
}