/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #2C5F7C;
  --secondary-color: #4A8FB5;
  --accent-color: #E8A34B;
  --text-dark: #1F2937;
  --text-medium: #4B5563;
  --text-light: #6B7280;
  --bg-light: #F9FAFB;
  --bg-white: #FFFFFF;
  --border-color: #E5E7EB;
  --success-color: #059669;
  --transition: all 0.3s ease;
}

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

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

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

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

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

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header and Navigation */
.header {
  background-color: var(--bg-white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
  position: relative;
}

.nav-brand a {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary-color);
}

.nav-menu {
  display: none;
  list-style: none;
  flex-direction: column;
  position: absolute;
  top: 70px;
  left: 0;
  right: 0;
  background-color: var(--bg-white);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
}

.nav-menu.active {
  display: flex;
}

.nav-menu li {
  padding: 0;
}

.nav-menu a {
  display: block;
  padding: 0.875rem 1.5rem;
  color: var(--text-dark);
  font-weight: 500;
  transition: var(--transition);
}

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

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 22px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--primary-color);
  transition: var(--transition);
  border-radius: 2px;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(9.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-9.5px) rotate(-45deg);
}

/* Section spacing */
.section {
  padding: 3.5rem 0;
}

.section-title {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
  text-align: center;
}

.section-intro {
  text-align: center;
  font-size: 1.125rem;
  color: var(--text-medium);
  max-width: 700px;
  margin: 0 auto 2.5rem;
}

/* Hero section */
.hero {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: var(--bg-white);
  padding: 4rem 0;
  text-align: center;
}

.hero-content h1 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
  line-height: 1.2;
}

.hero-lead {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  opacity: 0.95;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.page-hero {
  background-color: var(--bg-light);
  padding: 3rem 0;
  text-align: center;
}

.page-hero h1 {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.page-lead {
  font-size: 1.125rem;
  color: var(--text-medium);
  max-width: 700px;
  margin: 0 auto;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  border-radius: 6px;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}

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

.btn-primary:hover {
  background-color: #D89437;
  color: var(--bg-white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(232, 163, 75, 0.4);
}

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

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

.btn-small {
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
}

/* Service cards */
.services-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.service-card {
  background-color: var(--bg-white);
  padding: 2rem;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.service-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.service-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1.25rem;
  color: var(--primary-color);
}

.service-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.875rem;
  color: var(--text-dark);
}

.service-card p {
  color: var(--text-medium);
  line-height: 1.7;
}

/* Service detailed */
.service-detailed {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.75rem;
  margin-bottom: 1.5rem;
}

.service-header {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.service-header h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
}

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

.service-body p {
  color: var(--text-medium);
  line-height: 1.7;
}

/* Stats section */
.stats-section {
  background-color: var(--bg-light);
}

.stats-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

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

/* Benefits section */
.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.benefit-item h3 {
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
}

.benefit-item p {
  color: var(--text-medium);
  line-height: 1.7;
}

.benefits-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.benefit-box {
  background-color: var(--bg-light);
  padding: 1.75rem;
  border-radius: 8px;
}

.benefit-box h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
}

.benefit-box p {
  color: var(--text-medium);
  line-height: 1.7;
}

/* Industries section */
.industries-grid {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.industry-card {
  background-color: var(--bg-light);
  padding: 1.75rem;
  border-radius: 8px;
  border-left: 4px solid var(--accent-color);
}

.industry-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.625rem;
  color: var(--text-dark);
}

.industry-card p {
  color: var(--text-medium);
  line-height: 1.6;
  font-size: 0.9375rem;
}

/* Testimonials */
.testimonials-section {
  background-color: var(--bg-light);
}

.testimonials-grid {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.testimonial-card {
  background-color: var(--bg-white);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.testimonial-text {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text-dark);
  margin-bottom: 1.25rem;
  font-style: italic;
}

.testimonial-author strong {
  display: block;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}

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

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

.process-step {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

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

.process-step h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
}

.process-step p {
  color: var(--text-medium);
  line-height: 1.7;
}

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

.faq-item {
  border-bottom: 1px solid var(--border-color);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--text-dark);
}

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

.faq-icon {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--primary-color);
  transition: var(--transition);
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
}

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

.faq-answer p {
  padding-bottom: 1.25rem;
  color: var(--text-medium);
  line-height: 1.7;
}

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

.cta-content h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

/* Content blocks */
.content-block {
  max-width: 900px;
  margin: 0 auto;
}

.content-block h2 {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

.content-block p {
  color: var(--text-medium);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

/* Values section */
.values-grid {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.value-card {
  background-color: var(--bg-white);
  padding: 2rem;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  text-align: center;
}

.value-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1.25rem;
  color: var(--primary-color);
}

.value-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.875rem;
  color: var(--text-dark);
}

.value-card p {
  color: var(--text-medium);
  line-height: 1.7;
}

/* Timeline */
.timeline {
  max-width: 800px;
  margin: 0 auto;
}

.timeline-item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem 0;
  border-left: 3px solid var(--border-color);
  padding-left: 2rem;
  position: relative;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -8px;
  top: 1.5rem;
  width: 13px;
  height: 13px;
  background-color: var(--accent-color);
  border-radius: 50%;
}

.timeline-year {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--primary-color);
}

.timeline-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.timeline-content p {
  color: var(--text-medium);
  line-height: 1.7;
}

/* Trust section */
.trust-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.trust-item {
  background-color: var(--bg-light);
  padding: 1.75rem;
  border-radius: 8px;
}

.trust-item h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
}

.trust-item p {
  color: var(--text-medium);
  line-height: 1.7;
}

/* Contact section */
.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-card {
  background-color: var(--bg-light);
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
}

.contact-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1.25rem;
  color: var(--primary-color);
}

.contact-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.875rem;
  color: var(--text-dark);
}

.contact-card p {
  color: var(--text-medium);
  line-height: 1.7;
}

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

/* Directions */
.directions-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.direction-item {
  background-color: var(--bg-light);
  padding: 1.75rem;
  border-radius: 8px;
}

.direction-item h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
}

.direction-item p {
  color: var(--text-medium);
  line-height: 1.7;
}

/* Company details */
.company-details {
  max-width: 700px;
  margin: 0 auto;
  background-color: var(--bg-light);
  padding: 2rem;
  border-radius: 8px;
}

.company-details p {
  color: var(--text-medium);
  line-height: 1.8;
  margin-bottom: 0.75rem;
}

/* Thank you page */
.thank-you-section {
  padding: 4rem 0;
}

.thank-you-content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.thank-you-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 2rem;
  color: var(--success-color);
}

.thank-you-content h1 {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.thank-you-lead {
  font-size: 1.125rem;
  color: var(--text-medium);
  margin-bottom: 2rem;
}

.thank-you-info {
  background-color: var(--bg-light);
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 2rem;
}

.thank-you-info p {
  color: var(--text-medium);
  line-height: 1.7;
}

.thank-you-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.steps-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.step-card {
  background-color: var(--bg-light);
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
}

.step-card .step-number {
  margin: 0 auto 1rem;
}

.step-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text-dark);
}

.step-card p {
  color: var(--text-medium);
  line-height: 1.7;
}

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

.legal-text h2 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-top: 2.5rem;
  margin-bottom: 1.25rem;
  color: var(--text-dark);
}

.legal-text h3 {
  font-size: 1.375rem;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.legal-text p {
  color: var(--text-medium);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.legal-text ul {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.legal-text li {
  color: var(--text-medium);
  line-height: 1.8;
  margin-bottom: 0.75rem;
}

.legal-text a {
  font-weight: 600;
  text-decoration: underline;
}

.legal-footer {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
  font-size: 0.9375rem;
  color: var(--text-light);
}

.cookie-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
}

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

.cookie-table th {
  background-color: var(--bg-light);
  font-weight: 700;
  color: var(--text-dark);
}

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

/* Footer */
.footer {
  background-color: var(--text-dark);
  color: var(--bg-light);
  padding: 3rem 0 1.5rem;
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin-bottom: 2rem;
}

.footer-col h4 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--bg-white);
}

.footer-col p {
  color: var(--text-light);
  line-height: 1.7;
}

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

.footer-col li {
  margin-bottom: 0.625rem;
}

.footer-col a {
  color: var(--text-light);
}

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

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

.footer-bottom p {
  color: var(--text-light);
  font-size: 0.875rem;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--text-dark);
  color: var(--bg-white);
  padding: 1.5rem;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
  z-index: 1001;
  display: none;
}

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

.cookie-banner-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: center;
}

.cookie-banner-content p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.6;
  text-align: center;
}

.cookie-banner-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1002;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.modal.show {
  display: flex;
}

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

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

.modal-header h3 {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
}

.modal-close {
  background: transparent;
  border: none;
  font-size: 2rem;
  color: var(--text-light);
  cursor: pointer;
  line-height: 1;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.modal-body {
  padding: 1.5rem;
}

.cookie-option {
  margin-bottom: 1.25rem;
}

.cookie-option label {
  display: flex;
  gap: 0.875rem;
  cursor: pointer;
  align-items: flex-start;
}

.cookie-option input[type="checkbox"] {
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.cookie-option input[type="checkbox"]:disabled {
  cursor: not-allowed;
}

.cookie-option span {
  color: var(--text-medium);
  line-height: 1.6;
}

.modal-footer {
  padding: 1.5rem;
  border-top: 1px solid var(--border-color);
  display: flex;
  justify-content: flex-end;
}

/* Tablet styles (768px and up) */
@media (min-width: 768px) {
  .nav-menu {
    display: flex;
    flex-direction: row;
    position: static;
    box-shadow: none;
    padding: 0;
    background-color: transparent;
  }

  .nav-menu li {
    margin-left: 2rem;
  }

  .nav-menu a {
    padding: 0.5rem 0;
  }

  .nav-menu a:hover,
  .nav-menu a.active {
    background-color: transparent;
  }

  .nav-toggle {
    display: none;
  }

  .hero {
    padding: 5rem 0;
  }

  .hero-content h1 {
    font-size: 2.75rem;
  }

  .section {
    padding: 5rem 0;
  }

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

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

  .service-card {
    flex: 0 0 calc(50% - 0.75rem);
  }

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

  .stat-item {
    flex: 0 0 calc(50% - 1rem);
  }

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

  .testimonial-card {
    flex: 0 0 calc(50% - 0.875rem);
  }

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

  .industry-card {
    flex: 0 0 calc(50% - 0.625rem);
  }

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

  .value-card {
    flex: 0 0 calc(50% - 0.875rem);
  }

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

  .benefit-box {
    flex: 0 0 calc(50% - 0.75rem);
  }

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

  .contact-card {
    flex: 0 0 calc(33.333% - 1.333rem);
  }

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

  .direction-item {
    flex: 0 0 calc(50% - 0.75rem);
  }

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

  .trust-item {
    flex: 0 0 calc(50% - 0.75rem);
  }

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

  .step-card {
    flex: 0 0 calc(33.333% - 1.333rem);
  }

  .thank-you-actions {
    flex-direction: row;
    justify-content: center;
  }

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

  .cookie-banner-content p {
    text-align: left;
  }

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

/* Desktop styles (1024px and up) */
@media (min-width: 1024px) {
  .hero-content h1 {
    font-size: 3.25rem;
  }

  .service-card {
    flex: 0 0 calc(25% - 1.125rem);
  }

  .stat-item {
    flex: 0 0 calc(25% - 1.5rem);
  }

  .testimonial-card {
    flex: 0 0 calc(33.333% - 1.167rem);
  }

  .industry-card {
    flex: 0 0 calc(33.333% - 0.833rem);
  }

  .value-card {
    flex: 0 0 calc(33.333% - 1.167rem);
  }

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

  .process-step .step-number {
    flex-shrink: 0;
  }

  .footer-content {
    flex-direction: row;
    justify-content: space-between;
  }

  .footer-col {
    flex: 0 0 calc(33.333% - 1.667rem);
  }
}