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

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

body {
  font-family: 'Open Sans', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #2C3E2F;
  background-color: #FDFCF9;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  color: #2C5F2D;
  margin-bottom: 16px;
  line-height: 1.3;
}

h1 {
  font-size: 48px;
  font-weight: 700;
}

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

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

h4 {
  font-size: 18px;
  font-weight: 600;
}

p {
  margin-bottom: 16px;
  font-size: 16px;
}

ul, ol {
  margin-left: 24px;
  margin-bottom: 16px;
}

li {
  margin-bottom: 8px;
}

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

a:hover {
  color: #FFB84D;
}

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

/* Header */
header {
  background-color: #FFFFFF;
  box-shadow: 0 2px 8px rgba(44, 95, 45, 0.1);
  position: sticky;
  top: 0;
  z-index: 900;
  padding: 16px 0;
}

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

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

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

.main-nav a {
  font-weight: 500;
  padding: 8px 0;
  position: relative;
  transition: color 0.3s ease;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #FFB84D;
  transition: width 0.3s ease;
}

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

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 24px;
  z-index: 1100;
  background-color: #2C5F2D;
  color: #FFFFFF;
  border: none;
  padding: 12px 16px;
  font-size: 24px;
  cursor: pointer;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(44, 95, 45, 0.3);
  transition: background-color 0.3s ease, transform 0.2s ease;
}

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

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

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

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background-color: transparent;
  color: #2C5F2D;
  border: none;
  font-size: 32px;
  cursor: pointer;
  padding: 8px;
  line-height: 1;
  transition: color 0.3s ease, transform 0.2s ease;
}

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

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

.mobile-nav a {
  font-size: 18px;
  font-weight: 600;
  color: #2C5F2D;
  padding: 12px 16px;
  border-left: 3px solid transparent;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  border-left-color: #FFB84D;
  background-color: rgba(255, 184, 77, 0.1);
  padding-left: 24px;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, rgba(44, 95, 45, 0.95) 0%, rgba(44, 95, 45, 0.85) 100%), url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%232C5F2D" width="1200" height="600"/></svg>');
  background-size: cover;
  background-position: center;
  padding: 100px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(255, 184, 77, 0.15) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero h1 {
  color: #FFFFFF;
  margin-bottom: 24px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

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

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

.trust-badge {
  color: #FFB84D;
  font-weight: 600;
  font-size: 14px;
  margin-top: 24px;
}

/* Hero Inner */
.hero-inner {
  background: linear-gradient(135deg, rgba(44, 95, 45, 0.9) 0%, rgba(44, 95, 45, 0.8) 100%), url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 400"><rect fill="%232C5F2D" width="1200" height="400"/></svg>');
  background-size: cover;
  background-position: center;
  padding: 80px 20px;
  text-align: center;
  margin-bottom: 60px;
}

.hero-inner h1 {
  color: #FFFFFF;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

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

.last-updated {
  font-size: 14px;
  color: #FFB84D;
  font-style: italic;
  margin-top: 16px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-primary {
  background-color: #FFB84D;
  color: #2C3E2F;
  border-color: #FFB84D;
}

.btn-primary:hover {
  background-color: #FFA31A;
  border-color: #FFA31A;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255, 184, 77, 0.4);
}

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

.btn-secondary:hover {
  background-color: #FFFFFF;
  color: #2C5F2D;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255, 255, 255, 0.3);
}

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

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

.supporting-text {
  text-align: center;
  color: #5A6F5B;
  margin-top: 32px;
  font-style: italic;
}

/* Value Proposition */
.value-proposition {
  background-color: #F5F1E8;
  text-align: center;
}

.value-proposition h2 {
  margin-bottom: 40px;
}

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

.value-card {
  background-color: #FFFFFF;
  padding: 32px 24px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(44, 95, 45, 0.1);
  flex: 1 1 280px;
  max-width: 350px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(44, 95, 45, 0.2);
}

.value-card h3 {
  color: #2C5F2D;
  margin-bottom: 12px;
}

.value-card p {
  color: #5A6F5B;
  margin-bottom: 0;
}

/* Services Grid */
.services-overview {
  background-color: #FFFFFF;
  text-align: center;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 40px;
}

.service-card {
  background-color: #F5F1E8;
  padding: 32px 24px;
  border-radius: 12px;
  border: 2px solid #E8E4D9;
  flex: 1 1 320px;
  max-width: 380px;
  transition: all 0.3s ease;
  text-align: left;
  position: relative;
  margin-bottom: 20px;
}

.service-card:hover {
  border-color: #FFB84D;
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(255, 184, 77, 0.2);
}

.service-card h3 {
  color: #2C5F2D;
  margin-bottom: 16px;
}

.service-card p {
  color: #5A6F5B;
  margin-bottom: 16px;
}

.service-card .price {
  color: #FFB84D;
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 0;
}

/* Service Detail */
.service-detail {
  background-color: #FFFFFF;
  border-radius: 12px;
  padding: 40px 24px;
  margin-bottom: 40px;
  box-shadow: 0 2px 8px rgba(44, 95, 45, 0.1);
}

.service-detail h2 {
  margin-bottom: 16px;
}

.service-detail .price {
  color: #FFB84D;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 24px;
  display: block;
}

.service-detail ul {
  background-color: #F5F1E8;
  padding: 24px 24px 24px 48px;
  border-radius: 8px;
  margin-bottom: 24px;
}

.ideal-for {
  background-color: #FFF8E7;
  padding: 16px;
  border-left: 4px solid #FFB84D;
  border-radius: 4px;
  font-weight: 600;
  color: #2C5F2D;
}

/* Testimonials */
.testimonials {
  background-color: #F5F1E8;
  text-align: center;
}

.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.testimonial-card {
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(44, 95, 45, 0.1);
  flex: 1 1 400px;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  position: relative;
  margin-bottom: 20px;
}

.testimonial-card::before {
  content: '\201C';
  font-size: 64px;
  color: #FFB84D;
  position: absolute;
  top: 16px;
  left: 16px;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-card p {
  color: #2C3E2F;
  font-style: italic;
  margin-bottom: 0;
  padding-left: 32px;
  position: relative;
  z-index: 1;
}

.testimonial-card .author {
  color: #2C5F2D;
  font-weight: 600;
  font-style: normal;
  padding-left: 0;
  margin-top: 8px;
}

/* Story & About */
.story, .values, .team {
  background-color: #FFFFFF;
}

.story p {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 24px;
  font-size: 18px;
  line-height: 1.8;
}

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

.stat-card {
  background-color: #F5F1E8;
  padding: 32px;
  border-radius: 12px;
  text-align: center;
  flex: 1 1 200px;
  max-width: 280px;
  margin-bottom: 20px;
}

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

.stat-card p {
  color: #2C5F2D;
  font-weight: 600;
  margin-bottom: 0;
}

/* Team */
.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.team-member {
  background-color: #F5F1E8;
  padding: 32px;
  border-radius: 12px;
  flex: 1 1 300px;
  max-width: 360px;
  text-align: center;
  margin-bottom: 20px;
}

.team-member h3 {
  margin-bottom: 8px;
}

.team-member .role {
  color: #FFB84D;
  font-weight: 600;
  margin-bottom: 16px;
}

.team-member p {
  color: #5A6F5B;
}

/* Portfolio */
.portfolio-intro {
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.portfolio-project {
  background-color: #F5F1E8;
  padding: 40px 24px;
  border-radius: 12px;
  margin-bottom: 40px;
}

.portfolio-project h2 {
  margin-bottom: 12px;
}

.portfolio-project .category {
  color: #FFB84D;
  font-weight: 600;
  margin-bottom: 16px;
}

.portfolio-project .testimonial {
  background-color: #FFFFFF;
  padding: 24px;
  border-left: 4px solid #2C5F2D;
  border-radius: 4px;
  font-style: italic;
  color: #2C3E2F;
  margin-top: 24px;
}

/* Guide Section */
.guide-section, .advisor-intro {
  background-color: #FFFFFF;
}

.guide-section h3 {
  color: #2C5F2D;
  margin-top: 32px;
  margin-bottom: 16px;
}

.tip {
  background-color: #FFF8E7;
  padding: 16px;
  border-left: 4px solid #FFB84D;
  border-radius: 4px;
  margin-top: 24px;
}

.tip strong {
  color: #2C5F2D;
}

/* FAQ */
.faq {
  background-color: #F5F1E8;
}

.faq-item {
  background-color: #FFFFFF;
  padding: 24px;
  border-radius: 8px;
  margin-bottom: 24px;
  box-shadow: 0 2px 8px rgba(44, 95, 45, 0.1);
}

.faq-item h3 {
  color: #2C5F2D;
  margin-bottom: 12px;
}

.faq-item p {
  color: #5A6F5B;
  margin-bottom: 0;
}

/* Contact */
.contact-options {
  text-align: center;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.contact-card {
  background-color: #F5F1E8;
  padding: 32px;
  border-radius: 12px;
  flex: 1 1 320px;
  max-width: 400px;
  text-align: center;
  margin-bottom: 20px;
}

.contact-card h3 {
  color: #2C5F2D;
  margin-bottom: 16px;
}

.contact-card strong {
  color: #FFB84D;
  display: block;
  margin-bottom: 12px;
}

.form-note {
  background-color: #FFF8E7;
  padding: 24px;
  border-radius: 8px;
  border: 2px solid #FFB84D;
  max-width: 600px;
  margin: 0 auto;
}

.form-note p {
  margin-bottom: 12px;
}

.form-note p:last-child {
  margin-bottom: 0;
}

.location-info, .opening-hours, .consultation-info, .service-area {
  background-color: #FFFFFF;
}

.location-info h4, .consultation-info h3 {
  color: #2C5F2D;
  margin-top: 24px;
  margin-bottom: 12px;
}

.note {
  background-color: #F5F1E8;
  padding: 16px;
  border-radius: 8px;
  margin-top: 24px;
  font-style: italic;
  color: #5A6F5B;
}

/* Thank You Page */
.thank-you-hero {
  background: linear-gradient(135deg, rgba(44, 95, 45, 0.9) 0%, rgba(44, 95, 45, 0.8) 100%);
  padding: 80px 20px;
  text-align: center;
}

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

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

.thank-you-hero h1 {
  color: #FFFFFF;
}

.lead {
  font-size: 20px;
  color: #F5F1E8;
  margin-bottom: 0;
}

.confirmation, .next-steps, .testimonial-highlight {
  text-align: center;
}

.confirmation ol {
  max-width: 600px;
  margin: 32px auto;
  text-align: left;
}

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

.action-card {
  background-color: #F5F1E8;
  padding: 32px;
  border-radius: 12px;
  flex: 1 1 280px;
  max-width: 350px;
  text-align: center;
  margin-bottom: 20px;
}

.action-card h3 {
  margin-bottom: 24px;
}

/* Legal Content */
.legal-content {
  max-width: 900px;
  margin: 0 auto;
  background-color: #FFFFFF;
  padding: 40px 32px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(44, 95, 45, 0.1);
}

.legal-content h2 {
  color: #2C5F2D;
  margin-top: 40px;
  margin-bottom: 16px;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content h3 {
  color: #2C5F2D;
  margin-top: 24px;
  margin-bottom: 12px;
}

.legal-content ul {
  background-color: #F5F1E8;
  padding: 16px 16px 16px 40px;
  border-radius: 8px;
  margin-bottom: 24px;
}

.legal-content p strong {
  color: #2C5F2D;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, rgba(44, 95, 45, 0.95) 0%, rgba(44, 95, 45, 0.85) 100%);
  text-align: center;
  padding: 60px 20px;
  border-radius: 12px;
  margin-bottom: 60px;
}

.cta-section h2 {
  color: #FFFFFF;
  margin-bottom: 16px;
}

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

.guarantee {
  color: #FFB84D;
  font-size: 14px;
  font-style: italic;
  margin-top: 16px;
}

/* Footer */
footer {
  background-color: #2C5F2D;
  color: #F5F1E8;
  padding: 60px 20px 24px;
  margin-top: 60px;
}

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

.footer-col {
  flex: 1 1 220px;
}

.footer-logo {
  height: 50px;
  margin-bottom: 16px;
}

.footer-col h4 {
  color: #FFB84D;
  margin-bottom: 16px;
}

.footer-col p, .footer-col a {
  color: #F5F1E8;
  font-size: 14px;
  line-height: 1.8;
}

.footer-col a {
  display: block;
  margin-bottom: 8px;
  transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-col a:hover {
  color: #FFB84D;
  padding-left: 8px;
}

.footer-bottom {
  border-top: 1px solid rgba(245, 241, 232, 0.2);
  padding-top: 24px;
  text-align: center;
}

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

/* Cookie Consent Banner */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #2C5F2D;
  color: #F5F1E8;
  padding: 24px;
  box-shadow: 0 -4px 16px rgba(44, 95, 45, 0.3);
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

.cookie-consent-text {
  flex: 1 1 400px;
}

.cookie-consent-text p {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.6;
}

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

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

.cookie-btn-accept {
  background-color: #FFB84D;
  color: #2C3E2F;
}

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

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

.cookie-btn-reject:hover {
  background-color: rgba(245, 241, 232, 0.1);
}

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

.cookie-btn-settings:hover {
  background-color: rgba(255, 184, 77, 0.1);
}

/* Cookie Settings Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(44, 62, 47, 0.9);
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.cookie-modal.active {
  opacity: 1;
  pointer-events: all;
}

.cookie-modal-content {
  background-color: #FFFFFF;
  border-radius: 12px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
}

.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background-color: transparent;
  border: none;
  font-size: 24px;
  color: #2C5F2D;
  cursor: pointer;
  padding: 8px;
  line-height: 1;
  transition: color 0.3s ease;
}

.cookie-modal-close:hover {
  color: #FFB84D;
}

.cookie-modal h2 {
  color: #2C5F2D;
  margin-bottom: 24px;
}

.cookie-category {
  background-color: #F5F1E8;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 16px;
}

.cookie-category-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}

.cookie-category h3 {
  margin-bottom: 0;
  font-size: 18px;
}

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

.cookie-toggle.active {
  background-color: #2C5F2D;
}

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

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

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

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

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

/* Highlight */
.highlight {
  background-color: #FFF8E7;
  padding: 16px 24px;
  border-left: 4px solid #FFB84D;
  border-radius: 4px;
  font-weight: 600;
  color: #2C5F2D;
  margin-bottom: 32px;
}

/* Responsive Media Queries */
@media (max-width: 768px) {
  /* Hide desktop navigation, show mobile menu button */
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  /* Typography adjustments */
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  /* Hero adjustments */
  .hero {
    padding: 60px 20px;
  }
  
  .hero-subheadline {
    font-size: 16px;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .btn {
    width: 100%;
  }
  
  /* Grids to single column */
  .value-grid,
  .services-grid,
  .testimonial-grid,
  .stats-grid,
  .team-grid,
  .contact-grid,
  .action-grid {
    flex-direction: column;
  }
  
  .value-card,
  .service-card,
  .testimonial-card,
  .stat-card,
  .team-member,
  .contact-card,
  .action-card {
    max-width: 100%;
  }
  
  /* Footer adjustments */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-col {
    max-width: 100%;
  }
  
  /* Cookie consent */
  .cookie-consent-content {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cookie-consent-buttons {
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
  
  /* Modal adjustments */
  .cookie-modal-content {
    padding: 24px;
  }
  
  .cookie-modal-actions {
    flex-direction: column;
  }
  
  .cookie-modal-actions .cookie-btn {
    width: 100%;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .value-card,
  .service-card {
    flex: 1 1 45%;
  }
  
  .team-member {
    flex: 1 1 45%;
  }
}

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

.value-card,
.service-card,
.testimonial-card {
  animation: fadeIn 0.6s ease-out;
}

/* Print styles */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent,
  .cookie-modal,
  .cta-section,
  header,
  footer {
    display: none;
  }
  
  body {
    color: #000;
  }
  
  a {
    text-decoration: underline;
  }
}