:root {
  --primary: #2c3e50;
  --secondary: #e74c3c;
  --accent: #c0392b;
  --light: #ecf0f1;
  --dark: #1a252f;
  --text: #333;
  --text-light: #666;
  --white: #fff;
  --shadow: 0 4px 20px rgba(0,0,0,0.1);
  --shadow-hover: 0 8px 30px rgba(0,0,0,0.15);
  --radius: 12px;
  --transition: 0.3s ease;
}

* {
  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;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
}

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

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

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

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

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

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

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

nav {
  display: none;
}

nav.active {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--white);
  box-shadow: var(--shadow);
  padding: 20px;
  gap: 15px;
}

nav a {
  color: var(--text);
  font-weight: 500;
  padding: 10px;
  border-radius: var(--radius);
  transition: all var(--transition);
}

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

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

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
  transition: 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);
}

/* Hero */
.hero {
  padding: 140px 20px 80px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
  color: var(--white);
  min-height: 70vh;
  display: flex;
  align-items: center;
}

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

.hero h1 {
  font-size: 2.5rem;
  line-height: 1.2;
  font-weight: 800;
}

.hero p {
  font-size: 1.2rem;
  opacity: 0.9;
  max-width: 600px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.15);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.9rem;
  width: fit-content;
}

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

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

.btn-primary:hover {
  background: var(--accent);
  transform: translateY(-2px);
}

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

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

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

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

/* Sections */
section {
  padding: 80px 20px;
}

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

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

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

.section-tag {
  display: inline-block;
  background: var(--light);
  color: var(--secondary);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 15px;
}

/* Alt background */
.bg-light {
  background: var(--light);
}

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

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

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

/* Cards */
.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: center;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  flex: 1 1 300px;
  max-width: 400px;
}

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

.card-icon {
  width: 60px;
  height: 60px;
  background: var(--light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.card-icon svg {
  width: 32px;
  height: 32px;
  color: var(--secondary);
}

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

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

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

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

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

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

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

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

.price {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--secondary);
}

.price span {
  font-size: 1rem;
  color: var(--text-light);
  font-weight: 400;
}

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

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

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

.bg-dark .stat-number {
  color: var(--white);
}

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

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

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

.testimonial {
  background: var(--white);
  padding: 35px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  flex: 1 1 350px;
  max-width: 500px;
  position: relative;
}

.testimonial::before {
  content: '"';
  font-size: 5rem;
  color: var(--light);
  position: absolute;
  top: 10px;
  left: 20px;
  font-family: Georgia, serif;
  line-height: 1;
}

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

.testimonial p {
  font-style: italic;
  color: var(--text);
  margin-bottom: 20px;
  line-height: 1.8;
}

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

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

.author-info strong {
  display: block;
  color: var(--primary);
}

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

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

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

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

.faq-question {
  padding: 20px 25px;
  font-weight: 600;
  color: var(--primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  transition: all var(--transition);
}

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

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

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

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

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

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

/* Process Steps */
.process-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  counter-reset: process;
}

.process-step {
  flex: 1 1 250px;
  max-width: 300px;
  text-align: center;
  padding: 30px;
  position: relative;
}

.process-step::before {
  counter-increment: process;
  content: counter(process);
  width: 50px;
  height: 50px;
  background: var(--secondary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0 auto 20px;
}

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

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

/* Features List */
.features-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
  max-width: 800px;
  margin: 0 auto;
}

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

.feature-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: var(--light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon svg {
  width: 26px;
  height: 26px;
  color: var(--secondary);
}

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

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

/* Content Blocks */
.content-block {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.content-row {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
}

.content-text {
  flex: 1;
}

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

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

.content-visual {
  flex: 1;
  min-height: 250px;
  background: var(--light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.content-visual svg {
  width: 120px;
  height: 120px;
  color: var(--secondary);
}

/* Quote Block */
.quote-block {
  background: var(--primary);
  padding: 60px 30px;
  border-radius: var(--radius);
  text-align: center;
  color: var(--white);
  max-width: 900px;
  margin: 0 auto;
}

.quote-block blockquote {
  font-size: 1.5rem;
  font-style: italic;
  margin-bottom: 25px;
  line-height: 1.6;
}

.quote-block cite {
  font-style: normal;
  opacity: 0.8;
}

/* Contact Info */
.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.contact-card {
  background: var(--white);
  padding: 35px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  flex: 1 1 300px;
  max-width: 400px;
  text-align: center;
}

.contact-card svg {
  width: 48px;
  height: 48px;
  color: var(--secondary);
  margin-bottom: 20px;
}

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

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

.contact-card a {
  color: var(--secondary);
  font-weight: 600;
}

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

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

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-col {
  flex: 1 1 250px;
}

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

.footer-col p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 15px;
}

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

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

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

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

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  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);
}

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

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark);
  color: var(--white);
  padding: 20px;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

.cookie-text {
  flex: 1;
}

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

.cookie-text p {
  font-size: 0.95rem;
  opacity: 0.9;
}

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

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

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

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

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

.cookie-btn-reject:hover {
  border-color: var(--white);
}

.cookie-btn-settings {
  background: transparent;
  color: rgba(255,255,255,0.7);
  text-decoration: underline;
}

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

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

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

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

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

.cookie-modal-header h3 {
  color: var(--primary);
}

.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(--primary);
}

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

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

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

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

.cookie-option-header h4 {
  color: var(--primary);
}

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

.toggle {
  position: relative;
  width: 50px;
  height: 28px;
}

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

.toggle-slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background: var(--light);
  border-radius: 28px;
  transition: var(--transition);
}

.toggle-slider::before {
  content: '';
  position: absolute;
  height: 22px;
  width: 22px;
  left: 3px;
  bottom: 3px;
  background: var(--white);
  border-radius: 50%;
  transition: var(--transition);
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

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

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

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

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

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

.thank-you-content svg {
  width: 100px;
  height: 100px;
  color: var(--secondary);
  margin-bottom: 30px;
}

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

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

/* Legal Pages */
.legal-content {
  padding-top: 120px;
  padding-bottom: 60px;
}

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

.legal-content h2 {
  color: var(--primary);
  margin: 35px 0 15px;
  font-size: 1.4rem;
}

.legal-content h3 {
  color: var(--primary);
  margin: 25px 0 12px;
  font-size: 1.2rem;
}

.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: 8px;
  color: var(--text);
}

.legal-content .last-updated {
  color: var(--text-light);
  font-style: italic;
  margin-bottom: 30px;
}

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

.industry-tag {
  background: var(--white);
  padding: 15px 25px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all var(--transition);
}

.industry-tag:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.industry-tag svg {
  width: 24px;
  height: 24px;
  color: var(--secondary);
}

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

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-width: 600px;
}

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

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

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

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

.check-icon {
  color: #27ae60;
}

.cross-icon {
  color: #e74c3c;
}

/* Highlight Panel */
.highlight-panel {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
  color: var(--white);
  padding: 50px 40px;
  border-radius: var(--radius);
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.highlight-panel h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.highlight-panel p {
  opacity: 0.95;
  max-width: 600px;
  margin: 0 auto 25px;
}

/* CTA Section */
.cta-section {
  text-align: center;
}

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

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

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

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

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

/* Milestones */
.milestones-list {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  padding-left: 30px;
}

.milestones-list::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--secondary);
  border-radius: 3px;
}

.milestone-item {
  position: relative;
  padding: 25px 0 25px 30px;
}

.milestone-item::before {
  content: '';
  position: absolute;
  left: -34px;
  top: 30px;
  width: 14px;
  height: 14px;
  background: var(--secondary);
  border-radius: 50%;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 3px var(--secondary);
}

.milestone-year {
  display: inline-block;
  background: var(--secondary);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.milestone-item h4 {
  color: var(--primary);
  margin-bottom: 8px;
}

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

/* Values Grid */
.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.value-card {
  flex: 1 1 280px;
  max-width: 350px;
  text-align: center;
  padding: 40px 30px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: all var(--transition);
}

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

.value-card svg {
  width: 60px;
  height: 60px;
  color: var(--secondary);
  margin-bottom: 20px;
}

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

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

/* Team Section */
.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.team-member {
  flex: 1 1 250px;
  max-width: 300px;
  text-align: center;
  padding: 30px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.team-avatar {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
  border-radius: 50%;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 2rem;
  font-weight: 700;
}

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

.team-role {
  color: var(--secondary);
  font-weight: 600;
  margin-bottom: 12px;
}

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

/* Desktop Styles */
@media (min-width: 768px) {
  .menu-toggle {
    display: none;
  }

  nav {
    display: flex;
    gap: 5px;
  }

  nav.active {
    position: static;
    flex-direction: row;
    box-shadow: none;
    padding: 0;
    background: transparent;
  }

  .hero {
    padding: 160px 20px 100px;
  }

  .hero h1 {
    font-size: 3.5rem;
  }

  .hero p {
    font-size: 1.3rem;
  }

  .section-header h2 {
    font-size: 2.5rem;
  }

  .content-row {
    flex-direction: row;
  }

  .content-row.reverse {
    flex-direction: row-reverse;
  }

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

  .cookie-buttons {
    flex-wrap: nowrap;
  }

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

  .quote-block blockquote {
    font-size: 1.8rem;
  }
}

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

  section {
    padding: 100px 20px;
  }
}

/* Focus styles for accessibility */
a:focus,
button:focus,
input:focus {
  outline: 2px solid var(--secondary);
  outline-offset: 2px;
}

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

/* Skip link */
.skip-link {
  position: absolute;
  top: -100px;
  left: 20px;
  background: var(--secondary);
  color: var(--white);
  padding: 12px 20px;
  border-radius: var(--radius);
  z-index: 10001;
  transition: top 0.3s;
}

.skip-link:focus {
  top: 20px;
}

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

  section {
    padding: 30px 0;
  }
}
