/* Reset and Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --color-primary: #1a5f4a;
  --color-primary-dark: #134436;
  --color-secondary: #f0c040;
  --color-accent: #2d8a6e;
  --color-text: #2c3e50;
  --color-text-light: #5a6c7d;
  --color-bg: #ffffff;
  --color-bg-alt: #f7faf9;
  --color-bg-dark: #e8f0ed;
  --color-border: #d1ddd9;
  --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 24px rgba(0,0,0,0.12);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --transition: 0.3s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
}

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

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--color-accent);
}

ul, ol {
  list-style: none;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
  line-height: 1.3;
  color: var(--color-text);
  margin-bottom: 1rem;
}

h1 { font-size: 2rem; }
h2 { font-size: 1.75rem; }
h3 { font-size: 1.4rem; }
h4 { font-size: 1.2rem; }

p { margin-bottom: 1rem; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--color-primary);
  color: #fff;
}

.btn-primary:hover {
  background: var(--color-primary-dark);
  color: #fff;
}

.btn-secondary {
  background: var(--color-secondary);
  color: var(--color-text);
}

.btn-secondary:hover {
  background: #e0b030;
  color: var(--color-text);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
}

.btn-outline:hover {
  background: var(--color-primary);
  color: #fff;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--color-bg);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-primary);
}

.logo svg {
  width: 40px;
  height: 40px;
}

.logo:hover {
  color: var(--color-primary);
}

/* Navigation */
.nav {
  display: none;
}

.nav-list {
  display: flex;
  gap: 30px;
}

.nav-link {
  font-weight: 500;
  color: var(--color-text);
  padding: 8px 0;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-primary);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--color-primary);
  border-radius: 2px;
  transition: all var(--transition);
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu */
.mobile-nav {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-bg);
  padding: 30px 20px;
  z-index: 999;
  overflow-y: auto;
}

.mobile-nav.active {
  display: block;
}

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

.mobile-nav-link {
  display: block;
  padding: 15px 20px;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--color-text);
  background: var(--color-bg-alt);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  background: var(--color-primary);
  color: #fff;
}

/* Hero Section */
.hero {
  padding: 60px 0 80px;
  background: linear-gradient(135deg, var(--color-bg-alt) 0%, var(--color-bg-dark) 100%);
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.hero-text {
  flex: 1;
}

.hero-title {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: var(--color-primary-dark);
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--color-text-light);
  margin-bottom: 30px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.hero-graphic {
  display: flex;
  justify-content: center;
  padding: 20px;
}

.hero-graphic svg {
  width: 100%;
  max-width: 400px;
  height: auto;
}

/* Section Styles */
.section {
  padding: 60px 0;
}

.section-alt {
  background: var(--color-bg-alt);
}

.section-dark {
  background: var(--color-primary-dark);
  color: #fff;
}

.section-dark h2,
.section-dark h3 {
  color: #fff;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.section-header p {
  color: var(--color-text-light);
  max-width: 700px;
  margin: 0 auto;
}

/* Cards */
.cards-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
}

.card {
  flex: 1 1 100%;
  background: var(--color-bg);
  border-radius: var(--radius-md);
  padding: 30px;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition), box-shadow var(--transition);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.card-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}

.card-icon svg {
  width: 100%;
  height: 100%;
}

.card h3 {
  margin-bottom: 12px;
}

.card p {
  color: var(--color-text-light);
  margin-bottom: 0;
}

/* Service Cards */
.service-card {
  background: var(--color-bg);
  border-radius: var(--radius-md);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: all var(--transition);
}

.service-card:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
}

.service-header {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 20px;
}

.service-icon {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
}

.service-title {
  font-size: 1.25rem;
  margin-bottom: 5px;
}

.service-price {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-top: 15px;
}

/* Feature Blocks */
.feature-blocks {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.feature-block {
  display: flex;
  flex-direction: column;
  gap: 25px;
  padding: 30px;
  background: var(--color-bg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.feature-block:nth-child(even) {
  background: var(--color-bg-alt);
}

.feature-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.feature-visual svg {
  width: 100%;
  max-width: 280px;
  height: auto;
}

.feature-content h3 {
  color: var(--color-primary-dark);
  margin-bottom: 15px;
}

/* Statistics */
.stats-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.stat-item {
  flex: 1 1 140px;
  text-align: center;
  padding: 25px 15px;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
}

.section-dark .stat-item {
  background: rgba(255,255,255,0.1);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-secondary);
  line-height: 1.2;
}

.stat-label {
  font-size: 0.95rem;
  margin-top: 8px;
  opacity: 0.9;
}

/* Testimonials */
.testimonials-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.testimonial {
  background: var(--color-bg);
  border-radius: var(--radius-md);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--color-primary);
}

.testimonial-text {
  font-size: 1.05rem;
  font-style: italic;
  color: var(--color-text);
  margin-bottom: 20px;
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--color-bg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-avatar svg {
  width: 30px;
  height: 30px;
}

.testimonial-name {
  font-weight: 600;
  color: var(--color-text);
}

.testimonial-role {
  font-size: 0.9rem;
  color: var(--color-text-light);
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--color-bg);
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text);
  transition: background var(--transition);
}

.faq-question:hover {
  background: var(--color-bg-alt);
}

.faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transition: transform var(--transition);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 0 20px 20px;
  color: var(--color-text-light);
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  display: block;
}

/* Process Steps */
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.process-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.step-number {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  background: var(--color-primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 700;
}

.step-content h4 {
  margin-bottom: 8px;
}

.step-content p {
  color: var(--color-text-light);
  margin-bottom: 0;
}

/* Quote Block */
.quote-block {
  background: var(--color-primary);
  color: #fff;
  padding: 50px 30px;
  border-radius: var(--radius-lg);
  text-align: center;
}

.quote-text {
  font-size: 1.4rem;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 20px;
}

.quote-author {
  font-weight: 600;
  opacity: 0.9;
}

/* Values List */
.values-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.value-item {
  flex: 1 1 100%;
  display: flex;
  gap: 20px;
  padding: 25px;
  background: var(--color-bg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.value-icon {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
}

.value-content h4 {
  margin-bottom: 8px;
}

.value-content p {
  color: var(--color-text-light);
  margin-bottom: 0;
}

/* Industries */
.industries-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.industry-tag {
  padding: 12px 24px;
  background: var(--color-bg-dark);
  border-radius: var(--radius-lg);
  font-weight: 500;
  color: var(--color-primary-dark);
  transition: all var(--transition);
}

.industry-tag:hover {
  background: var(--color-primary);
  color: #fff;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: #fff;
  padding: 60px 0;
  text-align: center;
}

.cta-section h2 {
  color: #fff;
  margin-bottom: 15px;
}

.cta-section p {
  opacity: 0.9;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Contact Info */
.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-info-box {
  background: var(--color-bg-alt);
  padding: 30px;
  border-radius: var(--radius-md);
}

.contact-item {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}

.contact-item:last-child {
  margin-bottom: 0;
}

.contact-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.contact-label {
  font-weight: 600;
  margin-bottom: 5px;
}

.contact-value {
  color: var(--color-text-light);
}

/* Map Placeholder */
.map-placeholder {
  background: var(--color-bg-dark);
  border-radius: var(--radius-md);
  padding: 60px 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.map-placeholder svg {
  width: 80px;
  height: 80px;
  opacity: 0.5;
}

/* Comparison Table */
.comparison-wrapper {
  overflow-x: auto;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--color-bg);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.comparison-table th,
.comparison-table td {
  padding: 15px 20px;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
}

.comparison-table th {
  background: var(--color-primary);
  color: #fff;
  font-weight: 600;
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.comparison-table tr:hover td {
  background: var(--color-bg-alt);
}

/* Pros Cons Lists */
.pros-cons {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.pros-list,
.cons-list {
  flex: 1 1 100%;
  padding: 25px;
  border-radius: var(--radius-md);
}

.pros-list {
  background: rgba(26, 95, 74, 0.1);
  border: 2px solid var(--color-primary);
}

.cons-list {
  background: rgba(220, 53, 69, 0.1);
  border: 2px solid #dc3545;
}

.pros-list h3,
.cons-list h3 {
  margin-bottom: 20px;
}

.pros-list h3 {
  color: var(--color-primary);
}

.cons-list h3 {
  color: #dc3545;
}

.pros-list li,
.cons-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  line-height: 1.5;
}

.pros-list li::before,
.cons-list li::before {
  content: '';
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.pros-list li::before {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%231a5f4a'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E") no-repeat center;
}

.cons-list li::before {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23dc3545'%3E%3Cpath d='M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z'/%3E%3C/svg%3E") no-repeat center;
}

/* Footer */
.footer {
  background: var(--color-text);
  color: #fff;
  padding: 50px 0 20px;
}

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

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

.footer-section h4 {
  color: #fff;
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.footer-logo svg {
  width: 36px;
  height: 36px;
}

.footer-logo span {
  font-size: 1.3rem;
  font-weight: 700;
}

.footer-section p {
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
}

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

.footer-links a {
  color: rgba(255,255,255,0.7);
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--color-secondary);
}

.footer-bottom {
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
}

/* Cookie Banner */
.cookie-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-text);
  color: #fff;
  padding: 20px;
  z-index: 9999;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}

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

.cookie-content {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 1200px;
  margin: 0 auto;
}

.cookie-text {
  flex: 1;
}

.cookie-text h4 {
  color: #fff;
  margin-bottom: 8px;
}

.cookie-text p {
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  margin-bottom: 0;
}

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

.cookie-buttons .btn {
  padding: 10px 20px;
  font-size: 0.9rem;
}

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

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

.cookie-modal-content {
  background: var(--color-bg);
  border-radius: var(--radius-md);
  max-width: 500px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
}

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

.cookie-modal-header h3 {
  margin-bottom: 0;
}

.cookie-modal-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.cookie-modal-close svg {
  width: 24px;
  height: 24px;
}

.cookie-modal-body {
  padding: 20px;
}

.cookie-option {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 15px 0;
  border-bottom: 1px solid var(--color-border);
}

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

.cookie-option-info h4 {
  margin-bottom: 5px;
  font-size: 1rem;
}

.cookie-option-info p {
  font-size: 0.9rem;
  color: var(--color-text-light);
  margin-bottom: 0;
}

/* Toggle Switch */
.toggle-switch {
  position: relative;
  width: 50px;
  height: 26px;
  flex-shrink: 0;
}

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

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

.toggle-slider::before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  left: 3px;
  bottom: 3px;
  background: #fff;
  border-radius: 50%;
  transition: var(--transition);
}

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

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

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

.cookie-modal-footer {
  padding: 20px;
  border-top: 1px solid var(--color-border);
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

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

.legal-content h1 {
  margin-bottom: 30px;
}

.legal-content h2 {
  margin-top: 40px;
  margin-bottom: 20px;
  font-size: 1.4rem;
}

.legal-content h3 {
  margin-top: 30px;
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.legal-content p {
  color: var(--color-text-light);
  line-height: 1.8;
}

.legal-content ul {
  margin: 20px 0;
  padding-left: 20px;
}

.legal-content ul li {
  color: var(--color-text-light);
  margin-bottom: 10px;
  padding-left: 15px;
  position: relative;
}

.legal-content ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--color-primary);
}

.legal-update {
  font-size: 0.9rem;
  color: var(--color-text-light);
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--color-border);
}

/* Thank You Page */
.thank-you-section {
  padding: 100px 0;
  text-align: center;
}

.thank-you-icon {
  width: 120px;
  height: 120px;
  margin: 0 auto 30px;
}

.thank-you-section h1 {
  color: var(--color-primary);
  margin-bottom: 20px;
}

.thank-you-section p {
  color: var(--color-text-light);
  max-width: 500px;
  margin: 0 auto 30px;
}

/* Milestones */
.milestones {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.milestone {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.milestone-year {
  min-width: 80px;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-primary);
}

.milestone-content {
  padding-bottom: 25px;
  border-bottom: 1px solid var(--color-border);
  flex: 1;
}

.milestone:last-child .milestone-content {
  border-bottom: none;
}

.milestone-content h4 {
  margin-bottom: 8px;
}

.milestone-content p {
  color: var(--color-text-light);
  margin-bottom: 0;
}

/* Trust Indicators */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 25px 20px;
  background: var(--color-bg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  text-align: center;
  flex: 1 1 140px;
  max-width: 180px;
}

.trust-badge svg {
  width: 50px;
  height: 50px;
}

.trust-badge span {
  font-weight: 600;
  font-size: 0.95rem;
}

/* Highlighted Panel */
.highlight-panel {
  background: linear-gradient(135deg, var(--color-bg-alt) 0%, var(--color-bg-dark) 100%);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  border-left: 5px solid var(--color-secondary);
}

.highlight-panel h3 {
  color: var(--color-primary-dark);
  margin-bottom: 15px;
}

.highlight-panel p {
  margin-bottom: 0;
}

/* Info Box */
.info-box {
  background: var(--color-bg-alt);
  border-radius: var(--radius-md);
  padding: 25px;
  margin: 20px 0;
}

.info-box h4 {
  color: var(--color-primary);
  margin-bottom: 10px;
}

.info-box p {
  margin-bottom: 0;
  color: var(--color-text-light);
}

/* Tablet Styles */
@media (min-width: 600px) {
  h1 { font-size: 2.4rem; }
  h2 { font-size: 2rem; }

  .hero-title {
    font-size: 2.6rem;
  }

  .card {
    flex: 1 1 calc(50% - 15px);
  }

  .value-item {
    flex: 1 1 calc(50% - 10px);
  }

  .pros-list,
  .cons-list {
    flex: 1 1 calc(50% - 15px);
  }

  .footer-section {
    flex: 1 1 calc(50% - 20px);
  }

  .cookie-content {
    flex-direction: row;
    align-items: center;
  }

  .cookie-buttons {
    flex-shrink: 0;
  }
}

/* Desktop Styles */
@media (min-width: 992px) {
  h1 { font-size: 2.8rem; }

  .hero-title {
    font-size: 3rem;
  }

  .nav {
    display: block;
  }

  .menu-toggle {
    display: none;
  }

  .mobile-nav {
    display: none !important;
  }

  .hero-content {
    flex-direction: row;
    align-items: center;
  }

  .hero-text {
    flex: 1;
  }

  .hero-graphic {
    flex: 1;
    max-width: 500px;
  }

  .section {
    padding: 80px 0;
  }

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

  .feature-block {
    flex-direction: row;
    align-items: center;
    padding: 50px;
  }

  .feature-block:nth-child(even) {
    flex-direction: row-reverse;
  }

  .feature-visual,
  .feature-content {
    flex: 1;
  }

  .contact-grid {
    flex-direction: row;
  }

  .contact-info-box,
  .map-placeholder {
    flex: 1;
  }

  .footer-section {
    flex: 1 1 auto;
  }

  .footer-section:first-child {
    flex: 2;
  }
}

/* Large Desktop */
@media (min-width: 1200px) {
  .container {
    padding: 0 40px;
  }

  .hero {
    padding: 80px 0 100px;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *, *::before, *::after {
    transition: none !important;
    animation: none !important;
  }
}

/* Focus Styles */
a:focus,
button:focus,
input:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.faq-question:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: -2px;
}

/* Skip Link */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--color-primary);
  color: #fff;
  padding: 10px 20px;
  z-index: 10001;
  transition: top var(--transition);
}

.skip-link:focus {
  top: 0;
}

/* Print Styles */
@media print {
  .header,
  .footer,
  .cookie-banner,
  .cookie-modal {
    display: none !important;
  }

  .section {
    padding: 30px 0;
  }
}
