:root {
  --color-primary: #1a3a5c;
  --color-secondary: #2d5a27;
  --color-accent: #4a8c3f;
  --color-light: #e8f4fc;
  --color-warm: #f5f0e8;
  --color-text: #2c3e50;
  --color-text-light: #5a6a7a;
  --color-white: #ffffff;
  --color-border: #d1dce5;
  --shadow-soft: 0 2px 12px rgba(26, 58, 92, 0.08);
  --shadow-medium: 0 4px 20px rgba(26, 58, 92, 0.12);
  --transition: 0.3s ease;
  --radius: 8px;
  --radius-lg: 16px;
}

*, *::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.7;
  color: var(--color-text);
  background: var(--color-white);
}

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

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

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

ul, ol {
  list-style: none;
}

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

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

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

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

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

.nav-desktop {
  display: none;
}

.nav-desktop ul {
  display: flex;
  gap: 32px;
}

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

.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  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: 8px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-primary);
  transition: transform var(--transition), opacity var(--transition);
}

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

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

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

/* Mobile Navigation */
.nav-mobile {
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-white);
  transform: translateX(100%);
  transition: transform var(--transition);
  overflow-y: auto;
  z-index: 999;
}

.nav-mobile.active {
  transform: translateX(0);
}

.nav-mobile ul {
  display: flex;
  flex-direction: column;
  padding: 24px;
}

.nav-mobile li {
  border-bottom: 1px solid var(--color-border);
}

.nav-mobile a {
  display: block;
  padding: 16px 0;
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--color-text);
}

/* Main Content */
main {
  padding-top: 72px;
}

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

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: -20%;
  width: 60%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 300'%3E%3Cpolygon points='50,300 150,100 250,300' fill='%232d5a27' opacity='0.3'/%3E%3Cpolygon points='150,300 280,80 400,300' fill='%234a8c3f' opacity='0.25'/%3E%3Cpolygon points='280,300 380,150 480,300' fill='%232d5a27' opacity='0.2'/%3E%3C/svg%3E") no-repeat center;
  background-size: cover;
  opacity: 0.6;
}

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

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

.hero p {
  font-size: 1.125rem;
  opacity: 0.9;
  margin-bottom: 28px;
  max-width: 540px;
}

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

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

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

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

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

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

.btn-secondary:hover {
  background: #15304d;
  color: var(--color-white);
}

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

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

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

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

.section-title {
  font-size: 1.75rem;
  margin-bottom: 16px;
  color: var(--color-primary);
  font-weight: 700;
}

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

.section-subtitle {
  font-size: 1.0625rem;
  color: var(--color-text-light);
  margin-bottom: 40px;
  max-width: 600px;
}

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

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

.card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition), box-shadow var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  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: 1.25rem;
  margin-bottom: 12px;
  color: var(--color-primary);
}

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

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

.service-card-header {
  background: linear-gradient(135deg, var(--color-primary), #2a4f6e);
  padding: 24px;
  color: var(--color-white);
}

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

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

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

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

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

/* Feature List */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

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

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

.feature-content h4 {
  font-size: 1.0625rem;
  margin-bottom: 4px;
  color: var(--color-primary);
}

.feature-content p {
  font-size: 0.9375rem;
  color: var(--color-text-light);
}

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

.stat-item {
  text-align: center;
  flex: 1;
  min-width: 140px;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: 8px;
}

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

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

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

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

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

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

.testimonial-text {
  position: relative;
  z-index: 1;
  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: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-weight: 600;
  font-size: 1.125rem;
}

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

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

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

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

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

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

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

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

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

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

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

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

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

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

.step-content h4 {
  font-size: 1.125rem;
  margin-bottom: 8px;
  color: var(--color-primary);
}

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

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

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

.quote-author {
  font-weight: 600;
}

/* Info Grid */
.info-grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

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

.info-block p,
.info-block address {
  color: var(--color-text-light);
  font-style: normal;
}

.info-block ul {
  color: var(--color-text-light);
}

.info-block li {
  padding: 6px 0;
}

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

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

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

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

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

/* Content Sections */
.content-block {
  margin-bottom: 40px;
}

.content-block h2 {
  font-size: 1.5rem;
  margin-bottom: 16px;
  color: var(--color-primary);
}

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

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

.content-block ul {
  margin-bottom: 16px;
  padding-left: 24px;
}

.content-block li {
  position: relative;
  padding: 6px 0;
  color: var(--color-text);
}

.content-block li::before {
  content: '•';
  position: absolute;
  left: -16px;
  color: var(--color-accent);
}

/* Thank You Page */
.thank-you-content {
  text-align: center;
  padding: 80px 20px;
  max-width: 600px;
  margin: 0 auto;
}

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

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

.thank-you-content p {
  margin-bottom: 32px;
  color: var(--color-text-light);
  font-size: 1.125rem;
}

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

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

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

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

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9375rem;
  transition: color var(--transition);
}

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

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-white);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  padding: 20px;
  z-index: 2000;
  transform: translateY(100%);
  transition: transform var(--transition);
}

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

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

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

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

.cookie-banner .btn {
  padding: 10px 20px;
  font-size: 0.875rem;
}

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

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

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

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

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

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

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

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

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

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

.cookie-option {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid var(--color-border);
}

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

.cookie-option-info h4 {
  font-size: 1rem;
  margin-bottom: 4px;
  color: var(--color-primary);
}

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

.cookie-toggle {
  position: relative;
  width: 48px;
  height: 26px;
  flex-shrink: 0;
}

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

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

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

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

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

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

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

/* Page Header */
.page-header {
  background: linear-gradient(135deg, var(--color-primary), #2a4f6e);
  padding: 48px 0;
  color: var(--color-white);
}

.page-header h1 {
  font-size: 2rem;
  margin-bottom: 12px;
}

.page-header p {
  opacity: 0.9;
}

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

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

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

.legal-content p {
  margin-bottom: 16px;
}

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

.legal-content li {
  position: relative;
  padding: 4px 0;
}

.legal-content li::before {
  content: '•';
  position: absolute;
  left: -16px;
  color: var(--color-accent);
}

/* Highlight Panels */
.highlight-panel {
  background: var(--color-light);
  border-left: 4px solid var(--color-accent);
  padding: 24px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 24px 0;
}

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

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

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

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

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

.value-content h4 {
  font-size: 1.0625rem;
  margin-bottom: 4px;
  color: var(--color-primary);
}

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

/* Team Section */
.team-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.team-member {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.team-avatar {
  width: 80px;
  height: 80px;
  margin: 0 auto 16px;
  background: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-avatar svg {
  width: 40px;
  height: 40px;
  fill: var(--color-white);
}

.team-member h4 {
  font-size: 1.125rem;
  color: var(--color-primary);
  margin-bottom: 4px;
}

.team-member .role {
  font-size: 0.875rem;
  color: var(--color-accent);
  margin-bottom: 12px;
}

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

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

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

.timeline-item {
  position: relative;
  padding-bottom: 32px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -28px;
  top: 4px;
  width: 14px;
  height: 14px;
  background: var(--color-accent);
  border-radius: 50%;
  border: 3px solid var(--color-white);
  box-shadow: var(--shadow-soft);
}

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

.timeline-item h4 {
  font-size: 1.0625rem;
  color: var(--color-primary);
  margin-bottom: 4px;
}

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

/* CTA Section */
.cta-section {
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, var(--color-secondary), var(--color-accent));
  color: var(--color-white);
}

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

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

/* Badges */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: var(--color-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-primary);
}

.badge svg {
  width: 24px;
  height: 24px;
  fill: var(--color-accent);
}

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

  .section-title {
    font-size: 2rem;
  }

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

  .card {
    flex: 1;
    min-width: 280px;
  }

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

  .testimonial {
    flex: 1;
    min-width: 300px;
  }

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

  .info-block {
    flex: 1;
    min-width: 250px;
  }

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

  .footer-col {
    flex: 1;
    min-width: 200px;
  }

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

  .cookie-banner p {
    flex: 1;
    margin-right: 20px;
  }

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

  .team-member {
    flex: 1;
    min-width: 250px;
  }

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

  .value-item {
    flex: 1;
    min-width: 280px;
  }
}

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

  .menu-toggle {
    display: none;
  }

  .nav-mobile {
    display: none;
  }

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

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

  .section {
    padding: 80px 0;
  }

  .section-title {
    font-size: 2.25rem;
  }

  .quote-text {
    font-size: 1.75rem;
  }

  .page-header {
    padding: 64px 0;
  }

  .page-header h1 {
    font-size: 2.5rem;
  }
}

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

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

  .cards {
    flex-wrap: nowrap;
  }

  .service-card {
    flex: 1;
  }

  .testimonials {
    flex-wrap: nowrap;
  }

  .team-grid {
    flex-wrap: nowrap;
  }
}

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

  html {
    scroll-behavior: auto;
  }
}

.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-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

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