:root {
  --color-primary: #1a365d;
  --color-secondary: #c9a227;
  --color-accent: #2d4a6f;
  --color-text: #2c3e50;
  --color-text-light: #5a6c7d;
  --color-background: #ffffff;
  --color-surface: #f8f9fa;
  --color-surface-alt: #eef2f6;
  --color-border: #d1d9e0;
  --font-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --shadow-soft: 0 2px 8px rgba(26, 54, 93, 0.08);
  --shadow-medium: 0 4px 16px rgba(26, 54, 93, 0.12);
  --shadow-strong: 0 8px 32px rgba(26, 54, 93, 0.16);
  --radius-small: 4px;
  --radius-medium: 8px;
  --radius-large: 16px;
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

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

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

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

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

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

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

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

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

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

.logo span {
  color: var(--color-secondary);
}

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

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

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

nav a {
  font-weight: 500;
  padding: 8px 0;
  display: block;
}

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

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

.menu-toggle span {
  width: 24px;
  height: 2px;
  background-color: var(--color-primary);
  transition: var(--transition-fast);
}

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

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

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

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

.hero h1 {
  font-size: 32px;
  margin-bottom: 20px;
  line-height: 1.3;
}

.hero p {
  font-size: 18px;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto 30px;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--radius-medium);
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all var(--transition-fast);
  border: none;
  text-align: center;
}

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

.btn-primary:hover {
  background-color: #b8922a;
  color: white;
}

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

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

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

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

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

section:nth-child(even) {
  background-color: var(--color-surface);
}

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

.section-header h2 {
  font-size: 28px;
  color: var(--color-primary);
  margin-bottom: 16px;
}

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

/* Cards */
.cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.card {
  background-color: var(--color-background);
  border-radius: var(--radius-large);
  padding: 32px;
  box-shadow: var(--shadow-soft);
  transition: box-shadow var(--transition-fast);
}

.card:hover {
  box-shadow: var(--shadow-medium);
}

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

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

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

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

/* Service Cards */
.service-card {
  background-color: var(--color-background);
  border-radius: var(--radius-large);
  padding: 32px;
  box-shadow: var(--shadow-soft);
  border-left: 4px solid var(--color-secondary);
}

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

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

.service-price {
  font-size: 24px;
  font-weight: 700;
  color: var(--color-secondary);
}

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

/* Features */
.features {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.feature {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature-icon {
  width: 64px;
  height: 64px;
  background-color: var(--color-surface-alt);
  border-radius: var(--radius-medium);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon svg {
  width: 32px;
  height: 32px;
}

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

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

/* Statistics */
.stats {
  display: flex;
  flex-direction: column;
  gap: 24px;
  text-align: center;
}

.stat {
  padding: 24px;
  background-color: var(--color-background);
  border-radius: var(--radius-medium);
  box-shadow: var(--shadow-soft);
}

.stat-number {
  font-size: 42px;
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: 8px;
}

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

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

.testimonial {
  background-color: var(--color-background);
  border-radius: var(--radius-large);
  padding: 32px;
  box-shadow: var(--shadow-soft);
  position: relative;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal);
}

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

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

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

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

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

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

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

/* Values */
.values {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.value-item {
  display: flex;
  gap: 20px;
  padding: 24px;
  background-color: var(--color-background);
  border-radius: var(--radius-medium);
  box-shadow: var(--shadow-soft);
}

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

.value-icon svg {
  width: 24px;
  height: 24px;
  color: white;
}

.value-content h3 {
  font-size: 18px;
  color: var(--color-primary);
  margin-bottom: 8px;
}

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

/* Timeline */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-left: 32px;
  border-left: 2px solid var(--color-secondary);
}

.timeline-item {
  position: relative;
  padding-left: 24px;
}

.timeline-item::before {
  content: '';
  width: 16px;
  height: 16px;
  background-color: var(--color-secondary);
  border-radius: 50%;
  position: absolute;
  left: -41px;
  top: 4px;
}

.timeline-year {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-secondary);
  margin-bottom: 4px;
}

.timeline-item h3 {
  font-size: 18px;
  color: var(--color-primary);
  margin-bottom: 8px;
}

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

/* Contact */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-block {
  display: flex;
  gap: 16px;
  padding: 24px;
  background-color: var(--color-background);
  border-radius: var(--radius-medium);
  box-shadow: var(--shadow-soft);
}

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

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

.contact-details h3 {
  font-size: 16px;
  color: var(--color-primary);
  margin-bottom: 4px;
}

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

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

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

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

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

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

.legal-content h1 {
  font-size: 32px;
  color: var(--color-primary);
  margin-bottom: 24px;
}

.legal-content h2 {
  font-size: 22px;
  color: var(--color-primary);
  margin: 32px 0 16px;
}

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

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

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

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

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

/* Footer */
footer {
  background-color: var(--color-primary);
  color: white;
  padding: 48px 20px 24px;
}

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

.footer-section h4 {
  font-size: 16px;
  margin-bottom: 16px;
  color: var(--color-secondary);
}

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

.footer-section li {
  margin-bottom: 8px;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}

.footer-section a:hover {
  color: white;
}

.footer-section p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 1.6;
}

.footer-logo {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.footer-logo span {
  color: var(--color-secondary);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  margin-top: 24px;
  text-align: center;
}

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

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--color-primary);
  color: white;
  padding: 20px;
  z-index: 2000;
  display: none;
}

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

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

.cookie-content p {
  font-size: 14px;
  line-height: 1.5;
}

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

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

.cookie-btn {
  padding: 10px 20px;
  border-radius: var(--radius-small);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition-fast);
}

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

.cookie-btn-accept:hover {
  background-color: #b8922a;
}

.cookie-btn-reject {
  background-color: transparent;
  color: white;
  border: 1px solid white;
}

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

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

.cookie-btn-settings:hover {
  text-decoration: underline;
}

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

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

.cookie-modal-content {
  background-color: var(--color-background);
  border-radius: var(--radius-large);
  max-width: 500px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: var(--shadow-strong);
}

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

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

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

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

.cookie-category {
  margin-bottom: 24px;
}

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

.cookie-category h4 {
  font-size: 16px;
  color: var(--color-primary);
}

.cookie-category p {
  font-size: 14px;
  color: var(--color-text-light);
}

.toggle-switch {
  position: relative;
  width: 48px;
  height: 24px;
}

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

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

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

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

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

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

.cookie-modal-footer {
  padding: 24px;
  border-top: 1px solid var(--color-border);
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Alternating Content */
.alt-content {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.alt-block {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.alt-visual {
  background-color: var(--color-surface-alt);
  border-radius: var(--radius-large);
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.alt-visual svg {
  width: 100%;
  max-width: 200px;
  height: auto;
}

.alt-text h3 {
  font-size: 22px;
  color: var(--color-primary);
  margin-bottom: 16px;
}

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

.alt-text ul {
  list-style: none;
}

.alt-text li {
  padding-left: 24px;
  position: relative;
  margin-bottom: 8px;
  color: var(--color-text);
}

.alt-text li::before {
  content: '';
  width: 8px;
  height: 8px;
  background-color: var(--color-secondary);
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 8px;
}

/* Comparison */
.comparison {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.comparison-item {
  padding: 24px;
  background-color: var(--color-background);
  border-radius: var(--radius-medium);
  box-shadow: var(--shadow-soft);
}

.comparison-item.featured {
  border: 2px solid var(--color-secondary);
  position: relative;
}

.comparison-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background-color: var(--color-secondary);
  color: white;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: var(--radius-small);
}

.comparison-item h3 {
  font-size: 18px;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.comparison-item p {
  color: var(--color-text-light);
  margin-bottom: 16px;
}

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

.comparison-features li {
  padding: 8px 0;
  padding-left: 28px;
  position: relative;
  border-bottom: 1px solid var(--color-border);
}

.comparison-features li:last-child {
  border-bottom: none;
}

.comparison-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-secondary);
  font-weight: 600;
}

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

.quote-text {
  font-size: 24px;
  font-style: italic;
  max-width: 700px;
  margin: 0 auto 24px;
  line-height: 1.5;
}

.quote-author {
  font-size: 16px;
  opacity: 0.8;
}

/* Icon Grid */
.icon-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.icon-item {
  text-align: center;
  padding: 24px;
}

.icon-item svg {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
}

.icon-item h4 {
  font-size: 16px;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.icon-item p {
  font-size: 14px;
  color: var(--color-text-light);
}

/* CTA Section */
.cta-section {
  background-color: var(--color-surface-alt);
  text-align: center;
  padding: 60px 20px;
}

.cta-section h2 {
  font-size: 28px;
  color: var(--color-primary);
  margin-bottom: 16px;
}

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

/* Highlighted Panel */
.highlight-panel {
  background: linear-gradient(135deg, var(--color-secondary) 0%, #d4ad3a 100%);
  color: white;
  padding: 40px;
  border-radius: var(--radius-large);
  margin: 40px 0;
}

.highlight-panel h3 {
  font-size: 24px;
  margin-bottom: 16px;
}

.highlight-panel p {
  opacity: 0.9;
  margin-bottom: 20px;
}

/* Media Queries */
@media (min-width: 640px) {
  .hero h1 {
    font-size: 42px;
  }

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

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

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

  .stat {
    flex: 1 1 calc(50% - 12px);
    min-width: 150px;
  }

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

  .footer-section {
    flex: 1 1 calc(50% - 16px);
    min-width: 200px;
  }

  .icon-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .icon-item {
    flex: 1 1 calc(50% - 12px);
  }
}

@media (min-width: 768px) {
  nav {
    display: flex;
    position: static;
    box-shadow: none;
    padding: 0;
  }

  nav ul {
    flex-direction: row;
    gap: 32px;
  }

  .menu-toggle {
    display: none;
  }

  .hero {
    padding: 100px 20px;
  }

  .hero h1 {
    font-size: 48px;
  }

  section {
    padding: 80px 20px;
  }

  .section-header h2 {
    font-size: 36px;
  }

  .feature {
    flex-direction: row;
    align-items: flex-start;
  }

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

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

  .alt-block {
    flex-direction: row;
    align-items: center;
  }

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

  .alt-visual,
  .alt-text {
    flex: 1;
  }

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

  .comparison-item {
    flex: 1 1 calc(50% - 12px);
  }

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

  .cookie-content p {
    flex: 1;
    margin-right: 24px;
  }

  .contact-info {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .contact-block {
    flex: 1 1 calc(50% - 12px);
  }
}

@media (min-width: 1024px) {
  .card {
    flex: 1 1 calc(33.333% - 16px);
  }

  .stat {
    flex: 1;
  }

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

  .icon-item {
    flex: 1 1 calc(25% - 18px);
  }

  .comparison-item {
    flex: 1;
  }

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

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

/* Accessibility */
@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;
  }
}

.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(--color-secondary);
  outline-offset: 2px;
}

a:focus:not(:focus-visible),
button:focus:not(:focus-visible) {
  outline: none;
}

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