:root {
  --primary-color: #2563eb;
  --primary-dark: #1d4ed8;
  --primary-light: #3b82f6;
  --secondary-color: #0f172a;
  --text-color: #1f2937;
  --text-light: #6b7280;
  --text-muted: #9ca3af;
  --bg-light: #f8fafc;
  --bg-dark: #0f172a;
  --white: #ffffff;
  --success: #10b981;
  --error: #ef4444;
  --warning: #f59e0b;
  --border-color: #e5e7eb;
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --radius: 8px;
  --radius-lg: 12px;
  --transition: all 0.3s ease;
  --font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  font-family: var(--font-family);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

input, button, textarea, select {
  font: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

a {
  text-decoration: none;
  color: inherit;
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--secondary-color);
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
}

h3 {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
}

h4 {
  font-size: 1.25rem;
}

p {
  margin-bottom: 1rem;
  color: var(--text-light);
}

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

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

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

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  margin-bottom: 1rem;
}

.section-subtitle {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.125rem;
}

.header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  background: var(--white);
  box-shadow: var(--shadow);
  z-index: 1000;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--secondary-color);
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-color);
}

.logo-full {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-light);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.hamburger {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--secondary-color);
  position: relative;
  transition: var(--transition);
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 2px;
  background: var(--secondary-color);
  left: 0;
  transition: var(--transition);
}

.hamburger::before {
  top: -7px;
}

.hamburger::after {
  top: 7px;
}

.nav-toggle[aria-expanded="true"] .hamburger {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .hamburger::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .hamburger::after {
  top: 0;
  transform: rotate(-45deg);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

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

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

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

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

.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 1.5rem;
  color: var(--white);
  overflow: hidden;
}

.hero-background {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(37, 99, 235, 0.8) 100%);
}

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

.hero-title {
  color: var(--white);
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-value {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

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

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--border-color);
}

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

.service-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  flex-shrink: 0;
}

.service-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--white);
  fill: none;
}

.service-title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--secondary-color);
}

.service-description {
  color: var(--text-light);
  margin-bottom: 0;
  font-size: 0.9375rem;
}

.why-choose {
  background: var(--white);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

.stat-card {
  text-align: center;
  padding: 2rem;
  background: var(--bg-light);
  border-radius: var(--radius-lg);
}

.stat-number {
  display: block;
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  display: block;
  font-size: 1rem;
  color: var(--text-light);
  font-weight: 500;
}

.reasons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.reason-card {
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

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

.reason-title {
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
  color: var(--secondary-color);
}

.reason-description {
  color: var(--text-light);
  margin-bottom: 0;
  font-size: 0.9375rem;
}

.process {
  background: var(--white);
}

.process-timeline {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
}

.process-timeline::before {
  content: '';
  position: absolute;
  left: 30px;
  top: 60px;
  bottom: 60px;
  width: 2px;
  background: var(--border-color);
}

.process-step {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  position: relative;
}

.process-number {
  width: 60px;
  height: 60px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.process-content {
  flex: 1;
  background: var(--bg-light);
  padding: 1.5rem;
  border-radius: var(--radius);
}

.process-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--secondary-color);
}

.process-description {
  color: var(--text-light);
  margin-bottom: 0;
  font-size: 0.9375rem;
}

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

.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.industry-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--border-color);
}

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

.industry-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.industry-icon svg {
  width: 30px;
  height: 30px;
  stroke: var(--white);
  fill: none;
}

.industry-title {
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
  color: var(--secondary-color);
}

.industry-description {
  color: var(--text-light);
  margin-bottom: 0;
  font-size: 0.9375rem;
}

.faq {
  background: var(--white);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

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

.faq-item[open] {
  border-color: var(--primary-color);
}

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

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--primary-color);
  transition: var(--transition);
}

.faq-item[open] .faq-question::after {
  transform: rotate(45deg);
}

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

.faq-answer {
  padding: 0 1.5rem 1.5rem;
  color: var(--text-light);
}

.faq-answer p {
  margin-bottom: 0;
}

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

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-item {
  padding: 1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-item h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: var(--secondary-color);
}

.contact-item address {
  font-style: normal;
  color: var(--text-light);
  line-height: 1.6;
}

.contact-item a {
  color: var(--primary-color);
  transition: var(--transition);
}

.contact-item a:hover {
  color: var(--primary-dark);
}

.contact-form {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--text-color);
}

.form-group .required {
  color: var(--error);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid var(--border-color);
  border-radius: var(--radius);
  font-size: 1rem;
  transition: var(--transition);
  background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.form-checkbox input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  accent-color: var(--primary-color);
  cursor: pointer;
}

.form-checkbox label {
  margin-bottom: 0;
  font-size: 0.875rem;
  color: var(--text-light);
  cursor: pointer;
}

.form-checkbox label a {
  color: var(--primary-color);
}

.form-checkbox label a:hover {
  text-decoration: underline;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius);
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}

.btn:focus {
  outline: 3px solid rgba(37, 99, 235, 0.3);
  outline-offset: 2px;
}

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

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

.btn-primary:hover:not(:disabled) {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
}

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

.btn-secondary:hover:not(:disabled) {
  background: var(--white);
  color: var(--primary-color);
}

.footer {
  background: var(--bg-dark);
  color: var(--text-muted);
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
  max-width: 300px;
}

.footer-logo {
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-address {
  font-style: normal;
  line-height: 1.8;
}

.footer-address p {
  margin-bottom: 0.5rem;
  color: var(--text-muted);
}

.footer-address a {
  color: var(--text-muted);
  transition: var(--transition);
}

.footer-address a:hover {
  color: var(--primary-light);
}

.footer-nav h4,
.footer-legal h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.footer-nav ul,
.footer-legal ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-nav a,
.footer-legal a {
  color: var(--text-muted);
  font-size: 0.9375rem;
  transition: var(--transition);
}

.footer-nav a:hover,
.footer-legal a:hover {
  color: var(--primary-light);
}

.footer-disclaimer {
  padding: 2rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-disclaimer p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

.footer-bottom {
  padding: 1.5rem 0;
  text-align: center;
}

.copyright {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--secondary-color);
  color: var(--white);
  padding: 1.5rem;
  z-index: 9999;
  box-shadow: 0 -4px 6px -1px rgba(0, 0, 0, 0.1);
}

.cookie-consent[hidden] {
  display: none;
}

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

.cookie-content h3 {
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.cookie-content p {
  color: var(--text-muted);
  margin-bottom: 0;
  font-size: 0.875rem;
}

.cookie-actions {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

.cookie-actions .btn-secondary {
  border-color: var(--text-muted);
  color: var(--text-muted);
}

.cookie-actions .btn-secondary:hover {
  background: var(--text-muted);
  color: var(--secondary-color);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content {
  animation: fadeInUp 0.8s ease-out;
}

@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .reasons-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-wrapper {
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    padding: 5rem 1.5rem 2rem;
    gap: 0;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    z-index: 1000;
  }

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

  .nav-link {
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
    display: block;
    width: 100%;
  }

  .nav-link::after {
    display: none;
  }

  .hero {
    min-height: 500px;
    padding: 4rem 1rem;
  }

  .hero-cta {
    flex-direction: column;
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
  }

  .hero-cta .btn {
    width: 100%;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .stat-number {
    font-size: 2.25rem;
  }

  .reasons-grid {
    grid-template-columns: 1fr;
  }

  .process-timeline::before {
    left: 29px;
  }

  .process-number {
    width: 60px;
    height: 60px;
    font-size: 1.25rem;
  }

  .industries-grid {
    grid-template-columns: 1fr;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-actions {
    width: 100%;
    justify-content: center;
  }

  .section {
    padding: 3rem 0;
  }

  .section-header {
    margin-bottom: 2rem;
  }
}

/* Page Banner */
.page-banner {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: var(--white);
  padding: 4rem 1.5rem;
  text-align: center;
}

.page-banner h1 {
  color: var(--white);
  margin-bottom: 1rem;
}

.page-banner p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto;
}

/* Values Grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.value-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
}

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

.value-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  flex-shrink: 0;
}

.value-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--white);
}

.value-card h3 {
  margin-bottom: 1rem;
  color: var(--secondary-color);
}

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

/* Skip Link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  background: var(--primary-color);
  color: var(--white);
  padding: 0.75rem 1.5rem;
  z-index: 10000;
  transition: var(--transition);
}

.skip-link:focus {
  top: 0;
  color: var(--white);
}

/* Content Pages */
.content-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.content-section h2 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--border-color);
}

.content-section h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.content-section p {
  margin-bottom: 1rem;
}

.content-section ul, .content-section ol {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.content-section li {
  margin-bottom: 0.5rem;
  list-style: disc;
}

.content-section ol li {
  list-style: decimal;
}

/* Service Detail Page */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
}

.service-detail:nth-child(even) {
  direction: rtl;
}

.service-detail:nth-child(even) > * {
  direction: ltr;
}

.service-detail-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.service-detail-image img {
  width: 100%;
  height: auto;
}

.service-detail-content h3 {
  margin-bottom: 1rem;
}

.service-features {
  list-style: none;
  padding: 0;
}

.service-features li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.service-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: bold;
}

/* Business Model */
.model-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  margin-bottom: 2rem;
}

.model-card h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.model-card ul {
  margin-left: 1.5rem;
}

.model-card li {
  list-style: disc;
  margin-bottom: 0.5rem;
}

/* Map Container */
.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-top: 2rem;
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border: none;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: var(--white);
  padding: 4rem 1.5rem;
  text-align: center;
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto 2rem;
}

/* Responsive for values */
@media (max-width: 768px) {
  .values-grid {
    grid-template-columns: 1fr;
  }
  
  .service-detail {
    grid-template-columns: 1fr;
  }
  
  .service-detail:nth-child(even) {
    direction: ltr;
  }
}

/* Services Detail Page */
.services-hero {
  min-height: 400px;
}

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

.service-detail-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  margin-bottom: 3rem;
  overflow: hidden;
  display: grid;
  grid-template-columns: 250px 1fr;
}

.service-detail-card-alt {
  grid-template-columns: 1fr 250px;
}

.service-detail-card-alt .service-detail-image {
  order: 2;
}

.service-detail-card-alt .service-detail-content {
  order: 1;
}

.service-detail-image {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  min-height: 200px;
}

.service-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-icon-large {
  width: 60px;
  height: 60px;
}

.service-icon-large svg {
  width: 100%;
  height: 100%;
  stroke: var(--white);
  stroke-width: 1.5;
}

@media (max-width: 768px) {
  .service-detail-card,
  .service-detail-card-alt {
    grid-template-columns: 1fr;
  }
  
  .service-detail-image {
    padding: 1.5rem;
    min-height: 150px;
  }
  
  .service-icon-large {
    width: 50px;
    height: 50px;
  }
}

.service-detail-content {
  padding: 2.5rem;
}

.service-detail-title {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: var(--secondary-color);
}

.service-detail-description {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.service-features h3 {
  font-size: 1.125rem;
  margin-bottom: 1rem;
  color: var(--secondary-color);
}

.service-features ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  list-style: none;
  padding: 0;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  color: var(--text-color);
}

.service-features li::before {
  content: '✓';
  color: var(--success);
  font-weight: bold;
  flex-shrink: 0;
}

.service-technologies {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.service-technologies h3 {
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.tech-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
}

.tech-list li {
  background: var(--bg-light);
  padding: 0.375rem 0.75rem;
  border-radius: 4px;
  font-size: 0.875rem;
  color: var(--text-color);
}

.service-use-case {
  background: var(--bg-light);
  padding: 1.5rem;
  border-radius: var(--radius);
  margin-top: 1.5rem;
}

.service-use-case h4 {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--primary-color);
  margin-bottom: 0.75rem;
}

.service-use-case p {
  font-size: 0.9375rem;
  color: var(--text-color);
  margin-bottom: 0;
}

.service-cta {
  margin-top: 1.5rem;
}

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  padding: 4rem 2rem;
  text-align: center;
  border-radius: var(--radius-lg);
  color: var(--white);
}

.cta-banner h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto 2rem;
}

/* Responsive for service detail */
@media (max-width: 768px) {
  .service-detail-card {
    grid-template-columns: 1fr;
  }
  
  .service-detail-image {
    padding: 3rem 2rem;
  }
  
  .service-icon-large {
    width: 80px;
    height: 80px;
  }
  
  .service-features ul {
    grid-template-columns: 1fr;
  }
}

/* Contact Page */
.contact-hero {
  min-height: 350px;
}

.contact-info-section {
  background: var(--bg-light);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-details {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.contact-details h2 {
  margin-bottom: 2rem;
  color: var(--secondary-color);
}

.contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-color);
}

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

.contact-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--white);
}

.contact-item-content h3 {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.contact-item-content p,
.contact-item-content a {
  font-size: 1rem;
  color: var(--text-color);
  margin-bottom: 0;
}

.contact-item-content a:hover {
  color: var(--primary-color);
}

/* Business Hours */
.business-hours {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  margin-top: 2rem;
}

.business-hours h3 {
  margin-bottom: 1rem;
  color: var(--secondary-color);
}

.hours-list {
  list-style: none;
  padding: 0;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.hours-list li:last-child {
  border-bottom: none;
}

/* Contact Form Section */
.contact-form-section {
  background: var(--white);
  padding: 4rem 0;
}

.contact-form-section h2 {
  text-align: center;
  margin-bottom: 2rem;
  color: var(--secondary-color);
}

.contact-form-container {
  max-width: 600px;
  margin: 0 auto;
  background: var(--bg-light);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.contact-form-container .form-group {
  margin-bottom: 1.5rem;
}

.contact-form-container label {
  display: block;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--text-color);
}

.contact-form-container .required {
  color: var(--error);
}

.contact-form-container input,
.contact-form-container select,
.contact-form-container textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid var(--border-color);
  border-radius: var(--radius);
  font-size: 1rem;
  transition: var(--transition);
  background: var(--white);
}

.contact-form-container input:focus,
.contact-form-container select:focus,
.contact-form-container textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.contact-form-container input::placeholder,
.contact-form-container textarea::placeholder {
  color: var(--text-muted);
}

.contact-form-container select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.contact-form-container textarea {
  min-height: 150px;
  resize: vertical;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.checkbox-group input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--primary-color);
}

.checkbox-group label {
  font-size: 0.875rem;
  color: var(--text-light);
  margin-bottom: 0;
}

.checkbox-group label a {
  color: var(--primary-color);
  text-decoration: underline;
}

.submit-btn {
  width: 100%;
  padding: 1rem;
  background: var(--primary-color);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.submit-btn:hover {
  background: var(--primary-dark);
}

.submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Map Container */
.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 300px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Screen reader only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Form Success Message */
.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
}

.form-success.show {
  display: block;
}

.form-success h3 {
  color: var(--success);
  margin-bottom: 0.5rem;
}

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

/* Responsive contact */
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-form-container {
    padding: 1.5rem;
  }
}

/* Business Model Page */
.page-hero {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: var(--white);
  padding: 4rem 0;
}

.page-hero .section-title {
  color: var(--white);
}

.page-hero .section-subtitle {
  color: rgba(255, 255, 255, 0.9);
}

/* Breadcrumb */
.breadcrumb {
  background: var(--bg-light);
  padding: 1rem 0;
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.breadcrumb-list li {
  font-size: 0.875rem;
  color: var(--text-light);
}

.breadcrumb-list li:not(:last-child)::after {
  content: '/';
  margin-left: 0.5rem;
  color: var(--text-muted);
}

.breadcrumb-list a {
  color: var(--primary-color);
}

.breadcrumb-list a:hover {
  text-decoration: underline;
}

/* Content Grid */
.content-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.content-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.content-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

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

.content-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  flex-shrink: 0;
}

.content-icon svg {
  width: 30px;
  height: 30px;
  stroke: var(--white);
}

.content-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--secondary-color);
}

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

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.9375rem;
  color: var(--text-color);
}

.feature-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--primary-color);
}

/* Revenue Section */
.revenue-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.revenue-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border-left: 4px solid var(--primary-color);
}

.revenue-card h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.revenue-card p {
  color: var(--text-light);
}

/* Data Collection */
.data-section {
  background: var(--bg-light);
}

.data-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.data-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  text-align: center;
}

.data-icon {
  width: 50px;
  height: 50px;
  background: var(--bg-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.data-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--primary-color);
}

.data-card h3 {
  margin-bottom: 1rem;
  color: var(--secondary-color);
}

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

.data-card ul {
  list-style: none;
  padding: 0;
  text-align: left;
}

.data-card li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.data-card li:last-child {
  border-bottom: none;
}

/* Trust Section */
.trust-section {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: var(--white);
}

.trust-section .section-title {
  color: var(--white);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

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

.trust-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
}

.trust-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--white);
}

.trust-item h4 {
  color: var(--white);
  margin-bottom: 0.5rem;
}

.trust-item p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  margin-bottom: 0;
}

/* Responsive */
@media (max-width: 1024px) {
  .content-grid,
  .content-grid-3,
  .revenue-grid,
  .data-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .content-grid,
  .content-grid-3,
  .revenue-grid,
  .data-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }
}

/* Legal Pages (Privacy Policy, Terms, Cookie Policy, Accessibility) */
.legal-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.legal-content h1 {
  margin-bottom: 0.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--border-color);
}

.last-updated {
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-bottom: 2rem;
}

.legal-content h2 {
  font-size: 1.5rem;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  color: var(--secondary-color);
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border-color);
}

.legal-content h3 {
  font-size: 1.25rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  color: var(--secondary-color);
}

.legal-content p {
  margin-bottom: 1rem;
  line-height: 1.8;
}

.legal-content ul,
.legal-content ol {
  margin: 1rem 0 1rem 1.5rem;
}

.legal-content li {
  margin-bottom: 0.75rem;
  line-height: 1.7;
}

.legal-content ul li {
  list-style-type: disc;
}

.legal-content ol li {
  list-style-type: decimal;
}

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

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

.legal-content address {
  background: var(--bg-light);
  padding: 1.5rem;
  border-radius: var(--radius);
  margin-top: 2rem;
  font-style: normal;
}

.legal-content address p {
  margin-bottom: 0.5rem;
}

.legal-content address p:last-child {
  margin-bottom: 0;
}

/* Cookie Table */
.cookie-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
}

.cookie-table th,
.cookie-table td {
  padding: 1rem;
  text-align: left;
  border: 1px solid var(--border-color);
}

.cookie-table th {
  background: var(--bg-light);
  font-weight: 600;
  color: var(--secondary-color);
}

.cookie-table tr:hover td {
  background: var(--bg-light);
}

.cookie-table td {
  font-size: 0.9375rem;
  color: var(--text-color);
}

/* Cookie Type Badge */
.cookie-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.cookie-badge-essential {
  background: #dcfce7;
  color: #166534;
}

.cookie-badge-analytics {
  background: #dbeafe;
  color: #1e40af;
}

.cookie-badge-functional {
  background: #fef3c7;
  color: #92400e;
}

.cookie-badge-marketing {
  background: #fce7f3;
  color: #9d174d;
}

/* Accessibility Features List */
.accessibility-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.accessibility-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--bg-light);
  border-radius: var(--radius);
  list-style: none;
}

.accessibility-features li::before {
  content: '✓';
  width: 24px;
  height: 24px;
  background: var(--success);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  flex-shrink: 0;
}

/* Contact Box */
.contact-box {
  background: var(--bg-light);
  padding: 2rem;
  border-radius: var(--radius-lg);
  margin-top: 2rem;
}

.contact-box h3 {
  margin-top: 0;
  margin-bottom: 1rem;
  color: var(--secondary-color);
}

.contact-box p {
  margin-bottom: 0.5rem;
}

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

/* Responsive legal */
@media (max-width: 768px) {
  .cookie-table {
    display: block;
    overflow-x: auto;
  }
  
  .accessibility-features {
    grid-template-columns: 1fr;
  }
}

/* Mission & Purpose Sections */
.mission-section,
.purpose-section {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.mission-section p,
.purpose-section p {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--text-color);
}

/* Innovation & Technology Sections */
.innovation-section,
.technology-section {
  background: var(--bg-light);
}

.innovation-content,
.technology-content {
  max-width: 800px;
  margin: 0 auto;
}

.innovation-content h2,
.technology-content h2 {
  text-align: center;
  margin-bottom: 1.5rem;
}

.innovation-content p,
.technology-content p {
  text-align: center;
  margin-bottom: 1.5rem;
}

.innovation-list,
.technology-list {
  list-style: none;
  padding: 0;
  max-width: 600px;
  margin: 0 auto;
}

.innovation-list li,
.technology-list li {
  position: relative;
  padding: 0.75rem 0 0.75rem 2rem;
  border-bottom: 1px solid var(--border-color);
}

.innovation-list li:last-child,
.technology-list li:last-child {
  border-bottom: none;
}

.innovation-list li::before,
.technology-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: var(--white);
  text-align: center;
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto 2rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-buttons .btn-secondary {
  border-color: var(--white);
  color: var(--white);
}

.cta-buttons .btn-secondary:hover {
  background: var(--white);
  color: var(--primary-color);
}

/* Content Block */
.content-block {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.content-block p {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--text-color);
}

/* Features List */
.features-list {
  display: grid;
  gap: 1.5rem;
  max-width: 800px;
  margin: 2rem auto 0;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.feature-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--white);
}

.feature-content h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: var(--secondary-color);
}

.feature-content p {
  font-size: 0.9375rem;
  color: var(--text-light);
  margin-bottom: 0;
  text-align: left;
}

@media (max-width: 768px) {
  .feature-item {
    flex-direction: column;
    text-align: center;
  }
  
  .feature-icon {
    margin: 0 auto;
  }
  
  .feature-content p {
    text-align: center;
  }
}

/* Purpose Cards - Numbered Cards */
.purpose-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.purpose-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  position: relative;
}

.purpose-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  color: var(--white);
  border-radius: 50%;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.purpose-card h3 {
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
  color: var(--secondary-color);
}

.purpose-card p {
  color: var(--text-light);
  margin-bottom: 1rem;
  font-size: 0.9375rem;
}

.purpose-examples {
  list-style: none;
  padding: 0;
  margin: 0;
}

.purpose-examples li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-color);
}

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

/* Simple List */
.simple-list {
  list-style: none;
  padding: 0;
  max-width: 600px;
  margin: 0 auto;
}

.simple-list li {
  position: relative;
  padding: 0.75rem 0 0.75rem 1.5rem;
  border-bottom: 1px solid var(--border-color);
  font-size: 1rem;
  color: var(--text-color);
}

.simple-list li:last-child {
  border-bottom: none;
}

.simple-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--primary-color);
}

/* Page Header (Contact page) */
.page-header {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: var(--white);
  padding: 4rem 0;
}

.page-header-content {
  text-align: center;
}

.page-header h1 {
  color: var(--white);
  margin-bottom: 1rem;
}

.page-header p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .purpose-grid {
    grid-template-columns: 1fr;
  }
}

/* Number inside service-icon */
.service-icon .process-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
}

@media print {
  *, *::before, *::after {
    background: transparent !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }

  a, a:visited {
    text-decoration: underline;
  }

  a[href]::after {
    content: " (" attr(href) ")";
    font-size: 0.8em;
  }

  .header,
  .hero,
  .cookie-consent,
  .nav-toggle {
    display: none !important;
  }

  body {
    font-size: 12pt;
  }

  h1 {
    font-size: 24pt;
  }

  h2 {
    font-size: 20pt;
  }

  h3 {
    font-size: 16pt;
  }

  .container {
    max-width: 100%;
    padding: 0;
  }

  .section {
    padding: 1rem 0;
  }
}
