/* ===================================
   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: #2c3e50;
  background-color: #ffffff;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul, ol {
  list-style-position: inside;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #2C5F2D;
  margin-bottom: 16px;
}

h1 { font-size: 32px; }
h2 { font-size: 28px; }
h3 { font-size: 24px; }
h4 { font-size: 20px; }
h5 { font-size: 18px; }
h6 { font-size: 16px; }

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

/* ===================================
   PROFESSIONAL CORPORATE COLOR PALETTE
   =================================== */

:root {
  --primary-color: #2C5F2D;
  --primary-dark: #1e4020;
  --primary-light: #3a7a3c;
  --secondary-color: #D4A574;
  --secondary-dark: #b88d5f;
  --secondary-light: #e0c09a;
  --accent-color: #F4E8D8;
  --text-dark: #2c3e50;
  --text-medium: #4a5568;
  --text-light: #718096;
  --border-color: #e2e8f0;
  --bg-light: #f7fafc;
  --white: #ffffff;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 25px rgba(0,0,0,0.12);
}

/* ===================================
   CONTAINER & LAYOUT
   =================================== */

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

/* ===================================
   HEADER & NAVIGATION
   =================================== */

header {
  background-color: var(--white);
  border-bottom: 2px solid var(--border-color);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}

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

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

.main-nav {
  display: none;
}

.main-nav a {
  color: var(--text-dark);
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 4px;
  transition: all 0.3s ease;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.main-nav a:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

/* ===================================
   MOBILE MENU
   =================================== */

.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background-color: var(--primary-color);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
}

.mobile-menu-toggle:hover {
  background-color: var(--primary-dark);
  transform: scale(1.05);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background-color: var(--white);
  box-shadow: -4px 0 15px rgba(0,0,0,0.2);
  z-index: 1000;
  transition: right 0.4s ease;
  display: flex;
  flex-direction: column;
  padding: 80px 0 40px 0;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background-color: var(--primary-color);
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background-color: var(--primary-dark);
  transform: rotate(90deg);
}

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

.mobile-nav a {
  padding: 16px 32px;
  color: var(--text-dark);
  font-weight: 600;
  font-size: 16px;
  border-bottom: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  background-color: var(--accent-color);
  color: var(--primary-color);
  padding-left: 40px;
}

/* ===================================
   BUTTONS
   =================================== */

.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--white);
  border-color: var(--primary-color);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-secondary {
  background-color: var(--white);
  color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-secondary:hover {
  background-color: var(--primary-color);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

button {
  font-family: inherit;
}

/* ===================================
   HERO SECTION
   =================================== */

.hero {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: var(--white);
  padding: 60px 20px;
  margin-bottom: 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="rgba(255,255,255,0.05)"/></svg>');
  background-size: 200px;
  opacity: 0.3;
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero h1 {
  color: var(--white);
  font-size: 32px;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-subtitle,
.hero p {
  color: var(--accent-color);
  font-size: 18px;
  margin-bottom: 24px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

.trust-indicators {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.2);
}

.trust-indicators span {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-color);
  display: flex;
  align-items: center;
  gap: 8px;
}

.trust-indicators span::before {
  content: '✓';
  display: inline-block;
  width: 20px;
  height: 20px;
  background-color: var(--secondary-color);
  border-radius: 50%;
  text-align: center;
  line-height: 20px;
  font-size: 12px;
}

/* ===================================
   BREADCRUMBS
   =================================== */

.breadcrumbs {
  font-size: 14px;
  color: var(--accent-color);
  margin-bottom: 20px;
}

.breadcrumbs a {
  color: var(--accent-color);
  text-decoration: underline;
}

.breadcrumbs a:hover {
  color: var(--white);
}

/* ===================================
   SECTIONS
   =================================== */

.section,
section {
  padding: 60px 20px;
  margin-bottom: 40px;
}

.section h2,
section h2 {
  text-align: center;
  margin-bottom: 16px;
  font-size: 28px;
}

.section > .container > p,
section > .container > p {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
  color: #8e99ac;
  font-size: 18px;
}

/* ===================================
   VALUE PROPOSITION
   =================================== */

.value-proposition {
  background-color: var(--bg-light);
}

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

.value-item {
  flex: 1 1 280px;
  background-color: var(--white);
  padding: 32px 24px;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.value-item:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.value-item h3 {
  color: var(--primary-color);
  margin-bottom: 12px;
  font-size: 20px;
}

.value-item p {
  color: var(--text-medium);
  font-size: 16px;
  line-height: 1.6;
}

/* ===================================
   SERVICES PREVIEW & GRID
   =================================== */

.services-preview {
  background-color: var(--white);
}

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

.service-card {
  flex: 1 1 300px;
  background-color: var(--white);
  padding: 32px 24px;
  border-radius: 8px;
  border: 2px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  position: relative;
}

.service-card:hover {
  border-color: var(--secondary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.service-card h3 {
  font-size: 20px;
  color: var(--primary-color);
  margin-bottom: 12px;
  min-height: 60px;
  display: flex;
  align-items: center;
}

.service-card .price {
  font-size: 28px;
  font-weight: 700;
  color: var(--secondary-color);
  margin-top: auto;
}

/* ===================================
   SERVICES DETAILED
   =================================== */

.services-detailed {
  background-color: var(--bg-light);
}

.service-detailed {
  background-color: var(--white);
  padding: 40px 32px;
  border-radius: 8px;
  box-shadow: var(--shadow-md);
  margin-bottom: 32px;
  border-left: 4px solid var(--primary-color);
}

.service-detailed h3 {
  font-size: 24px;
  color: var(--primary-color);
  margin-bottom: 16px;
}

.service-detailed .price {
  font-size: 32px;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 16px;
  display: block;
}

.service-detailed ul {
  margin: 24px 0;
  padding-left: 20px;
}

.service-detailed li {
  margin-bottom: 12px;
  color: var(--text-medium);
  position: relative;
  padding-left: 24px;
}

.service-detailed li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: 700;
}

.service-detailed .duration {
  font-style: italic;
  color: var(--text-light);
  margin: 16px 0;
}

/* ===================================
   TESTIMONIALS
   =================================== */

.testimonials {
  background-color: var(--accent-color);
}

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

.testimonial-card {
  flex: 1 1 350px;
  background-color: var(--white);
  padding: 32px 24px;
  border-radius: 8px;
  box-shadow: var(--shadow-md);
  border-left: 4px solid var(--secondary-color);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.testimonial-card p {
  font-style: italic;
  color: var(--text-dark);
  font-size: 16px;
  line-height: 1.7;
}

.testimonial-card .author {
  font-style: normal;
  font-weight: 600;
  color: var(--primary-color);
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--border-color);
}

/* ===================================
   REVIEWS & FILTER NAVIGATION
   =================================== */

.filter-navigation {
  background-color: var(--bg-light);
}

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

.filter-btn,
.category-btn {
  padding: 12px 24px;
  background-color: var(--white);
  color: var(--text-dark);
  border: 2px solid var(--border-color);
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.filter-btn:hover,
.category-btn:hover,
.filter-btn.active,
.category-btn.active {
  background-color: var(--primary-color);
  color: var(--white);
  border-color: var(--primary-color);
  transform: translateY(-2px);
}

.review-grid {
  background-color: var(--white);
}

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

.review-card {
  flex: 1 1 280px;
  background-color: var(--white);
  padding: 24px;
  border-radius: 8px;
  border: 2px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.review-card:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.review-card h3 {
  font-size: 18px;
  color: var(--primary-color);
  margin-bottom: 12px;
}

.review-card .rating {
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 8px;
  font-size: 16px;
}

.review-card p {
  color: var(--text-medium);
  font-size: 14px;
}

/* ===================================
   METHODOLOGY
   =================================== */

.methodology {
  background-color: var(--bg-light);
}

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

.method-item {
  flex: 1 1 240px;
  background-color: var(--white);
  padding: 32px 24px;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  border-top: 4px solid var(--primary-color);
  transition: all 0.3s ease;
}

.method-item:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.method-item h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: var(--primary-color);
}

/* ===================================
   BENEFITS
   =================================== */

.benefits {
  background-color: var(--accent-color);
}

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

.benefit-item {
  flex: 1 1 240px;
  background-color: var(--white);
  padding: 32px 24px;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: all 0.3s ease;
}

.benefit-item:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.benefit-item h3 {
  font-size: 20px;
  color: var(--primary-color);
  margin-bottom: 12px;
}

/* ===================================
   ABOUT SECTIONS
   =================================== */

.about-story {
  background-color: var(--white);
}

.about-story p {
  max-width: 800px;
  margin: 0 auto 20px;
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-medium);
}

.mission-vision {
  background-color: var(--bg-light);
}

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

.mission,
.vision {
  flex: 1 1 400px;
  background-color: var(--white);
  padding: 40px 32px;
  border-radius: 8px;
  box-shadow: var(--shadow-md);
}

.mission h2,
.vision h2 {
  text-align: left;
  color: var(--primary-color);
  margin-bottom: 20px;
}

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

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

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

.achievements {
  background-color: var(--primary-color);
  color: var(--white);
}

.achievements h2 {
  color: var(--white);
}

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

.stat-item {
  flex: 1 1 200px;
  text-align: center;
  padding: 24px;
}

.stat-item h3 {
  font-size: 48px;
  color: var(--secondary-color);
  margin-bottom: 8px;
  font-weight: 700;
}

.stat-item p {
  font-size: 16px;
  color: var(--accent-color);
  font-weight: 600;
}

/* ===================================
   BLOG SECTIONS
   =================================== */

.blog-categories {
  background-color: var(--bg-light);
}

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

.featured-post {
  background-color: var(--accent-color);
}

.post-featured {
  background-color: var(--white);
  padding: 40px 32px;
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
  border-left: 6px solid var(--secondary-color);
}

.post-featured h2 {
  text-align: left;
  font-size: 28px;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.post-featured p {
  text-align: left;
  font-size: 16px;
  line-height: 1.8;
}

.post-meta {
  font-size: 14px;
  color: var(--text-light);
  font-style: italic;
  margin-top: 16px;
}

.blog-grid {
  background-color: var(--white);
}

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

.post-card {
  flex: 1 1 280px;
  background-color: var(--white);
  padding: 24px;
  border-radius: 8px;
  border: 2px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.post-card:hover {
  border-color: var(--secondary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.post-card h3 {
  font-size: 18px;
  color: var(--primary-color);
  margin-bottom: 12px;
}

/* ===================================
   NEWSLETTER
   =================================== */

.newsletter {
  background-color: var(--primary-color);
  color: var(--white);
  text-align: center;
}

.newsletter h2 {
  color: var(--white);
}

.newsletter p {
  color: var(--accent-color);
}

.newsletter-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin: 32px 0;
}

.newsletter-benefits p {
  font-weight: 600;
  font-size: 16px;
}

.newsletter-form {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  max-width: 600px;
  margin: 0 auto;
}

.email-input {
  flex: 1 1 250px;
  padding: 14px 20px;
  border: 2px solid var(--white);
  border-radius: 6px;
  font-size: 16px;
  font-family: inherit;
}

.privacy-note {
  font-size: 12px;
  color: var(--accent-color);
  margin-top: 16px;
}

/* ===================================
   CONTACT SECTIONS
   =================================== */

.contact-options {
  background-color: var(--bg-light);
}

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

.contact-option {
  flex: 1 1 280px;
  background-color: var(--white);
  padding: 32px 24px;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  border-top: 4px solid var(--primary-color);
}

.contact-option h3 {
  font-size: 20px;
  color: var(--primary-color);
  margin-bottom: 16px;
}

.contact-value {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.contact-form-section {
  background-color: var(--white);
}

.form-wrapper {
  max-width: 700px;
  margin: 40px auto 0;
}

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

.form-field label {
  display: block;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
  font-size: 14px;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border-color);
  border-radius: 6px;
  font-size: 16px;
  font-family: inherit;
  transition: all 0.3s ease;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(44, 95, 45, 0.1);
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
}

.form-checkbox input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  cursor: pointer;
}

.form-checkbox label {
  font-size: 14px;
  color: var(--text-medium);
  line-height: 1.5;
  cursor: pointer;
}

.form-note {
  font-size: 12px;
  color: var(--text-light);
  font-style: italic;
  margin-top: 16px;
}

.faq-contact {
  background-color: var(--bg-light);
}

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

.faq-item {
  flex: 1 1 300px;
  background-color: var(--white);
  padding: 24px;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--secondary-color);
}

.faq-item h3 {
  font-size: 18px;
  color: var(--primary-color);
  margin-bottom: 12px;
}

.map-location {
  background-color: var(--white);
}

.location-info {
  text-align: center;
  max-width: 500px;
  margin: 40px auto 0;
  padding: 32px;
  background-color: var(--bg-light);
  border-radius: 8px;
}

.location-info p {
  margin-bottom: 8px;
}

.directions {
  font-style: italic;
  color: var(--text-light);
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border-color);
}

/* ===================================
   LEGAL PAGES
   =================================== */

.last-update {
  font-style: italic;
  color: var(--accent-color);
  font-size: 14px;
}

.legal-content {
  background-color: var(--white);
}

.legal-section {
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border-color);
}

.legal-section:last-child {
  border-bottom: none;
}

.legal-section h2 {
  text-align: left;
  font-size: 24px;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.legal-section h3 {
  text-align: left;
  font-size: 20px;
  color: var(--text-dark);
  margin-top: 24px;
  margin-bottom: 12px;
}

.legal-section p {
  text-align: left;
  margin-bottom: 16px;
  line-height: 1.8;
}

.legal-section ul,
.legal-section ol {
  margin: 16px 0;
  padding-left: 24px;
}

.legal-section li {
  margin-bottom: 12px;
  color: var(--text-medium);
  line-height: 1.7;
}

.legal-section a {
  color: var(--primary-color);
  text-decoration: underline;
}

.legal-section a:hover {
  color: var(--primary-dark);
}

/* ===================================
   THANK YOU PAGE
   =================================== */

.thank-you-hero {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: var(--white);
  text-align: center;
  padding: 80px 20px;
}

.success-icon {
  width: 80px;
  height: 80px;
  background-color: var(--secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: var(--white);
  margin: 0 auto 24px;
  box-shadow: var(--shadow-lg);
}

.thank-you-hero h1 {
  color: var(--white);
  font-size: 36px;
  margin-bottom: 16px;
}

.subtitle {
  font-size: 20px;
  color: var(--accent-color);
  margin-bottom: 20px;
}

.next-steps,
.explore-more {
  background-color: var(--bg-light);
}

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

.step-item,
.link-card {
  flex: 1 1 280px;
  background-color: var(--white);
  padding: 32px 24px;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.step-item h3,
.link-card h3 {
  font-size: 20px;
  color: var(--primary-color);
  margin-bottom: 12px;
}

.contact-reminder {
  background-color: var(--accent-color);
  text-align: center;
}

.return-navigation,
.return-home {
  background-color: var(--white);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
}

/* ===================================
   CTA SECTIONS
   =================================== */

.cta-section,
.cta-final {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: var(--white);
  text-align: center;
  padding: 60px 20px;
}

.cta-section h2,
.cta-final h2 {
  color: var(--white);
  font-size: 28px;
  margin-bottom: 16px;
}

.cta-section p,
.cta-final p {
  color: var(--accent-color);
  font-size: 18px;
  margin-bottom: 32px;
}

.contact-info {
  margin: 32px 0;
}

.contact-info p {
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}

.additional-info {
  font-size: 14px;
  color: var(--accent-color);
  margin-top: 24px;
}

/* ===================================
   FOOTER
   =================================== */

footer {
  background-color: var(--text-dark);
  color: var(--white);
  padding: 60px 20px 20px;
  margin-top: 60px;
}

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

.footer-section {
  flex: 1 1 240px;
}

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

.footer-section h4 {
  color: var(--white);
  font-size: 18px;
  margin-bottom: 16px;
  font-weight: 700;
}

.footer-section p {
  color: var(--accent-color);
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 8px;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav a {
  color: var(--accent-color);
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-nav a:hover {
  color: var(--white);
  padding-left: 8px;
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
}

.footer-bottom p {
  color: var(--accent-color);
  font-size: 14px;
}

/* ===================================
   COOKIE CONSENT BANNER
   =================================== */

#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--white);
  border-top: 3px solid var(--primary-color);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
  padding: 24px 20px;
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

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

.cookie-text h3 {
  font-size: 18px;
  color: var(--primary-color);
  margin-bottom: 8px;
}

.cookie-text p {
  font-size: 14px;
  color: var(--text-medium);
  margin-bottom: 0;
}

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

.cookie-buttons button {
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  white-space: nowrap;
}

#accept-all-cookies {
  background-color: var(--primary-color);
  color: var(--white);
  border-color: var(--primary-color);
}

#accept-all-cookies:hover {
  background-color: var(--primary-dark);
}

#reject-all-cookies {
  background-color: var(--white);
  color: var(--text-dark);
  border-color: var(--border-color);
}

#reject-all-cookies:hover {
  border-color: var(--text-dark);
}

#cookie-settings {
  background-color: var(--white);
  color: var(--primary-color);
  border-color: var(--primary-color);
}

#cookie-settings:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

/* ===================================
   COOKIE PREFERENCES MODAL
   =================================== */

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

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

.modal-content {
  background-color: var(--white);
  border-radius: 8px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
}

.modal-header {
  padding: 24px;
  border-bottom: 2px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-header h2 {
  font-size: 24px;
  color: var(--primary-color);
  margin: 0;
}

.modal-close {
  width: 32px;
  height: 32px;
  background-color: transparent;
  border: none;
  font-size: 24px;
  color: var(--text-dark);
  cursor: pointer;
  transition: all 0.3s ease;
}

.modal-close:hover {
  color: var(--primary-color);
  transform: rotate(90deg);
}

.modal-body {
  padding: 24px;
}

.cookie-category {
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-color);
}

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

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

.cookie-category h3 {
  font-size: 18px;
  color: var(--primary-color);
  margin: 0;
}

.cookie-toggle {
  position: relative;
  width: 50px;
  height: 26px;
}

.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--border-color);
  border-radius: 26px;
  transition: 0.3s;
}

.toggle-slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background-color: var(--white);
  border-radius: 50%;
  transition: 0.3s;
}

input:checked + .toggle-slider {
  background-color: var(--primary-color);
}

input:checked + .toggle-slider:before {
  transform: translateX(24px);
}

input:disabled + .toggle-slider {
  opacity: 0.5;
  cursor: not-allowed;
}

.cookie-category p {
  font-size: 14px;
  color: var(--text-medium);
  line-height: 1.6;
}

.modal-footer {
  padding: 20px 24px;
  border-top: 2px solid var(--border-color);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.modal-footer button {
  padding: 10px 24px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

#save-preferences {
  background-color: var(--primary-color);
  color: var(--white);
  border-color: var(--primary-color);
}

#save-preferences:hover {
  background-color: var(--primary-dark);
}

/* ===================================
   RESPONSIVE DESIGN - TABLET
   =================================== */

@media (min-width: 768px) {
  h1 { font-size: 48px; }
  h2 { font-size: 36px; }
  h3 { font-size: 28px; }
  
  .mobile-menu-toggle {
    display: none;
  }
  
  .main-nav {
    display: flex;
    gap: 8px;
    align-items: center;
  }
  
  .hero h1 {
    font-size: 48px;
  }
  
  .hero-subtitle {
    font-size: 20px;
  }
  
  .value-item,
  .service-card,
  .benefit-item {
    flex: 1 1 calc(50% - 12px);
  }
  
  .testimonial-card {
    flex: 1 1 calc(50% - 12px);
  }
  
  .section,
  section {
    padding: 80px 20px;
  }
}

/* ===================================
   RESPONSIVE DESIGN - DESKTOP
   =================================== */

@media (min-width: 1024px) {
  .value-item {
    flex: 1 1 calc(25% - 18px);
  }
  
  .service-card {
    flex: 1 1 calc(33.333% - 16px);
  }
  
  .benefit-item,
  .method-item {
    flex: 1 1 calc(25% - 18px);
  }
  
  .review-card,
  .post-card {
    flex: 1 1 calc(33.333% - 16px);
  }
  
  .stat-item {
    flex: 1 1 calc(25% - 24px);
  }
  
  .step-item,
  .link-card {
    flex: 1 1 calc(33.333% - 16px);
  }
}

/* ===================================
   UTILITY CLASSES
   =================================== */

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

.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }
.mb-20 { margin-bottom: 20px; }
.mb-40 { margin-bottom: 40px; }

/* ===================================
   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);
  }
}

/* ===================================
   ACCESSIBILITY
   =================================== */

*:focus-visible {
  outline: 3px solid var(--primary-color);
  outline-offset: 2px;
}

.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;
}

/* ===================================
   PRINT STYLES
   =================================== */

@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  #cookie-banner,
  .cta-buttons,
  .btn-primary,
  .btn-secondary {
    display: none !important;
  }
  
  body {
    font-size: 12pt;
    color: #000;
  }
  
  a {
    text-decoration: underline;
  }
}