/* 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', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #2D3436;
  background-color: #FAFAFA;
  overflow-x: hidden;
}

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

h1 {
  font-size: 42px;
  font-weight: 600;
  letter-spacing: -0.5px;
}

h2 {
  font-size: 32px;
  font-weight: 600;
}

h3 {
  font-size: 24px;
  font-weight: 600;
}

p {
  margin-bottom: 16px;
  font-size: 16px;
  color: #4A4A4A;
}

a {
  color: #1A5C38;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #2C7A4F;
}

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

ul {
  list-style: none;
}

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

/* Header - Scandinavian Clean Style */
header {
  background-color: #FFFFFF;
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid #F0F0F0;
}

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

.logo a {
  display: flex;
  align-items: center;
}

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

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

.main-nav a {
  font-size: 15px;
  font-weight: 500;
  color: #4A4A4A;
  transition: color 0.3s ease;
  letter-spacing: 0.3px;
}

.main-nav a:hover {
  color: #1A5C38;
}

.header-cta {
  display: flex;
}

/* Buttons - Minimalist Scandinavian */
.btn {
  display: inline-block;
  padding: 12px 28px;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  border-radius: 4px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
  letter-spacing: 0.3px;
}

.btn-primary {
  background-color: #1A5C38;
  color: #FFFFFF;
  border-color: #1A5C38;
}

.btn-primary:hover {
  background-color: #2C7A4F;
  border-color: #2C7A4F;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(26, 92, 56, 0.2);
}

.btn-secondary {
  background-color: transparent;
  color: #1A5C38;
  border-color: #1A5C38;
}

.btn-secondary:hover {
  background-color: #1A5C38;
  color: #FFFFFF;
  transform: translateY(-2px);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  font-size: 28px;
  color: #1A5C38;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background-color: #FFFFFF;
  box-shadow: -2px 0 8px rgba(0, 0, 0, 0.1);
  z-index: 2000;
  transition: right 0.4s ease;
  display: flex;
  flex-direction: column;
  padding: 24px;
}

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

.mobile-menu-close {
  align-self: flex-end;
  background: transparent;
  border: none;
  font-size: 32px;
  color: #4A4A4A;
  cursor: pointer;
  padding: 8px;
  margin-bottom: 24px;
}

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

.mobile-nav a {
  font-size: 18px;
  font-weight: 500;
  color: #4A4A4A;
  padding: 12px 0;
  border-bottom: 1px solid #F0F0F0;
  transition: color 0.3s ease;
}

.mobile-nav a:hover {
  color: #1A5C38;
}

/* Hero Section - Light & Airy */
.hero {
  background: linear-gradient(135deg, #F8F9FA 0%, #FFFFFF 100%);
  padding: 80px 20px;
  margin-bottom: 60px;
}

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

.hero h1 {
  font-size: 48px;
  margin-bottom: 24px;
  color: #1A1A1A;
}

.hero-subheadline {
  font-size: 20px;
  color: #4A4A4A;
  margin-bottom: 32px;
  line-height: 1.6;
}

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

.trust-indicators {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.trust-indicators span {
  font-size: 14px;
  color: #6B7280;
  font-weight: 500;
  letter-spacing: 0.3px;
}

/* Page Hero - Minimal */
.page-hero {
  background-color: #F8F9FA;
  padding: 60px 20px;
  text-align: center;
  margin-bottom: 60px;
  border-bottom: 1px solid #E5E7EB;
}

.page-hero h1 {
  font-size: 42px;
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 18px;
  color: #6B7280;
  max-width: 700px;
  margin: 0 auto;
}

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

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

.section-subheadline {
  text-align: center;
  font-size: 18px;
  color: #6B7280;
  margin-bottom: 48px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Value Proposition - Clean Cards */
.value-proposition {
  padding: 60px 20px;
  background-color: #FFFFFF;
}

.value-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 48px;
}

.value-card {
  flex: 1 1 calc(25% - 24px);
  min-width: 250px;
  background-color: #F8F9FA;
  padding: 32px 24px;
  border-radius: 4px;
  border-left: 3px solid #1A5C38;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

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

.value-card p {
  font-size: 15px;
  color: #6B7280;
  line-height: 1.6;
}

/* Services Grid - Scandinavian Simplicity */
.services-preview {
  padding: 60px 20px;
  background-color: #F8F9FA;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 48px;
  margin-bottom: 40px;
}

.service-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background-color: #FFFFFF;
  padding: 32px 24px;
  border-radius: 4px;
  border: 1px solid #E5E7EB;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
  border-color: #1A5C38;
}

.service-card h3 {
  font-size: 20px;
  color: #1A1A1A;
  margin-bottom: 8px;
}

.service-card p {
  font-size: 15px;
  color: #6B7280;
  flex-grow: 1;
}

.service-card .price {
  font-size: 18px;
  font-weight: 700;
  color: #1A5C38;
  margin-top: 8px;
}

/* Process Steps - Linear & Clean */
.process {
  padding: 60px 20px;
  background-color: #FFFFFF;
}

.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 48px;
  justify-content: center;
}

.step {
  flex: 1 1 calc(25% - 32px);
  min-width: 200px;
  text-align: center;
  position: relative;
}

.step-number {
  width: 60px;
  height: 60px;
  background-color: #1A5C38;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  margin: 0 auto 20px;
  font-family: 'Montserrat', sans-serif;
}

.step h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: #1A1A1A;
}

.step p {
  font-size: 14px;
  color: #6B7280;
}

/* Impact Metrics - Bold Numbers */
.impact-metrics {
  padding: 60px 20px;
  background-color: #F8F9FA;
}

.metrics-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 48px;
  justify-content: center;
}

.metric {
  flex: 1 1 calc(25% - 32px);
  min-width: 200px;
  text-align: center;
  padding: 24px;
}

.metric-value {
  font-size: 48px;
  font-weight: 700;
  color: #1A5C38;
  margin-bottom: 8px;
  font-family: 'Montserrat', sans-serif;
}

.metric-label,
.metric p {
  font-size: 15px;
  color: #6B7280;
  line-height: 1.5;
}

/* Testimonials - Clean & Readable */
.testimonials {
  padding: 60px 20px;
  background-color: #FFFFFF;
}

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 48px;
}

.testimonial-card {
  flex: 1 1 calc(50% - 32px);
  min-width: 300px;
  background-color: #F8F9FA;
  padding: 32px;
  border-radius: 4px;
  border-left: 3px solid #C79000;
}

.testimonial-card p {
  font-size: 16px;
  color: #2D3436;
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.testimonial-author strong {
  font-size: 16px;
  color: #1A1A1A;
  font-weight: 600;
}

.testimonial-author span {
  font-size: 14px;
  color: #6B7280;
}

/* CTA Banner - Prominent */
.cta-banner {
  padding: 80px 20px;
  background: linear-gradient(135deg, #1A5C38 0%, #2C7A4F 100%);
  margin: 60px 0;
}

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

.cta-content h2 {
  color: #FFFFFF;
  font-size: 36px;
  margin-bottom: 16px;
}

.cta-content p {
  color: #E5E7EB;
  font-size: 18px;
  margin-bottom: 32px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-banner .btn-primary {
  background-color: #FFFFFF;
  color: #1A5C38;
  border-color: #FFFFFF;
}

.cta-banner .btn-primary:hover {
  background-color: #F8F9FA;
  border-color: #F8F9FA;
}

.cta-banner .btn-secondary {
  background-color: transparent;
  color: #FFFFFF;
  border-color: #FFFFFF;
}

.cta-banner .btn-secondary:hover {
  background-color: #FFFFFF;
  color: #1A5C38;
}

.cta-center {
  text-align: center;
  margin-top: 40px;
}

/* Services Detail Page */
.services-detail {
  padding: 40px 20px;
}

.service-item {
  background-color: #FFFFFF;
  padding: 40px 32px;
  margin-bottom: 32px;
  border-radius: 4px;
  border: 1px solid #E5E7EB;
}

.service-item h2 {
  font-size: 28px;
  margin-bottom: 16px;
  color: #1A1A1A;
}

.service-item .price {
  font-size: 24px;
  font-weight: 700;
  color: #1A5C38;
  margin: 16px 0;
}

.features-list {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.features-list li {
  padding-left: 28px;
  position: relative;
  font-size: 15px;
  color: #4A4A4A;
  line-height: 1.6;
}

.features-list li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #1A5C38;
  font-weight: 700;
}

/* Benefits Section */
.benefits {
  padding: 60px 20px;
  background-color: #F8F9FA;
}

.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 48px;
}

.benefit-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  background-color: #FFFFFF;
  padding: 32px 24px;
  border-radius: 4px;
  text-align: center;
  border: 1px solid #E5E7EB;
}

.benefit-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: #1A1A1A;
}

.benefit-card p {
  font-size: 14px;
  color: #6B7280;
}

/* Story & Mission */
.story,
.mission {
  padding: 60px 20px;
}

.text-section {
  max-width: 800px;
  margin: 0 auto;
}

.text-section p {
  font-size: 16px;
  line-height: 1.8;
  color: #4A4A4A;
  margin-bottom: 20px;
}

.mission-vision {
  display: flex;
  gap: 32px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.mission,
.vision {
  flex: 1 1 calc(50% - 32px);
  min-width: 280px;
  background-color: #F8F9FA;
  padding: 32px;
  border-radius: 4px;
  border-left: 3px solid #1A5C38;
}

.mission h3,
.vision h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #1A1A1A;
}

.mission p,
.vision p {
  font-size: 15px;
  color: #4A4A4A;
}

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

.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 48px;
}

/* Timeline */
.timeline {
  padding: 60px 20px;
}

.timeline-items {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 48px;
  justify-content: center;
}

.timeline-item {
  flex: 1 1 calc(25% - 32px);
  min-width: 200px;
  text-align: center;
  padding: 24px;
  background-color: #F8F9FA;
  border-radius: 4px;
}

.timeline-item .year {
  font-size: 32px;
  font-weight: 700;
  color: #1A5C38;
  margin-bottom: 12px;
  font-family: 'Montserrat', sans-serif;
}

.timeline-item p {
  font-size: 14px;
  color: #4A4A4A;
}

/* Certifications */
.certifications {
  padding: 60px 20px;
  background-color: #F8F9FA;
}

.cert-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 48px;
  justify-content: center;
}

.cert-item {
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  background-color: #FFFFFF;
  padding: 32px 24px;
  border-radius: 4px;
  text-align: center;
  border: 1px solid #E5E7EB;
}

.cert-item p {
  font-size: 15px;
  font-weight: 600;
  color: #1A1A1A;
}

/* Impact Dashboard */
.impact-dashboard {
  padding: 60px 20px;
}

/* Pillars */
.pillars {
  padding: 60px 20px;
  background-color: #F8F9FA;
}

.pillars-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 48px;
}

.pillar-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  background-color: #FFFFFF;
  padding: 32px 24px;
  border-radius: 4px;
  border-top: 3px solid #1A5C38;
}

.pillar-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #1A1A1A;
}

.pillar-card p {
  font-size: 15px;
  color: #6B7280;
  line-height: 1.6;
}

/* Initiatives */
.initiatives {
  padding: 60px 20px;
}

.initiatives-list {
  max-width: 800px;
  margin: 32px auto 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.initiatives-list li {
  padding: 20px 20px 20px 48px;
  background-color: #F8F9FA;
  border-radius: 4px;
  position: relative;
  font-size: 15px;
  color: #4A4A4A;
  line-height: 1.6;
}

.initiatives-list li:before {
  content: '→';
  position: absolute;
  left: 20px;
  color: #1A5C38;
  font-weight: 700;
  font-size: 18px;
}

/* Featured Projects */
.featured-projects {
  padding: 60px 20px;
}

.project-card {
  background-color: #FFFFFF;
  padding: 40px 32px;
  margin-bottom: 32px;
  border-radius: 4px;
  border: 1px solid #E5E7EB;
}

.project-card.featured {
  border-left: 4px solid #1A5C38;
}

.project-card h2 {
  font-size: 26px;
  margin-bottom: 8px;
  color: #1A1A1A;
}

.project-type {
  font-size: 14px;
  color: #6B7280;
  margin-bottom: 16px;
  font-weight: 500;
}

.project-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
}

.project-metrics span {
  background-color: #F8F9FA;
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  color: #1A5C38;
}

/* Aggregate Metrics */
.aggregate-metrics {
  padding: 60px 20px;
  background-color: #F8F9FA;
}

/* Blog Styles */
.blog-categories {
  padding: 40px 20px 20px;
}

.categories {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.category-btn {
  padding: 10px 20px;
  background-color: #F8F9FA;
  border: 1px solid #E5E7EB;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  color: #4A4A4A;
  cursor: pointer;
  transition: all 0.3s ease;
}

.category-btn:hover,
.category-btn.active {
  background-color: #1A5C38;
  color: #FFFFFF;
  border-color: #1A5C38;
}

.featured-article {
  padding: 40px 20px;
  background-color: #F8F9FA;
}

.article-featured {
  max-width: 900px;
  margin: 0 auto;
  background-color: #FFFFFF;
  padding: 40px;
  border-radius: 4px;
  border-left: 4px solid #C79000;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: #6B7280;
  margin-bottom: 16px;
}

.article-meta .category {
  background-color: #1A5C38;
  color: #FFFFFF;
  padding: 4px 12px;
  border-radius: 4px;
  font-weight: 600;
}

.article-featured h2 {
  font-size: 32px;
  margin-bottom: 16px;
}

.article-featured .author {
  font-size: 14px;
  color: #6B7280;
  font-style: italic;
  margin-top: 16px;
}

.blog-grid {
  padding: 60px 20px;
}

.articles-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 48px;
}

.article-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background-color: #FFFFFF;
  padding: 32px 24px;
  border-radius: 4px;
  border: 1px solid #E5E7EB;
  transition: all 0.3s ease;
}

.article-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.article-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: #1A1A1A;
}

.article-card .article-meta {
  margin-bottom: 12px;
}

.article-card p {
  font-size: 14px;
  color: #6B7280;
}

/* Guides */
.guides {
  padding: 60px 20px;
  background-color: #F8F9FA;
}

.guides-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 48px;
}

.guide-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 300px;
  background-color: #FFFFFF;
  padding: 40px 32px;
  border-radius: 4px;
  border-left: 4px solid #C79000;
}

.guide-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #1A1A1A;
}

.guide-card p {
  font-size: 15px;
  color: #6B7280;
}

/* Contact Page */
.contact-options {
  padding: 60px 20px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 48px;
  justify-content: center;
}

.contact-card {
  flex: 1 1 calc(50% - 32px);
  min-width: 300px;
  background-color: #FFFFFF;
  padding: 40px 32px;
  border-radius: 4px;
  border: 1px solid #E5E7EB;
  text-align: center;
}

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

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

.contact-form-section {
  padding: 60px 20px;
  background-color: #F8F9FA;
}

.form-wrapper {
  max-width: 700px;
  margin: 32px auto 0;
  background-color: #FFFFFF;
  padding: 40px;
  border-radius: 4px;
  border: 1px solid #E5E7EB;
}

.form-note {
  background-color: #FFF8E1;
  padding: 24px;
  border-radius: 4px;
  border-left: 4px solid #C79000;
}

.form-note p {
  font-size: 15px;
  color: #4A4A4A;
  margin-bottom: 16px;
}

.form-note ul {
  margin-left: 20px;
  margin-top: 16px;
}

.form-note li {
  font-size: 14px;
  color: #6B7280;
  margin-bottom: 8px;
  list-style: disc;
}

.office-hours {
  padding: 60px 20px;
}

.hours-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
  justify-content: center;
}

.hours-item {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 200px;
  background-color: #F8F9FA;
  padding: 24px;
  border-radius: 4px;
  text-align: center;
}

.hours-item p {
  font-size: 15px;
  color: #4A4A4A;
}

.response-time {
  text-align: center;
  margin-top: 32px;
  font-size: 15px;
  color: #6B7280;
  font-style: italic;
}

.service-area {
  padding: 60px 20px;
  background-color: #F8F9FA;
}

.service-list {
  max-width: 700px;
  margin: 32px auto 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-list li {
  padding: 16px 20px;
  background-color: #FFFFFF;
  border-radius: 4px;
  border-left: 3px solid #1A5C38;
  font-size: 15px;
  color: #4A4A4A;
}

/* Legal Pages */
.legal-hero {
  background-color: #F8F9FA;
  padding: 60px 20px;
  text-align: center;
  margin-bottom: 40px;
}

.legal-hero h1 {
  font-size: 36px;
  margin-bottom: 12px;
}

.legal-hero p {
  font-size: 16px;
  color: #6B7280;
}

.last-updated {
  font-size: 14px;
  color: #6B7280;
  font-style: italic;
  margin-top: 8px;
}

.legal-content {
  padding: 40px 20px;
}

.legal-section {
  max-width: 900px;
  margin: 0 auto 40px;
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 4px;
  border: 1px solid #E5E7EB;
}

.legal-section h2 {
  font-size: 24px;
  margin-bottom: 16px;
  color: #1A1A1A;
  text-align: left;
}

.legal-section h3 {
  font-size: 18px;
  margin-top: 24px;
  margin-bottom: 12px;
  color: #1A1A1A;
}

.legal-section p {
  font-size: 15px;
  line-height: 1.8;
  color: #4A4A4A;
  margin-bottom: 16px;
}

.legal-section ul {
  margin-left: 20px;
  margin-top: 16px;
}

.legal-section li {
  font-size: 15px;
  color: #4A4A4A;
  margin-bottom: 12px;
  list-style: disc;
  line-height: 1.7;
}

/* 404 Page */
.error-hero {
  background-color: #F8F9FA;
  padding: 80px 20px;
  text-align: center;
  margin-bottom: 60px;
}

.error-content {
  max-width: 600px;
  margin: 0 auto;
}

.error-code {
  font-size: 120px;
  font-weight: 700;
  color: #C79000;
  margin-bottom: 24px;
  font-family: 'Montserrat', sans-serif;
}

.error-hero h1 {
  font-size: 36px;
  margin-bottom: 16px;
}

.error-hero p {
  font-size: 16px;
  color: #6B7280;
}

.error-help {
  padding: 60px 20px;
}

.suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 48px;
  justify-content: center;
}

.suggestion-card {
  flex: 1 1 calc(50% - 32px);
  min-width: 300px;
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 4px;
  border: 1px solid #E5E7EB;
  text-align: center;
}

.suggestion-card h3 {
  font-size: 20px;
  margin-bottom: 20px;
  color: #1A1A1A;
}

.suggestion-card ul {
  text-align: left;
  margin-top: 16px;
}

.suggestion-card li {
  margin-bottom: 12px;
}

.suggestion-card a {
  font-size: 15px;
  color: #1A5C38;
  transition: color 0.3s ease;
}

.suggestion-card a:hover {
  color: #2C7A4F;
  text-decoration: underline;
}

.contact-support {
  padding: 60px 20px;
  background-color: #F8F9FA;
}

.contact-option {
  text-align: center;
  margin-top: 24px;
}

/* Thank You Page */
.thank-you-hero {
  background-color: #F8F9FA;
  padding: 80px 20px;
  text-align: center;
  margin-bottom: 60px;
}

.thank-you-content {
  max-width: 600px;
  margin: 0 auto;
}

.success-icon {
  width: 80px;
  height: 80px;
  background-color: #1A5C38;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  margin: 0 auto 32px;
}

.thank-you-hero h1 {
  font-size: 36px;
  margin-bottom: 16px;
}

.thank-you-hero p {
  font-size: 18px;
  color: #6B7280;
  margin-bottom: 32px;
}

.confirmation {
  padding: 60px 20px;
  background-color: #FFFFFF;
}

.steps {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 48px;
  justify-content: center;
}

.next-steps {
  padding: 60px 20px;
}

.suggestions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 48px;
}

.testimonial-highlight {
  padding: 60px 20px;
  background-color: #F8F9FA;
}

.testimonial-highlight .testimonial-card {
  max-width: 700px;
  margin: 32px auto 0;
}

/* Footer - Clean Scandinavian */
footer {
  background-color: #1A1A1A;
  color: #E5E7EB;
  padding: 60px 20px 24px;
  margin-top: 60px;
}

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

.footer-col {
  flex: 1 1 calc(33.333% - 40px);
  min-width: 250px;
}

.footer-col h3 {
  font-size: 16px;
  color: #FFFFFF;
  margin-bottom: 16px;
  font-weight: 600;
}

.footer-col p {
  font-size: 14px;
  color: #B8B8B8;
  line-height: 1.7;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col li {
  font-size: 14px;
}

.footer-col a {
  color: #B8B8B8;
  transition: color 0.3s ease;
}

.footer-col a:hover {
  color: #FFFFFF;
}

.footer-bottom {
  border-top: 1px solid #333333;
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.footer-bottom p {
  font-size: 14px;
  color: #B8B8B8;
}

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

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

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

/* Cookie Consent Banner */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #FFFFFF;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  padding: 24px;
  z-index: 9999;
  display: none;
  border-top: 2px solid #1A5C38;
}

#cookie-banner.show {
  display: block;
}

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

.cookie-text {
  flex: 1 1 60%;
  min-width: 300px;
}

.cookie-text p {
  font-size: 14px;
  color: #4A4A4A;
  margin-bottom: 0;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-btn-accept {
  background-color: #1A5C38;
  color: #FFFFFF;
}

.cookie-btn-accept:hover {
  background-color: #2C7A4F;
}

.cookie-btn-reject {
  background-color: #E5E7EB;
  color: #4A4A4A;
}

.cookie-btn-reject:hover {
  background-color: #D1D5DB;
}

.cookie-btn-settings {
  background-color: transparent;
  color: #1A5C38;
  border: 1px solid #1A5C38;
}

.cookie-btn-settings:hover {
  background-color: #F8F9FA;
}

/* Cookie Modal */
#cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

#cookie-modal.show {
  display: flex;
}

.cookie-modal-content {
  background-color: #FFFFFF;
  max-width: 600px;
  width: 100%;
  border-radius: 4px;
  padding: 32px;
  max-height: 90vh;
  overflow-y: auto;
}

.cookie-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.cookie-modal-header h3 {
  font-size: 24px;
  color: #1A1A1A;
}

.cookie-modal-close {
  background: transparent;
  border: none;
  font-size: 28px;
  color: #6B7280;
  cursor: pointer;
  padding: 0;
  line-height: 1;
}

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

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

.cookie-category h4 {
  font-size: 16px;
  margin-bottom: 8px;
  color: #1A1A1A;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cookie-category p {
  font-size: 14px;
  color: #6B7280;
  margin-bottom: 0;
}

.cookie-toggle {
  position: relative;
  width: 50px;
  height: 26px;
  background-color: #D1D5DB;
  border-radius: 13px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cookie-toggle.active {
  background-color: #1A5C38;
}

.cookie-toggle.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.cookie-toggle:before {
  content: '';
  position: absolute;
  width: 22px;
  height: 22px;
  background-color: #FFFFFF;
  border-radius: 50%;
  top: 2px;
  left: 2px;
  transition: transform 0.3s ease;
}

.cookie-toggle.active:before {
  transform: translateX(24px);
}

.cookie-modal-footer {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 32px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 28px;
  }

  .hero h1 {
    font-size: 38px;
  }

  .service-card,
  .value-card,
  .benefit-card {
    flex: 1 1 calc(50% - 24px);
  }
}

@media (max-width: 768px) {
  .main-nav,
  .header-cta {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
  }

  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 26px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero-subheadline {
    font-size: 18px;
  }

  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .service-card,
  .value-card,
  .benefit-card,
  .article-card,
  .pillar-card,
  .guide-card {
    flex: 1 1 100%;
  }

  .step,
  .metric,
  .timeline-item {
    flex: 1 1 calc(50% - 32px);
  }

  .footer-content {
    flex-direction: column;
  }

  .footer-col {
    flex: 1 1 100%;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-legal {
    justify-content: center;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }

  .cookie-btn {
    flex: 1;
  }

  .error-code {
    font-size: 80px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 24px;
  }

  .hero h1 {
    font-size: 28px;
  }

  .container {
    padding: 0 16px;
  }

  .hero,
  .page-hero {
    padding: 60px 16px;
  }

  .section {
    padding: 32px 16px;
  }

  .step,
  .metric,
  .timeline-item,
  .hours-item {
    flex: 1 1 100%;
  }

  .trust-indicators {
    flex-direction: column;
    gap: 16px;
  }

  .cta-content h2 {
    font-size: 28px;
  }

  .metric-value {
    font-size: 36px;
  }

  .error-code {
    font-size: 60px;
  }

  .cookie-modal-content {
    padding: 24px;
  }

  .cookie-modal-footer {
    flex-direction: column;
  }

  .cookie-btn {
    width: 100%;
  }
}

/* Print Styles */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  #cookie-banner,
  #cookie-modal,
  .hero-cta,
  .cta-banner,
  .cta-buttons,
  .btn {
    display: none !important;
  }

  body {
    background-color: #FFFFFF;
  }

  a {
    color: #1A1A1A;
    text-decoration: underline;
  }
}

/* Accessibility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

*:focus-visible {
  outline: 2px solid #1A5C38;
  outline-offset: 2px;
}

button:focus-visible,
a:focus-visible {
  outline: 2px solid #1A5C38;
  outline-offset: 2px;
}

/* Smooth Transitions */
* {
  transition-property: background-color, border-color, color, fill, stroke;
  transition-timing-function: ease;
  transition-duration: 200ms;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

.mobile-menu.active {
  animation: slideInRight 0.4s ease;
}

/* Loading States */
.loading {
  opacity: 0.6;
  pointer-events: none;
}

/* Selection */
::selection {
  background-color: #1A5C38;
  color: #FFFFFF;
}

::-moz-selection {
  background-color: #1A5C38;
  color: #FFFFFF;
}