:root {
  --primary: #2d5a87;
  --primary-dark: #1e3d5c;
  --secondary: #5ba4c9;
  --accent: #e8a54b;
  --dark: #1a1a2e;
  --light: #f8f9fa;
  --gray: #6c757d;
  --gray-light: #e9ecef;
  --white: #ffffff;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-hover: 0 8px 30px rgba(0,0,0,0.12);
  --radius: 8px;
  --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;
  font-size: 16px;
  line-height: 1.6;
  color: var(--dark);
  background: var(--white);
}

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

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

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

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

h1, h2, h3, h4, h5, h6 {
  line-height: 1.3;
  font-weight: 600;
  color: var(--dark);
}

h1 { font-size: 2.5rem; margin-bottom: 1rem; }
h2 { font-size: 2rem; margin-bottom: 0.875rem; }
h3 { font-size: 1.5rem; margin-bottom: 0.75rem; }
h4 { font-size: 1.25rem; margin-bottom: 0.625rem; }

p { margin-bottom: 1rem; }

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

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

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

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

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

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

.btn-accent:hover {
  background: #d4942f;
}

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

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
}

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

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

.nav-desktop {
  display: none;
}

.nav-desktop ul {
  display: flex;
  gap: 30px;
  list-style: none;
}

.nav-desktop a {
  color: var(--dark);
  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(--dark);
  transition: all var(--transition);
  border-radius: 2px;
}

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

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

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

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

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

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

.nav-mobile a {
  display: block;
  padding: 10px;
  color: var(--dark);
  font-weight: 500;
  border-radius: var(--radius);
}

.nav-mobile a:hover {
  background: var(--gray-light);
}

/* Main content */
main {
  margin-top: 70px;
}

section {
  padding: 60px 0;
}

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

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

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

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: rgba(255,255,255,0.05);
  transform: rotate(15deg);
}

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

.hero h1 {
  color: var(--white);
  font-size: 2.75rem;
  margin-bottom: 1.5rem;
}

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

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

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

.hero .btn-primary:hover {
  background: #d4942f;
}

.hero .btn-secondary {
  border-color: var(--white);
  color: var(--white);
}

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

/* Cards */
.cards-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
}

.card {
  flex: 1 1 100%;
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
  transition: all var(--transition);
}

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

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

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

.card h3 {
  margin-bottom: 10px;
}

.card p {
  color: var(--gray);
  margin-bottom: 0;
}

/* Service cards */
.service-card {
  flex: 1 1 100%;
  background: var(--white);
  border-radius: var(--radius);
  padding: 35px;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  border: 1px solid var(--gray-light);
}

.service-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-hover);
}

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

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

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

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

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

.feature-item {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 30px;
  background: var(--light);
  border-radius: var(--radius);
}

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

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

.feature-content h3 {
  margin-bottom: 10px;
}

.feature-content p {
  color: var(--gray);
  margin-bottom: 0;
}

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

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  text-align: center;
}

.stat-item {
  flex: 1 1 calc(50% - 15px);
  padding: 20px;
}

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

.stat-label {
  font-size: 1rem;
  opacity: 0.9;
}

/* Testimonials */
.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
}

.testimonial-card {
  flex: 1 1 100%;
  background: var(--white);
  border-radius: var(--radius);
  padding: 35px;
  box-shadow: var(--shadow);
  position: relative;
}

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

.testimonial-text {
  position: relative;
  z-index: 1;
  font-style: italic;
  color: var(--gray);
  margin-bottom: 20px;
  padding-top: 30px;
}

.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: 600;
  font-size: 1.25rem;
}

.author-info h4 {
  margin-bottom: 0;
  font-size: 1rem;
}

.author-info span {
  font-size: 0.875rem;
  color: var(--gray);
}

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

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

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

.step-content h3 {
  margin-bottom: 8px;
}

.step-content p {
  color: var(--gray);
  margin-bottom: 0;
}

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

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

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

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

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

.faq-answer {
  display: none;
  padding: 0 25px 20px;
  color: var(--gray);
}

.faq-item.active .faq-answer {
  display: block;
}

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

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

.cta-section p {
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto 30px;
}

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

.cta-section .btn-primary:hover {
  background: var(--accent);
  color: var(--dark);
}

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

.industry-tag {
  padding: 12px 24px;
  background: var(--light);
  border-radius: 50px;
  font-weight: 500;
  color: var(--dark);
  transition: all var(--transition);
}

.industry-tag:hover {
  background: var(--primary);
  color: var(--white);
}

/* Values */
.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
}

.value-item {
  flex: 1 1 100%;
  text-align: center;
  padding: 30px;
}

.value-icon {
  width: 80px;
  height: 80px;
  background: var(--gray-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.value-icon svg {
  width: 40px;
  height: 40px;
  color: var(--primary);
}

/* Alternating content */
.content-block {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 40px 0;
}

.content-block:nth-child(even) {
  background: var(--light);
}

.content-block .content-text,
.content-block .content-visual {
  flex: 1;
}

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

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

/* Comparison */
.comparison-table {
  width: 100%;
  overflow-x: auto;
}

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

.comparison-table th,
.comparison-table td {
  padding: 15px 20px;
  text-align: left;
  border-bottom: 1px solid var(--gray-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);
}

/* Contact info */
.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.contact-info-card {
  flex: 1 1 100%;
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
}

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

.contact-detail {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.contact-detail:last-child {
  margin-bottom: 0;
}

.contact-detail svg {
  width: 24px;
  height: 24px;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-detail h4 {
  margin-bottom: 5px;
  font-size: 1rem;
}

.contact-detail p {
  color: var(--gray);
  margin-bottom: 0;
}

/* Milestones */
.timeline {
  position: relative;
  padding-left: 30px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--gray-light);
}

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

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -36px;
  top: 5px;
  width: 15px;
  height: 15px;
  background: var(--primary);
  border-radius: 50%;
  border: 3px solid var(--white);
  box-shadow: var(--shadow);
}

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

.timeline-item h4 {
  margin-bottom: 8px;
}

.timeline-item p {
  color: var(--gray);
  margin-bottom: 0;
}

/* Quote block */
.quote-block {
  background: var(--light);
  padding: 60px 40px;
  text-align: center;
}

.quote-text {
  font-size: 1.5rem;
  font-style: italic;
  color: var(--dark);
  max-width: 800px;
  margin: 0 auto 20px;
  line-height: 1.5;
}

.quote-author {
  color: var(--gray);
  font-weight: 500;
}

/* Highlighted panel */
.highlight-panel {
  background: linear-gradient(135deg, var(--accent) 0%, #d4942f 100%);
  color: var(--dark);
  padding: 40px;
  border-radius: var(--radius);
  margin: 30px 0;
}

.highlight-panel h3 {
  margin-bottom: 15px;
}

.highlight-panel p {
  margin-bottom: 0;
}

/* Trust indicators */
.trust-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.trust-item {
  flex: 1 1 calc(50% - 15px);
  text-align: center;
  padding: 25px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.trust-item svg {
  width: 50px;
  height: 50px;
  color: var(--primary);
  margin-bottom: 15px;
}

.trust-item h4 {
  margin-bottom: 5px;
  font-size: 1rem;
}

.trust-item p {
  color: var(--gray);
  font-size: 0.875rem;
  margin-bottom: 0;
}

/* Team */
.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
}

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

.member-avatar {
  width: 100px;
  height: 100px;
  background: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
}

.team-member h4 {
  margin-bottom: 5px;
}

.team-member .role {
  color: var(--primary);
  font-weight: 500;
  margin-bottom: 10px;
}

.team-member p {
  color: var(--gray);
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* Page headers */
.page-header {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: var(--white);
  padding: 80px 0 50px;
  text-align: center;
}

.page-header h1 {
  color: var(--white);
}

.page-header p {
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

/* Legal pages */
.legal-content {
  padding: 60px 0;
}

.legal-content h2 {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid var(--gray-light);
}

.legal-content h2:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.legal-content ul,
.legal-content ol {
  margin-bottom: 1rem;
  padding-left: 25px;
}

.legal-content li {
  margin-bottom: 0.5rem;
}

/* Thank you page */
.thank-you-section {
  text-align: center;
  padding: 100px 0;
}

.thank-you-icon {
  width: 100px;
  height: 100px;
  background: var(--secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
}

.thank-you-icon svg {
  width: 50px;
  height: 50px;
  color: var(--white);
}

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

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col {
  flex: 1 1 100%;
}

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

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

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

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

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

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

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

.footer-bottom a {
  color: rgba(255,255,255,0.8);
}

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

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

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

.cookie-content p {
  margin-bottom: 0;
  font-size: 0.9rem;
}

.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);
  z-index: 3000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

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

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

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

.cookie-modal-header h3 {
  margin-bottom: 0;
}

.cookie-modal-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--gray);
}

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

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

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

.cookie-option h4 {
  margin-bottom: 0;
  font-size: 1rem;
}

.cookie-option p {
  color: var(--gray);
  font-size: 0.875rem;
  margin-bottom: 0;
}

.toggle-switch {
  position: relative;
  width: 50px;
  height: 26px;
}

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

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

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

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

.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 {
  margin-top: 20px;
  display: flex;
  gap: 10px;
}

.cookie-modal-footer .btn {
  flex: 1;
}

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

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

/* Text utilities */
.text-center {
  text-align: center;
}

.text-primary {
  color: var(--primary);
}

/* Spacing utilities */
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }

/* Media queries */
@media (min-width: 576px) {
  .card {
    flex: 1 1 calc(50% - 12.5px);
  }

  .service-card {
    flex: 1 1 calc(50% - 12.5px);
  }

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

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

  .team-member {
    flex: 1 1 calc(50% - 12.5px);
  }

  .trust-item {
    flex: 1 1 calc(25% - 22.5px);
  }
}

@media (min-width: 768px) {
  h1 { font-size: 3rem; }
  h2 { font-size: 2.25rem; }

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

  section {
    padding: 80px 0;
  }

  .nav-desktop {
    display: block;
  }

  .menu-toggle {
    display: none;
  }

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

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

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

  .stat-item {
    flex: 1 1 calc(25% - 22.5px);
  }

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

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

  .content-block:nth-child(even) .content-text {
    order: 2;
  }

  .contact-info-card {
    flex: 1 1 calc(50% - 15px);
  }

  .footer-col {
    flex: 1 1 calc(25% - 30px);
  }

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

  .cookie-content p {
    flex: 1;
  }

  .value-item {
    flex: 1 1 calc(25% - 19px);
  }

  .team-member {
    flex: 1 1 calc(33.333% - 17px);
  }
}

@media (min-width: 992px) {
  .hero {
    padding: 120px 0 100px;
  }
}
