:root {
  --primary: #1a365d;
  --primary-light: #2c5282;
  --secondary: #38b2ac;
  --secondary-light: #4fd1c5;
  --accent: #ed8936;
  --dark: #1a202c;
  --text: #2d3748;
  --text-light: #718096;
  --light: #f7fafc;
  --white: #ffffff;
  --border: #e2e8f0;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
  --radius: 8px;
  --radius-lg: 16px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
}

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

a {
  color: var(--secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--secondary-light);
}

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

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

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

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

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

.nav-desktop {
  display: none;
}

.nav-desktop ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

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

.nav-desktop a:hover,
.nav-desktop a.active {
  color: var(--secondary);
}

.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary);
  transition: width 0.3s ease;
}

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

.mobile-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.mobile-toggle span {
  width: 25px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
  transition: all 0.3s ease;
}

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

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

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

.nav-mobile {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--white);
  box-shadow: var(--shadow);
  padding: 20px;
}

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

.nav-mobile ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.nav-mobile a {
  color: var(--text);
  font-weight: 500;
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--white);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

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

.hero h1 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 30px;
  max-width: 600px;
}

.hero-decoration {
  position: absolute;
  right: -100px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.1;
}

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

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

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

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

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

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

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

/* Sections */
.section {
  padding: 80px 0;
}

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

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

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

.section-header h2 {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 15px;
}

.section-dark .section-header h2 {
  color: var(--white);
}

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

.section-dark .section-header p {
  color: rgba(255, 255, 255, 0.8);
}

/* Cards */
.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  flex: 1 1 100%;
}

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

.card-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

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

.card h3 {
  font-size: 1.25rem;
  color: var(--primary);
  margin-bottom: 10px;
}

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

/* Service Cards */
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

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

.service-card-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  padding: 25px;
  color: var(--white);
}

.service-card-header h3 {
  font-size: 1.25rem;
  margin-bottom: 5px;
}

.service-card-price {
  font-size: 1.5rem;
  font-weight: 700;
}

.service-card-body {
  padding: 25px;
}

.service-card-body p {
  color: var(--text-light);
  margin-bottom: 20px;
}

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

.service-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  color: var(--text);
}

.service-features svg {
  width: 20px;
  height: 20px;
  fill: var(--secondary);
  flex-shrink: 0;
}

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

.stat-item {
  text-align: center;
  flex: 1 1 150px;
  max-width: 200px;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--secondary);
  line-height: 1;
  margin-bottom: 10px;
}

.section-dark .stat-number {
  color: var(--secondary-light);
}

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

.section-dark .stat-label {
  color: rgba(255, 255, 255, 0.8);
}

/* Testimonials */
.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.testimonial {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow);
  flex: 1 1 100%;
  position: relative;
}

.testimonial-quote {
  font-size: 3rem;
  color: var(--secondary);
  opacity: 0.3;
  position: absolute;
  top: 20px;
  left: 25px;
  line-height: 1;
}

.testimonial p {
  font-style: italic;
  color: var(--text);
  margin-bottom: 20px;
  padding-top: 30px;
}

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

.testimonial-avatar {
  width: 50px;
  height: 50px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1.25rem;
}

.testimonial-info h4 {
  color: var(--primary);
  font-size: 1rem;
}

.testimonial-info span {
  color: var(--text-light);
  font-size: 0.85rem;
}

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

.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  margin-bottom: 15px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

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

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

.faq-question svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer-inner {
  padding: 0 25px 20px;
  color: var(--text-light);
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

/* 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;
  background: var(--secondary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.step-content h3 {
  color: var(--primary);
  margin-bottom: 8px;
}

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

/* Feature Blocks */
.feature-block {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}

.feature-content {
  flex: 1;
}

.feature-content h3 {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 15px;
}

.feature-content p {
  color: var(--text-light);
  margin-bottom: 20px;
}

.feature-list {
  list-style: none;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  color: var(--text);
}

.feature-list svg {
  width: 20px;
  height: 20px;
  fill: var(--secondary);
  flex-shrink: 0;
}

.feature-graphic {
  flex: 1;
  max-width: 400px;
}

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

.value-item {
  flex: 1 1 100%;
  background: var(--white);
  border-radius: var(--radius);
  padding: 25px;
  border-left: 4px solid var(--secondary);
  box-shadow: var(--shadow);
}

.value-item h3 {
  color: var(--primary);
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.value-item p {
  color: var(--text-light);
  font-size: 0.95rem;
}

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

.industry-tag {
  background: var(--white);
  padding: 12px 24px;
  border-radius: 30px;
  color: var(--primary);
  font-weight: 500;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.industry-tag:hover {
  background: var(--secondary);
  color: var(--white);
  transform: translateY(-2px);
}

/* Contact Info */
.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.contact-info {
  flex: 1 1 100%;
}

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

.contact-item-icon {
  width: 50px;
  height: 50px;
  background: var(--secondary);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

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

.contact-item-content h3 {
  color: var(--primary);
  font-size: 1rem;
  margin-bottom: 5px;
}

.contact-item-content p {
  color: var(--text-light);
}

/* Highlight Box */
.highlight-box {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
  border-radius: var(--radius-lg);
  padding: 40px;
  color: var(--white);
  text-align: center;
}

.highlight-box h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.highlight-box p {
  opacity: 0.9;
  margin-bottom: 25px;
}

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

.cta-section h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

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

/* Footer */
.footer {
  background: var(--dark);
  color: var(--white);
  padding: 60px 0 30px;
}

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

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

.footer-col h4 {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: var(--white);
}

.footer-col ul {
  list-style: none;
}

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

.footer-col a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
}

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

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

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

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

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

.cookie-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cookie-banner p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
}

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

.cookie-btn {
  padding: 12px 24px;
  border-radius: var(--radius);
  font-weight: 600;
  cursor: pointer;
  border: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.cookie-btn-accept {
  background: var(--secondary);
  color: var(--white);
}

.cookie-btn-accept:hover {
  background: var(--secondary-light);
}

.cookie-btn-reject {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-btn-reject:hover {
  background: rgba(255, 255, 255, 0.1);
}

.cookie-btn-settings {
  background: transparent;
  color: var(--secondary);
  border: 1px solid var(--secondary);
}

.cookie-btn-settings:hover {
  background: var(--secondary);
  color: var(--white);
}

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

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

.cookie-modal-content {
  background: var(--white);
  border-radius: var(--radius-lg);
  max-width: 500px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
}

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

.cookie-modal-header h3 {
  color: var(--primary);
  font-size: 1.25rem;
}

.cookie-modal-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-light);
  padding: 5px;
  line-height: 1;
}

.cookie-modal-close:hover {
  color: var(--text);
}

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

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

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

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

.cookie-option h4 {
  color: var(--primary);
  font-size: 1rem;
}

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

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

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

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

.cookie-toggle input:checked + .cookie-toggle-slider {
  background: var(--secondary);
}

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

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

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

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

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

.legal-content h1 {
  color: var(--primary);
  font-size: 2rem;
  margin-bottom: 30px;
}

.legal-content h2 {
  color: var(--primary);
  font-size: 1.5rem;
  margin-top: 40px;
  margin-bottom: 20px;
}

.legal-content h3 {
  color: var(--primary);
  font-size: 1.2rem;
  margin-top: 30px;
  margin-bottom: 15px;
}

.legal-content p {
  margin-bottom: 15px;
  color: var(--text);
}

.legal-content ul,
.legal-content ol {
  margin-bottom: 20px;
  padding-left: 25px;
}

.legal-content li {
  margin-bottom: 10px;
  color: var(--text);
}

.legal-content a {
  color: var(--secondary);
}

.legal-updated {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 30px;
}

/* Thank You Page */
.thank-you-section {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
}

.thank-you-content svg {
  width: 100px;
  height: 100px;
  margin-bottom: 30px;
}

.thank-you-content h1 {
  color: var(--primary);
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.thank-you-content p {
  color: var(--text-light);
  font-size: 1.1rem;
  margin-bottom: 30px;
  max-width: 500px;
}

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

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}

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

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

.comparison-table tr:hover {
  background: var(--light);
}

.comparison-table td:first-child {
  font-weight: 500;
  color: var(--primary);
}

.check-icon {
  color: var(--secondary);
}

/* Two Column Layout */
.two-column {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.two-column-item {
  flex: 1;
}

/* Timeline */
.timeline {
  position: relative;
  padding-left: 30px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--secondary);
}

.timeline-item {
  position: relative;
  margin-bottom: 30px;
  padding-left: 20px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -34px;
  top: 5px;
  width: 12px;
  height: 12px;
  background: var(--secondary);
  border-radius: 50%;
}

.timeline-year {
  color: var(--secondary);
  font-weight: 700;
  margin-bottom: 5px;
}

.timeline-item h3 {
  color: var(--primary);
  margin-bottom: 5px;
}

.timeline-item p {
  color: var(--text-light);
}

/* Quote Block */
.quote-block {
  background: var(--light);
  border-left: 4px solid var(--secondary);
  padding: 30px;
  margin: 30px 0;
  border-radius: 0 var(--radius) var(--radius) 0;
}

.quote-block p {
  font-size: 1.25rem;
  font-style: italic;
  color: var(--primary);
  margin-bottom: 15px;
}

.quote-block cite {
  color: var(--text-light);
  font-style: normal;
}

/* Insights Cards */
.insights-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.insight-card {
  flex: 1 1 100%;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.insight-card-header {
  background: var(--secondary);
  padding: 20px;
}

.insight-card-header span {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.insight-card-body {
  padding: 25px;
}

.insight-card h3 {
  color: var(--primary);
  margin-bottom: 10px;
}

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

/* Responsive */
@media (min-width: 768px) {
  .hero h1 {
    font-size: 3rem;
  }

  .nav-desktop {
    display: block;
  }

  .mobile-toggle {
    display: none;
  }

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

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

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

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

  .feature-block {
    flex-direction: row;
  }

  .feature-block.reverse {
    flex-direction: row-reverse;
  }

  .two-column {
    flex-direction: row;
  }

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

  .cookie-banner-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

@media (min-width: 1024px) {
  .hero h1 {
    font-size: 3.5rem;
  }

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

  .footer-col {
    flex: 1 1 calc(25% - 30px);
  }

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

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

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

:focus-visible {
  outline: 2px solid var(--secondary);
  outline-offset: 2px;
}

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

  .section {
    padding: 30px 0;
  }
}