/* ============================================
   DEEP TRAIL - INDUSTRIAL MODERN CSS
   Design Style: Industrial Modern
   ============================================ */

/* CSS RESET & BASE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

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

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #2C5F4F;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

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

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

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

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

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

a:hover {
  color: #8B7355;
}

ul {
  list-style: none;
}

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

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

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  border: 2px solid transparent;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.1);
}

.btn-primary {
  background: #2C5F4F;
  color: #fff;
  border-color: #2C5F4F;
}

.btn-primary:hover {
  background: #1a3d2f;
  border-color: #1a3d2f;
  transform: translateY(-2px);
  box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.15);
}

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

.btn-secondary:hover {
  background: #2C5F4F;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.15);
}

.btn-link {
  color: #8B7355;
  font-weight: 600;
  text-decoration: underline;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.5px;
}

.btn-link:hover {
  color: #2C5F4F;
}

/* HEADER */
header {
  background: #1a1a1a;
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  border-bottom: 3px solid #8B7355;
}

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

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

.main-nav {
  display: none;
}

.main-nav a {
  color: #E8DCC8;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 16px;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.main-nav a:hover {
  color: #fff;
  border-bottom-color: #8B7355;
}

.header-cta {
  display: none;
}

/* MOBILE MENU TOGGLE */
.mobile-menu-toggle {
  display: block;
  background: #8B7355;
  color: #fff;
  border: none;
  font-size: 28px;
  width: 50px;
  height: 50px;
  cursor: pointer;
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 2000;
  border-radius: 0;
  box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: #6d5940;
  transform: scale(1.05);
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: #1a1a1a;
  z-index: 1999;
  padding: 80px 24px 24px;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: -4px 0 12px rgba(0, 0, 0, 0.5);
  border-left: 3px solid #8B7355;
}

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

.mobile-menu-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #8B7355;
  color: #fff;
  border: none;
  font-size: 28px;
  width: 50px;
  height: 50px;
  cursor: pointer;
  border-radius: 0;
  box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: #6d5940;
  transform: rotate(90deg);
}

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

.mobile-nav a {
  color: #E8DCC8;
  font-weight: 600;
  font-size: 16px;
  padding: 14px 16px;
  border-left: 3px solid transparent;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.mobile-nav a:hover {
  background: rgba(139, 115, 85, 0.2);
  border-left-color: #8B7355;
  color: #fff;
  padding-left: 24px;
}

/* HERO SECTION */
.hero {
  background: linear-gradient(135deg, #2C5F4F 0%, #1a3d2f 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(0, 0, 0, 0.05) 10px, rgba(0, 0, 0, 0.05) 20px);
  pointer-events: none;
}

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

.hero h1 {
  color: #E8DCC8;
  font-size: 48px;
  margin-bottom: 24px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  color: #E8DCC8;
  font-size: 18px;
  margin-bottom: 32px;
  opacity: 0.9;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.trust-badge {
  display: inline-block;
  background: rgba(139, 115, 85, 0.3);
  color: #E8DCC8;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  border-left: 3px solid #8B7355;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* PAGE HERO */
.page-hero {
  background: #2C5F4F;
  padding: 60px 0 40px;
  margin-bottom: 60px;
  border-bottom: 3px solid #8B7355;
}

.page-hero h1 {
  color: #E8DCC8;
  margin-bottom: 16px;
}

.page-hero .subtitle {
  color: #E8DCC8;
  font-size: 18px;
  opacity: 0.9;
}

.breadcrumb {
  font-size: 14px;
  margin-bottom: 16px;
  color: #E8DCC8;
  opacity: 0.8;
}

.breadcrumb a {
  color: #E8DCC8;
  text-decoration: underline;
}

.breadcrumb a:hover {
  color: #fff;
}

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

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

/* VALUE PROPOSITION */
.value-proposition {
  background: #fff;
  padding: 60px 20px;
}

.value-proposition h2 {
  text-align: center;
  margin-bottom: 48px;
  font-size: 32px;
}

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

.feature-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 250px;
  background: #f5f5f5;
  padding: 32px 24px;
  border-left: 4px solid #8B7355;
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.15);
  border-left-color: #2C5F4F;
}

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

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

/* SERVICES OVERVIEW */
.services-overview {
  background: #E8DCC8;
  padding: 60px 20px;
}

.services-overview h2 {
  text-align: center;
  margin-bottom: 48px;
}

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

.service-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  background: #fff;
  padding: 32px;
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.1);
  border-top: 4px solid #2C5F4F;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

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

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

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

.service-card .price {
  color: #8B7355;
  font-weight: 700;
  font-size: 24px;
  margin: 20px 0;
  font-family: 'Montserrat', sans-serif;
}

/* PROCESS SECTION */
.process {
  background: #fff;
  padding: 60px 20px;
}

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

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

.step {
  flex: 1 1 calc(50% - 24px);
  min-width: 220px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: #f5f5f5;
  border-left: 3px solid #8B7355;
  margin-bottom: 20px;
}

.step-number {
  background: #2C5F4F;
  color: #E8DCC8;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  flex-shrink: 0;
  font-family: 'Montserrat', sans-serif;
  box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.2);
}

.step h3 {
  color: #2C5F4F;
  font-size: 18px;
  margin-bottom: 8px;
}

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

/* TESTIMONIALS */
.testimonials {
  background: #1a1a1a;
  padding: 60px 20px;
  color: #E8DCC8;
}

.testimonials h2 {
  color: #E8DCC8;
  text-align: center;
  margin-bottom: 48px;
}

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

.testimonial-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  background: rgba(232, 220, 200, 0.1);
  padding: 32px;
  border-left: 4px solid #8B7355;
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.3);
  margin-bottom: 20px;
}

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

.testimonial-card .author {
  color: #8B7355;
  font-weight: 600;
  font-style: normal;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* TEXT SECTIONS */
.text-section {
  max-width: 800px;
  margin: 0 auto 40px;
}

.text-section p {
  margin-bottom: 24px;
  line-height: 1.8;
}

/* LISTS */
.highlight-list,
.benefits-list,
.topics-list,
.cert-list,
.guarantee-list,
.areas-list {
  margin: 32px 0;
}

.highlight-list li,
.benefits-list li,
.topics-list li,
.cert-list li,
.guarantee-list li,
.areas-list li {
  padding: 16px 16px 16px 48px;
  margin-bottom: 12px;
  background: #f5f5f5;
  border-left: 3px solid #8B7355;
  position: relative;
  font-size: 16px;
  line-height: 1.6;
}

.highlight-list li::before,
.benefits-list li::before,
.topics-list li::before,
.cert-list li::before,
.guarantee-list li::before,
.areas-list li::before {
  content: '▸';
  position: absolute;
  left: 16px;
  color: #2C5F4F;
  font-size: 20px;
  font-weight: 700;
}

/* VALUES SECTION */
.values {
  background: #E8DCC8;
  padding: 60px 20px;
}

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

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

.value-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 250px;
  background: #fff;
  padding: 32px;
  text-align: center;
  border-top: 4px solid #2C5F4F;
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

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

.value-card h3 {
  color: #2C5F4F;
  margin-bottom: 16px;
  font-size: 22px;
}

/* SERVICES DETAILED */
.services-detailed {
  background: #fff;
}

.service-detail {
  background: #f5f5f5;
  padding: 40px;
  margin-bottom: 32px;
  border-left: 4px solid #8B7355;
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.1);
}

.service-detail h2 {
  color: #2C5F4F;
  margin-bottom: 16px;
}

.service-detail .price {
  color: #8B7355;
  font-weight: 700;
  font-size: 28px;
  margin: 20px 0;
  font-family: 'Montserrat', sans-serif;
}

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

.service-detail ul li {
  padding: 12px 12px 12px 40px;
  margin-bottom: 8px;
  background: #fff;
  border-left: 2px solid #2C5F4F;
  position: relative;
}

.service-detail ul li::before {
  content: '✓';
  position: absolute;
  left: 12px;
  color: #2C5F4F;
  font-weight: 700;
}

/* PROJECTS SHOWCASE */
.project-card {
  background: #fff;
  padding: 40px;
  margin-bottom: 32px;
  border-top: 4px solid #2C5F4F;
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.1);
}

.project-card h2 {
  color: #2C5F4F;
  margin-bottom: 12px;
}

.project-card .category {
  color: #8B7355;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.project-card .duration {
  color: #555;
  font-weight: 600;
  margin-top: 16px;
}

.project-card .testimonial {
  background: #E8DCC8;
  padding: 20px;
  margin-top: 20px;
  border-left: 3px solid #8B7355;
  font-style: italic;
}

/* CONSULTATION */
.consultation-process {
  background: #f5f5f5;
  padding: 60px 20px;
}

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

.step-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 250px;
  background: #fff;
  padding: 32px;
  border-left: 4px solid #2C5F4F;
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}

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

.step-card .duration {
  color: #8B7355;
  font-weight: 600;
  margin-top: 12px;
  font-size: 14px;
  text-transform: uppercase;
}

/* FAQ */
.faq {
  background: #fff;
  padding: 60px 20px;
}

.faq-item {
  background: #f5f5f5;
  padding: 32px;
  margin-bottom: 20px;
  border-left: 4px solid #8B7355;
}

.faq-item h3 {
  color: #2C5F4F;
  margin-bottom: 16px;
  font-size: 18px;
}

.faq-item p {
  color: #555;
  line-height: 1.8;
}

/* CONTACT */
.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.contact-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  background: #fff;
  padding: 32px;
  text-align: center;
  border-top: 4px solid #2C5F4F;
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}

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

.contact-card .response {
  color: #8B7355;
  font-weight: 600;
  font-size: 14px;
  margin-top: 12px;
}

.form-notice {
  background: #E8DCC8;
  padding: 32px;
  border-left: 4px solid #8B7355;
  margin: 32px 0;
}

.form-notice p {
  margin-bottom: 16px;
}

.form-notice a {
  color: #2C5F4F;
  font-weight: 600;
  text-decoration: underline;
}

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

.info-block {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 250px;
  background: #f5f5f5;
  padding: 32px;
  border-left: 3px solid #8B7355;
  margin-bottom: 20px;
}

.info-block h3 {
  color: #2C5F4F;
  margin-bottom: 16px;
}

/* THANK YOU PAGE */
.thank-you-page {
  background: #E8DCC8;
  padding: 80px 20px;
  text-align: center;
}

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

.checkmark {
  width: 80px;
  height: 80px;
  background: #2C5F4F;
  color: #E8DCC8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  margin: 0 auto 32px;
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.2);
}

.thank-you-page h1 {
  color: #2C5F4F;
  margin-bottom: 24px;
}

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

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

.resource-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  background: #fff;
  padding: 32px;
  text-align: center;
  border-top: 4px solid #2C5F4F;
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}

.resource-card h3 {
  color: #2C5F4F;
  margin-bottom: 16px;
}

/* CTA SECTIONS */
.cta-section {
  background: linear-gradient(135deg, #2C5F4F 0%, #1a3d2f 100%);
  padding: 60px 20px;
  text-align: center;
  color: #E8DCC8;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(0, 0, 0, 0.05) 10px, rgba(0, 0, 0, 0.05) 20px);
  pointer-events: none;
}

.cta-section h2 {
  color: #E8DCC8;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.cta-section p {
  color: #E8DCC8;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.cta-section .office-info {
  color: #8B7355;
  font-weight: 600;
  margin: 24px 0;
  position: relative;
  z-index: 1;
}

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

/* LEGAL PAGES */
.legal-page {
  background: #fff;
  padding: 40px 20px;
}

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

.legal-content h2 {
  color: #2C5F4F;
  margin-top: 32px;
  margin-bottom: 16px;
  padding-top: 16px;
  border-top: 2px solid #E8DCC8;
}

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

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

.legal-content ul li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 24px;
}

.legal-content ul li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: #8B7355;
  font-weight: 700;
}

.last-updated {
  color: #8B7355;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 32px;
}

/* FOOTER */
footer {
  background: #1a1a1a;
  color: #E8DCC8;
  padding: 60px 0 24px;
  border-top: 3px solid #8B7355;
}

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

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

.footer-section h3 {
  color: #E8DCC8;
  margin-bottom: 16px;
  font-size: 18px;
}

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

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

.footer-nav a {
  color: #E8DCC8;
  font-size: 14px;
  opacity: 0.8;
  transition: all 0.3s ease;
  padding: 4px 0;
}

.footer-nav a:hover {
  opacity: 1;
  color: #fff;
  padding-left: 8px;
}

.footer-legal {
  border-top: 1px solid rgba(232, 220, 200, 0.2);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.footer-legal nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.footer-legal nav a {
  color: #E8DCC8;
  font-size: 12px;
  opacity: 0.7;
}

.footer-legal nav a:hover {
  opacity: 1;
  text-decoration: underline;
}

.footer-legal p {
  color: #E8DCC8;
  font-size: 12px;
  opacity: 0.6;
  text-align: center;
}

/* COOKIE CONSENT BANNER */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1a1a1a;
  padding: 24px;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.5);
  z-index: 1998;
  border-top: 3px solid #8B7355;
  display: none;
}

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

.cookie-consent-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.cookie-consent p {
  color: #E8DCC8;
  margin: 0;
  text-align: center;
  font-size: 14px;
}

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

.cookie-buttons .btn {
  padding: 10px 24px;
  font-size: 14px;
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 2001;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

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

.cookie-modal-content {
  background: #fff;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.3);
  border-top: 4px solid #2C5F4F;
}

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

.cookie-category {
  background: #f5f5f5;
  padding: 20px;
  margin-bottom: 16px;
  border-left: 3px solid #8B7355;
}

.cookie-category h3 {
  color: #2C5F4F;
  margin-bottom: 12px;
  font-size: 18px;
}

.cookie-category label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-weight: 600;
}

.cookie-category input[type="checkbox"] {
  width: 20px;
  height: 20px;
}

.cookie-category p {
  margin-top: 12px;
  font-size: 14px;
  color: #555;
}

/* DESKTOP STYLES */
@media (min-width: 768px) {
  h1 {
    font-size: 64px;
  }

  h2 {
    font-size: 42px;
  }

  h3 {
    font-size: 28px;
  }

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

  .main-nav {
    display: flex;
    gap: 8px;
  }

  .header-cta {
    display: block;
  }

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

  .hero-subtitle {
    font-size: 20px;
  }

  .hero-cta {
    flex-direction: row;
  }

  .feature-card {
    flex: 1 1 calc(25% - 24px);
  }

  .service-card {
    flex: 1 1 calc(25% - 24px);
  }

  .step {
    flex: 1 1 calc(25% - 24px);
  }

  .testimonial-card {
    flex: 1 1 calc(33.333% - 24px);
  }

  .value-card {
    flex: 1 1 calc(25% - 24px);
  }

  .step-card {
    flex: 1 1 calc(25% - 24px);
  }

  .cookie-consent-content {
    flex-direction: row;
    justify-content: space-between;
  }

  .cookie-consent p {
    text-align: left;
    margin-right: 24px;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 40px;
  }

  section {
    padding: 60px 40px;
  }

  .hero {
    padding: 120px 0;
  }

  .page-hero {
    padding: 80px 0 60px;
  }
}