:root {
  --primary: #5B8C5A;
  --primary-dark: #4A7349;
  --secondary: #E8B4B8;
  --secondary-dark: #D9A0A5;
  --accent: #F4A261;
  --text: #2D3436;
  --text-light: #636E72;
  --bg: #FEFEFE;
  --bg-alt: #F8F9FA;
  --bg-warm: #FDF8F4;
  --white: #FFFFFF;
  --shadow: rgba(45, 52, 54, 0.08);
  --shadow-md: rgba(45, 52, 54, 0.12);
  --radius: 8px;
  --radius-lg: 16px;
  --transition: 0.3s ease;
}

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

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

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

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

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

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: 0 2px 10px var(--shadow);
  position: sticky;
  top: 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 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.25rem;
  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: 8px 0;
  position: relative;
}

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

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

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

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

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

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

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

.nav-mobile a {
  display: block;
  padding: 12px 15px;
  color: var(--text);
  border-radius: var(--radius);
  transition: background var(--transition);
}

.nav-mobile a:hover {
  background: var(--bg-alt);
}

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

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

.hero-text h1 {
  font-size: 2rem;
  color: var(--text);
  margin-bottom: 20px;
  line-height: 1.3;
}

.hero-text p {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 25px;
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.hero-illustration {
  width: 100%;
  max-width: 400px;
}

/* 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;
  border: none;
  transition: all var(--transition);
}

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

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

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

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

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

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

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

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

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

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

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

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

/* Cards */
.cards {
  display: flex;
  flex-direction: column;
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}

.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: 0 4px 20px var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

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

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

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

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

/* Service Cards */
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: 0 4px 20px var(--shadow);
  display: flex;
  flex-direction: column;
}

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

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

.service-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

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

/* Feature Blocks */
.features {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.feature {
  display: flex;
  flex-direction: column;
  gap: 25px;
  align-items: center;
}

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

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

.feature-visual {
  width: 100%;
  max-width: 300px;
}

/* Statistics */
.stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.stat {
  text-align: center;
  padding: 20px;
  min-width: 140px;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  display: block;
}

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

/* Testimonials */
.testimonials {
  display: flex;
  flex-direction: column;
  gap: 25px;
  max-width: 900px;
  margin: 0 auto;
}

.testimonial {
  background: var(--white);
  padding: 30px;
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 20px var(--shadow);
  position: relative;
}

.testimonial::before {
  content: '"';
  font-size: 4rem;
  color: var(--secondary);
  position: absolute;
  top: 10px;
  left: 20px;
  line-height: 1;
}

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

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

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

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

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

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

.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  margin-bottom: 12px;
  box-shadow: 0 2px 10px 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(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}

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

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

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

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

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

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

/* Process Steps */
.process {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 800px;
  margin: 0 auto;
}

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

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

.process-content h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
  color: var(--text);
}

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

/* Values */
.values {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

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

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

.value-content h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
  color: var(--text);
}

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

/* Contact Info */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 25px;
  max-width: 600px;
}

.contact-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

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

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

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

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

/* Company Info Block */
.company-info {
  background: var(--white);
  padding: 30px;
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 20px var(--shadow);
}

.company-info h3 {
  font-size: 1.25rem;
  margin-bottom: 20px;
  color: var(--text);
}

.company-info-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.company-info-item {
  display: flex;
  gap: 10px;
}

.company-info-item strong {
  color: var(--text);
  min-width: 100px;
}

.company-info-item span {
  color: var(--text-light);
}

/* Quote Block */
.quote-block {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 40px;
}

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

.quote-author {
  color: var(--primary);
  font-weight: 600;
}

/* Milestones */
.milestones {
  max-width: 800px;
  margin: 0 auto;
}

.milestone {
  display: flex;
  gap: 20px;
  padding: 25px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

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

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

.milestone-content h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--text);
}

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

/* Industries */
.industries {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  max-width: 800px;
  margin: 0 auto;
}

.industry-tag {
  padding: 12px 24px;
  background: var(--white);
  border-radius: 30px;
  box-shadow: 0 2px 10px var(--shadow);
  color: var(--text);
  font-weight: 500;
}

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

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

.cta p {
  margin-bottom: 25px;
  opacity: 0.9;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

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

.cta .btn:hover {
  background: var(--bg-alt);
  transform: translateY(-2px);
}

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

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 40px;
}

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

.footer-brand .logo {
  color: var(--white);
  margin-bottom: 15px;
}

.footer-brand p {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
}

.footer-links h4 {
  color: var(--white);
  margin-bottom: 15px;
  font-size: 1rem;
}

.footer-links ul {
  list-style: none;
  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(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 25px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  text-align: center;
}

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

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

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

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

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

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

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

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

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

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

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

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  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: 90vh;
  overflow-y: auto;
}

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

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

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

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

.cookie-option {
  padding: 15px 0;
  border-bottom: 1px solid var(--bg-alt);
}

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

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

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

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

.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(--bg-alt);
  border-radius: 26px;
  transition: var(--transition);
}

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

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

.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-modal-footer {
  padding: 20px 25px;
  border-top: 1px solid var(--bg-alt);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

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

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

.thank-you h1 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: var(--text);
}

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

/* Legal Pages */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
}

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

.legal-content .last-updated {
  color: var(--text-light);
  margin-bottom: 40px;
  font-size: 0.95rem;
}

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

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

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

.legal-content ul, .legal-content ol {
  margin: 15px 0;
  padding-left: 25px;
  color: var(--text-light);
}

.legal-content li {
  margin-bottom: 8px;
}

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

/* Comparison Table */
.comparison {
  max-width: 1000px;
  margin: 0 auto;
  overflow-x: auto;
}

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

.comparison-table th,
.comparison-table td {
  padding: 15px 20px;
  text-align: left;
}

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

.comparison-table tr:nth-child(even) {
  background: var(--bg-alt);
}

.comparison-table td {
  color: var(--text);
}

/* Benefits List */
.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 700px;
  margin: 0 auto;
}

.benefit-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 2px 10px var(--shadow);
}

.benefit-icon {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
}

.benefit-item h3 {
  font-size: 1.05rem;
  margin-bottom: 5px;
  color: var(--text);
}

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

/* Highlight Panel */
.highlight-panel {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
  padding: 40px;
  border-radius: var(--radius-lg);
  max-width: 900px;
  margin: 0 auto;
}

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

.highlight-panel p {
  color: var(--text);
  opacity: 0.9;
}

/* Two Column Layout */
.two-columns {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.column {
  flex: 1;
}

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

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

  .cards {
    flex-direction: row;
    flex-wrap: wrap;
  }

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

  .feature {
    flex-direction: row;
  }

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

  .feature-content {
    flex: 1;
  }

  .testimonials {
    flex-direction: row;
    flex-wrap: wrap;
  }

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

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

  .footer-links {
    flex: 1;
    min-width: 150px;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

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

  .cookie-text {
    flex: 1;
  }

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

  .values {
    flex-direction: row;
    flex-wrap: wrap;
  }

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

@media (min-width: 992px) {
  .nav-desktop {
    display: block;
  }

  .menu-toggle {
    display: none;
  }

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

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

  .hero-text {
    flex: 1;
  }

  .hero-text h1 {
    font-size: 3rem;
  }

  .hero-visual {
    flex: 1;
  }

  .section {
    padding: 80px 20px;
  }

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

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

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

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

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

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