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

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

body {
  font-family: 'Georgia', 'Times New Roman', serif;
  line-height: 1.8;
  color: #2c2c2c;
  background-color: #fafaf8;
  overflow-x: hidden;
}

/* Elegant Classic Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Georgia', 'Garamond', serif;
  font-weight: 400;
  line-height: 1.4;
  color: #1a1a1a;
  margin-bottom: 24px;
}

h1 {
  font-size: 48px;
  letter-spacing: -0.5px;
}

h2 {
  font-size: 36px;
  letter-spacing: -0.3px;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 20px;
}

p {
  margin-bottom: 16px;
  color: #4a4a4a;
}

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

a:hover {
  color: #1a3a54;
}

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

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

strong {
  font-weight: 600;
  color: #2c2c2c;
}

blockquote {
  border-left: 3px solid #2C5F8D;
  padding-left: 24px;
  margin: 32px 0;
  font-style: italic;
  color: #4a4a4a;
}

cite {
  display: block;
  margin-top: 16px;
  font-size: 14px;
  font-style: normal;
  color: #6a6a6a;
}

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

/* Header and Navigation */
header {
  background-color: #ffffff;
  border-bottom: 1px solid #e8e8e6;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

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

.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  gap: 32px;
  align-items: center;
}

.nav-menu li {
  margin: 0;
}

.nav-menu a {
  font-size: 15px;
  color: #2c2c2c;
  font-weight: 400;
  letter-spacing: 0.3px;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.nav-menu a:hover {
  color: #2C5F8D;
  border-bottom-color: #2C5F8D;
}

/* Mobile Menu Styles */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 24px;
  z-index: 200;
  background-color: #2C5F8D;
  color: #ffffff;
  border: none;
  width: 48px;
  height: 48px;
  font-size: 24px;
  cursor: pointer;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(44, 95, 141, 0.3);
  transition: all 0.3s ease;
}

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

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background-color: #ffffff;
  z-index: 300;
  padding: 80px 32px 32px;
  box-shadow: -4px 0 16px rgba(0, 0, 0, 0.1);
  transition: right 0.4s ease;
  overflow-y: auto;
}

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

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

.mobile-menu-close:hover {
  color: #2C5F8D;
}

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

.mobile-nav a {
  display: block;
  padding: 16px 0;
  font-size: 18px;
  color: #2c2c2c;
  border-bottom: 1px solid #e8e8e6;
  transition: all 0.3s ease;
}

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

/* Button Styles */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  font-family: 'Georgia', serif;
  letter-spacing: 0.3px;
}

.btn-primary {
  background-color: #2C5F8D;
  color: #ffffff;
  border-color: #2C5F8D;
}

.btn-primary:hover {
  background-color: #1a3a54;
  border-color: #1a3a54;
   color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(44, 95, 141, 0.3);
}

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

.btn-secondary:hover {
  background-color: #2C5F8D;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(44, 95, 141, 0.3);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #f8f9fa 0%, #e8ebe8 100%);
  padding: 80px 20px;
  margin-bottom: 60px;
  border-bottom: 1px solid #d8d8d6;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}

.hero h1 {
  max-width: 800px;
  margin-bottom: 16px;
}

.hero-subheading,
.subheading {
  font-size: 20px;
  color: #4a4a4a;
  max-width: 700px;
  line-height: 1.6;
  margin-bottom: 24px;
}

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

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

.trust-indicators span {
  font-size: 14px;
  color: #6a6a6a;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

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

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

/* Problem Solution Section */
.problem-solution {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 60px 40px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
}

.problem {
  font-size: 18px;
  color: #8a4a4a;
  margin-bottom: 24px;
  font-style: italic;
}

.solution {
  font-size: 18px;
  color: #2C5F8D;
  margin-bottom: 32px;
  font-weight: 500;
}

.benefits {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

.benefits li {
  padding-left: 32px;
  position: relative;
}

.benefits li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #2C5F8D;
  font-weight: bold;
  font-size: 18px;
}

/* Services Grid */
.services-overview {
  background-color: #f8f9fa;
  padding: 60px 20px;
}

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

.service-card,
.card {
  background-color: #ffffff;
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  flex: 1 1 calc(50% - 12px);
  min-width: 280px;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.service-card:hover,
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
}

.service-card h3,
.card h3 {
  color: #2C5F8D;
  margin-bottom: 16px;
  font-size: 22px;
}

.service-card p,
.card p {
  color: #4a4a4a;
  line-height: 1.8;
}

/* Process Steps */
.process-steps {
  padding: 60px 20px;
}

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

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  padding: 24px;
  gap: 16px;
}

.step-number {
  font-size: 48px;
  font-weight: 300;
  color: #d8d8d6;
  font-family: 'Georgia', serif;
  line-height: 1;
}

.step h3 {
  margin-bottom: 12px;
  font-size: 20px;
}

.step p {
  font-size: 15px;
  color: #6a6a6a;
}

/* Stats Section */
.stats {
  background: linear-gradient(135deg, #2C5F8D 0%, #1a3a54 100%);
  padding: 60px 20px;
  color: #ffffff;
}

.stats h2 {
  color: #ffffff;
}

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

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  flex: 1 1 calc(25% - 30px);
  min-width: 180px;
}

.stat-number {
  font-size: 48px;
  font-weight: 300;
  font-family: 'Georgia', serif;
  color: #ffffff;
  line-height: 1;
}

.stat-label {
  font-size: 14px;
  color: #d8e8f0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

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

.testimonial-card {
  background-color: #ffffff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  flex: 1 1 calc(50% - 16px);
  min-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 20px;
}

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

.client-name {
  font-weight: 600;
  color: #2C5F8D;
  font-size: 15px;
  display: block;
}

.client-detail {
  font-size: 14px;
  color: #6a6a6a;
  display: block;
  margin-top: 4px;
}

/* CTA Banner */
.cta-banner,
.cta {
  background: linear-gradient(135deg, #f8f9fa 0%, #e8ebe8 100%);
  padding: 80px 20px;
  text-align: center;
  border-top: 1px solid #d8d8d6;
  border-bottom: 1px solid #d8d8d6;
}

.cta-banner h2,
.cta h2 {
  margin-bottom: 24px;
}

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

/* Guide Content */
.guide-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
}

.chapter {
  background-color: #ffffff;
  padding: 40px;
  margin-bottom: 32px;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  border-left: 4px solid #2C5F8D;
}

.chapter h3 {
  color: #2C5F8D;
  margin-bottom: 20px;
}

/* Services Detail Page */
.services .container {
  max-width: 900px;
}

.service-detail {
  background-color: #ffffff;
  padding: 48px;
  margin-bottom: 40px;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  border-top: 3px solid #2C5F8D;
}

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

.price {
  font-size: 32px;
  font-weight: 300;
  color: #2C5F8D;
  font-family: 'Georgia', serif;
  margin-bottom: 24px;
  display: block;
}

.savings {
  font-size: 16px;
  color: #4a8a4a;
  font-weight: normal;
}

.service-detail ul {
  margin-top: 24px;
  margin-bottom: 24px;
}

/* Inspection Process */
.process-overview {
  padding: 60px 20px;
}

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

.stage {
  background-color: #ffffff;
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  flex: 1 1 calc(25% - 18px);
  min-width: 200px;
  text-align: center;
  border-top: 3px solid #2C5F8D;
}

.stage h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.stage p {
  font-size: 14px;
  color: #6a6a6a;
}

.inspection-checklist {
  padding: 60px 20px;
  background-color: #f8f9fa;
}

.checklist-category {
  background-color: #ffffff;
  padding: 32px;
  margin-bottom: 24px;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.checklist-category h3 {
  color: #2C5F8D;
  margin-bottom: 20px;
  border-bottom: 2px solid #e8e8e6;
  padding-bottom: 12px;
}

.inspection-standards {
  padding: 60px 20px;
}

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

.standard {
  background-color: #ffffff;
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  flex: 1 1 calc(50% - 12px);
  min-width: 280px;
}

.standard h3 {
  color: #2C5F8D;
  margin-bottom: 16px;
  font-size: 20px;
}

.common-findings {
  padding: 60px 20px;
  background-color: #f8f9fa;
}

.finding {
  background-color: #ffffff;
  padding: 32px;
  margin-bottom: 24px;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  border-left: 4px solid #E8722E;
}

.finding h3 {
  color: #E8722E;
  margin-bottom: 12px;
}

/* Resources Page */
.resources {
  padding: 60px 20px;
}

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

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

.resource-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
}

.resource-type {
  font-size: 12px;
  text-transform: uppercase;
  color: #2C5F8D;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
  font-weight: 600;
}

.video-resources {
  background-color: #f8f9fa;
  padding: 60px 20px;
}

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

.video-card {
  background-color: #ffffff;
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  flex: 1 1 calc(33.333% - 16px);
  min-width: 280px;
}

/* About Page */
.mission {
  padding: 60px 20px;
}

.values {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 48px;
  justify-content: space-between;
}

.value {
  background-color: #ffffff;
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  flex: 1 1 calc(50% - 16px);
  min-width: 260px;
  border-top: 3px solid #2C5F8D;
}

.value h3 {
  color: #2C5F8D;
  margin-bottom: 16px;
}

.story {
  background-color: #f8f9fa;
  padding: 60px 20px;
}

.story .container {
  max-width: 800px;
}

.team {
  padding: 60px 20px;
}

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

.team-member {
  background-color: #ffffff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  flex: 1 1 calc(33.333% - 22px);
  min-width: 260px;
  text-align: center;
}

.role {
  font-size: 14px;
  color: #2C5F8D;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
  display: block;
  font-weight: 600;
}

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

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

.contact-method {
  background-color: #ffffff;
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  flex: 1 1 calc(50% - 12px);
  min-width: 260px;
  text-align: center;
}

.contact-method h3 {
  color: #2C5F8D;
  margin-bottom: 16px;
}

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

.form-wrapper {
  max-width: 700px;
  margin: 0 auto;
  background-color: #ffffff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.form-wrapper ul {
  list-style: none;
  margin-left: 0;
}

.form-wrapper li {
  padding: 12px 0;
  border-bottom: 1px solid #e8e8e6;
  color: #4a4a4a;
}

.privacy-note {
  font-size: 13px;
  color: #6a6a6a;
  font-style: italic;
  margin-top: 24px;
}

.location {
  padding: 60px 20px;
}

.directions {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin: 32px 0;
  justify-content: space-between;
}

.direction-item {
  background-color: #ffffff;
  padding: 24px;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  flex: 1 1 calc(50% - 16px);
  min-width: 280px;
}

.direction-item h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.service-areas {
  background-color: #f8f9fa;
  padding: 60px 20px;
}

/* Legal Pages */
.legal-content {
  padding: 60px 20px;
}

.legal-content .container {
  max-width: 800px;
  background-color: #ffffff;
  padding: 48px;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.legal-content h2 {
  text-align: left;
  margin-top: 40px;
  margin-bottom: 20px;
  font-size: 28px;
}

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

/* Thank You Page */
.confirmation {
  padding: 60px 20px;
}

.confirmation .steps {
  justify-content: space-between;
}

.confirmation .step {
  flex: 1 1 calc(25% - 24px);
  background-color: #ffffff;
  padding: 32px 24px;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.timing {
  display: block;
  font-size: 13px;
  color: #2C5F8D;
  font-weight: 600;
  margin-top: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.interim-resources {
  background-color: #f8f9fa;
  padding: 60px 20px;
}

.interim-resources .resources {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 48px;
  justify-content: space-between;
}

.interim-resources .resource {
  background-color: #ffffff;
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  flex: 1 1 calc(33.333% - 16px);
  min-width: 260px;
}

.interim-resources .resource h3 {
  margin-bottom: 16px;
  font-size: 20px;
}

.interim-resources .resource a {
  display: inline-block;
  margin-top: 16px;
  color: #2C5F8D;
  font-weight: 600;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s ease;
}

.interim-resources .resource a:hover {
  border-bottom-color: #2C5F8D;
}

.urgent-contact {
  padding: 60px 20px;
  text-align: center;
}

.social-proof {
  background: linear-gradient(135deg, #2C5F8D 0%, #1a3a54 100%);
  padding: 60px 20px;
  color: #ffffff;
  text-align: center;
}

.social-proof h2 {
  color: #ffffff;
}

.social-proof p {
  color: #d8e8f0;
  margin-top: 32px;
  font-size: 18px;
}

/* Footer */
footer {
  background-color: #1a1a1a;
  color: #d8d8d6;
  padding: 60px 20px 32px;
  border-top: 3px solid #2C5F8D;
}

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

.footer-section {
  flex: 1 1 calc(25% - 36px);
  min-width: 200px;
}

.footer-section h3,
.footer-section h4 {
  color: #ffffff;
  margin-bottom: 20px;
  font-size: 18px;
}

.footer-section p {
  font-size: 14px;
  line-height: 1.8;
  color: #b8b8b6;
}

.footer-section ul {
  list-style: none;
  margin: 0;
}

.footer-section li {
  margin-bottom: 12px;
}

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

.footer-section a:hover {
  color: #ffffff;
}

.footer-bottom {
  border-top: 1px solid #3a3a3a;
  padding-top: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  list-style: none;
  margin: 0;
  justify-content: center;
}

.legal-links a {
  font-size: 13px;
  color: #b8b8b6;
}

.footer-bottom p {
  font-size: 13px;
  color: #8a8a8a;
  margin: 0;
}

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #ffffff;
  border-top: 2px solid #2C5F8D;
  padding: 24px;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  display: none;
  animation: slideUp 0.4s ease;
}

.cookie-banner.active {
  display: block;
}

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

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

.cookie-text {
  flex: 1 1 500px;
}

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

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

.cookie-btn {
  padding: 10px 24px;
  font-size: 14px;
  border-radius: 4px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  font-family: 'Georgia', serif;
}

.cookie-btn-accept {
  background-color: #2C5F8D;
  color: #ffffff;
  border-color: #2C5F8D;
}

.cookie-btn-accept:hover {
  background-color: #1a3a54;
}

.cookie-btn-reject {
  background-color: transparent;
  color: #2C5F8D;
  border-color: #2C5F8D;
}

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

.cookie-btn-settings {
  background-color: transparent;
  color: #6a6a6a;
  border-color: #d8d8d6;
}

.cookie-btn-settings:hover {
  border-color: #2C5F8D;
  color: #2C5F8D;
}

/* 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: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.cookie-modal.active {
  display: flex;
}

.cookie-modal-content {
  background-color: #ffffff;
  padding: 48px;
  border-radius: 8px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.cookie-modal h2 {
  margin-bottom: 24px;
  text-align: left;
}

.cookie-category {
  padding: 20px 0;
  border-bottom: 1px solid #e8e8e6;
}

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

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

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

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

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

.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 {
  font-size: 14px;
  color: #6a6a6a;
  margin: 0;
}

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

/* Text and Image Sections */
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 60px;
  padding: 40px 20px;
}

.text-image-section .text-content {
  flex: 1 1 400px;
}

.text-image-section .image-content {
  flex: 1 1 300px;
}

/* Feature Items */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 24px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  margin-bottom: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
  h1 {
    font-size: 36px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .nav-menu {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .mobile-menu {
    display: block;
  }
  
  .hero {
    padding: 60px 20px;
  }
  
  .hero-cta {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-cta .btn {
    width: 100%;
  }
  
  .trust-indicators {
    flex-direction: column;
    gap: 16px;
  }
  
  .service-card,
  .card,
  .standard,
  .resource-card,
  .value,
  .contact-method {
    flex: 1 1 100%;
  }
  
  .step,
  .stage {
    flex: 1 1 100%;
  }
  
  .stat {
    flex: 1 1 calc(50% - 20px);
  }
  
  .testimonial-card {
    flex: 1 1 100%;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-section {
    flex: 1 1 100%;
  }
  
  .legal-links {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }
  
  .cookie-content {
    flex-direction: column;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
  
  .cookie-modal-content {
    padding: 32px 24px;
  }
  
  .text-image-section {
    flex-direction: column;
  }
  
  .problem-solution,
  .service-detail,
  .chapter {
    padding: 32px 24px;
  }
  
  .form-wrapper {
    padding: 32px 24px;
  }
  
  .legal-content .container {
    padding: 32px 24px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  .stat {
    flex: 1 1 100%;
  }
  
  .stat-number {
    font-size: 36px;
  }
  
  .price {
    font-size: 24px;
  }
}

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

.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }

.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }

.pt-1 { padding-top: 8px; }
.pt-2 { padding-top: 16px; }
.pt-3 { padding-top: 24px; }
.pt-4 { padding-top: 32px; }

.pb-1 { padding-bottom: 8px; }
.pb-2 { padding-bottom: 16px; }
.pb-3 { padding-bottom: 24px; }
.pb-4 { padding-bottom: 32px; }

/* Print Styles */
@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal,
  .cta-banner,
  .cta {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.5;
  }
  
  h1 { font-size: 24pt; }
  h2 { font-size: 18pt; }
  h3 { font-size: 14pt; }
}