:root {
  --bg: #f6fbff;
  --surface: #ffffff;
  --ink: #14243a;
  --ink-soft: #4b5a70;
  --brand: #5ba4cf;
  --brand-strong: #3a7ca5;
  --brand-gradient: linear-gradient(90deg, var(--accent), var(--brand-strong));
  --accent: #84c5f4;
  --muted: #d4e9f8;
  --radius: 16px;
  --shadow: 0 10px 30px rgba(10,37,64,.08);
  --maxw: 1120px;
  --border: #e5e7eb;
  --nav-active-bg: #f8fafc;
  --nav-active-fg: #2563eb;
  --nav-active-weight: 700;
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-6: 24px;
  --header-height: 56px;
}
* {
  box-sizing: border-box;
}
*::before {
  box-sizing: border-box;
}
*::after {
  box-sizing: border-box;
}
html {
  height: 100%;
}
body {
  height: 100%;
  margin: 0;
  font-family: ui-sans-serif,system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}
.img {
  max-width: 100%;
  display: block;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  margin: 0;
  padding: 14px 0;
  list-style: none;
}
a, button {
  text-decoration: none;
}
.nav li {
  position: relative;
}
.nav li ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  padding: .5rem 0;
  border-radius: 8px;
  min-width: 220px;
  z-index: 1000;
}
.nav li:hover > ul {
  display: block;
}
.nav li ul li {
  display: block;
  width: 100%;
  padding: .3rem 1.25rem;
}
.nav li ul li a {
  display: block;
  color: var(--ink-soft);
  font-weight: 600;
  text-decoration: none;
}
.nav li ul li button {
  display: block;
  width: 100%;
  padding: .3rem 1.25rem;
  color: var(--ink-soft);
  font-weight: 600;
  text-decoration: none;
  background-color: transparent;
  border: none;
  text-align: left;
}
.nav li ul li a:hover {
  background-color: transparent;
  text-decoration: underline;
  color: var(--ink-soft);
}
.nav li ul li button:hover {
  background-color: transparent;
  text-decoration: underline;
  color: var(--ink-soft);
}
.nav li:hover > a, .nav li:focus-within > a {
  background-color: var(--nav-active-bg);
  color: var(--nav-active-fg);
  font-weight: var(--nav-active-weight);
}
.nav li:hover > button, .nav li:focus-within > button {
  background-color: var(--nav-active-bg);
  color: var(--nav-active-fg);
  font-weight: var(--nav-active-weight);
}
.nav li:has(> ul:hover) > a, .nav li:has(> ul:focus-within) > a {
  background-color: var(--nav-active-bg);
  color: var(--nav-active-fg);
  font-weight: var(--nav-active-weight);
}
.nav li:has(> ul:hover) > button, .nav li:has(> ul:focus-within) > button {
  background-color: var(--nav-active-bg);
  color: var(--nav-active-fg);
  font-weight: var(--nav-active-weight);
}
.nav > li > button[aria-expanded='true'] {
  background-color: var(--nav-active-bg);
  color: var(--nav-active-fg);
  font-weight: var(--nav-active-weight);
}
.nav > li > a[aria-expanded='true'] {
  background-color: var(--nav-active-bg);
  color: var(--nav-active-fg);
  font-weight: var(--nav-active-weight);
}
.nav li:has(> ul li a[aria-current='page']) > button, .nav li:has(> ul li a.active) > button {
  background-color: var(--nav-active-bg);
  color: var(--nav-active-fg);
  font-weight: var(--nav-active-weight);
}
.nav li:has(> ul li a[aria-current='page']) > a, .nav li:has(> ul li a.active) > a {
  background-color: var(--nav-active-bg);
  color: var(--nav-active-fg);
  font-weight: var(--nav-active-weight);
}
.nav li:has(> ul li button[aria-current='page']) > button, .nav li:has(> ul li button.active) > button {
  background-color: var(--nav-active-bg);
  color: var(--nav-active-fg);
  font-weight: var(--nav-active-weight);
}
.nav li:has(> ul li button[aria-current='page']) > a, .nav li:has(> ul li button.active) > a {
  background-color: var(--nav-active-bg);
  color: var(--nav-active-fg);
  font-weight: var(--nav-active-weight);
}
.mobile-menu a.active, .mobile-menu a[aria-current='page'] {
  background-color: var(--nav-active-bg);
  color: var(--nav-active-fg);
  font-weight: var(--nav-active-weight);
}
.mobile-menu button.active, .mobile-menu button[aria-current='page'] {
  background-color: var(--nav-active-bg);
  color: var(--nav-active-fg);
  font-weight: var(--nav-active-weight);
}
.mobile-menu li:hover > a, .mobile-menu li:focus-within > a {
  background-color: var(--nav-active-bg);
  color: var(--nav-active-fg);
  font-weight: var(--nav-active-weight);
}
.mobile-menu li:hover > button, .mobile-menu li:focus-within > button {
  background-color: var(--nav-active-bg);
  color: var(--nav-active-fg);
  font-weight: var(--nav-active-weight);
}
.mobile-menu li:has(> ul:hover) > a, .mobile-menu li:has(> ul:focus-within) > a {
  background-color: var(--nav-active-bg);
  color: var(--nav-active-fg);
  font-weight: var(--nav-active-weight);
}
.mobile-menu li:has(> ul:hover) > button, .mobile-menu li:has(> ul:focus-within) > button {
  background-color: var(--nav-active-bg);
  color: var(--nav-active-fg);
  font-weight: var(--nav-active-weight);
}
.mobile-menu > ul > li > button[aria-expanded='true'] {
  background-color: var(--nav-active-bg);
  color: var(--nav-active-fg);
  font-weight: var(--nav-active-weight);
}
.mobile-menu > ul > li > a[aria-expanded='true'] {
  background-color: var(--nav-active-bg);
  color: var(--nav-active-fg);
  font-weight: var(--nav-active-weight);
}
.mobile-menu li:has(> ul li a[aria-current='page']) > button, .mobile-menu li:has(> ul li a.active) > button {
  background-color: var(--nav-active-bg);
  color: var(--nav-active-fg);
  font-weight: var(--nav-active-weight);
}
.mobile-menu li:has(> ul li a[aria-current='page']) > a, .mobile-menu li:has(> ul li a.active) > a {
  background-color: var(--nav-active-bg);
  color: var(--nav-active-fg);
  font-weight: var(--nav-active-weight);
}
.mobile-menu li:has(> ul li button[aria-current='page']) > button, .mobile-menu li:has(> ul li button.active) > button {
  background-color: var(--nav-active-bg);
  color: var(--nav-active-fg);
  font-weight: var(--nav-active-weight);
}
.mobile-menu li:has(> ul li button[aria-current='page']) > a, .mobile-menu li:has(> ul li button.active) > a {
  background-color: var(--nav-active-bg);
  color: var(--nav-active-fg);
  font-weight: var(--nav-active-weight);
}
.mobile-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.mobile-menu a {
  color: var(--ink-soft);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.mobile-menu button {
  background-color: transparent;
  border: none;
  padding: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  cursor: pointer;
  color: var(--ink-soft);
  font-weight: 600;
  display: flex;
  gap: 6px;
  white-space: nowrap;
}
.mobile-menu > ul {
  padding-left: 0;
}
.mobile-menu > ul > li {
  margin-left: 0;
  padding-left: 0;
}
.mobile-menu > ul > li > a, .mobile-menu > ul > li > button {
  margin-left: 0;
  padding-left: 0;
}
.mobile-menu > ul > li > ul {
  padding-left: 24px;
}
.mobile-menu li:has(> ul li a[aria-current='page']) > ul {
  display: block;
}
.mobile-menu li:has(> ul li a.active) > ul {
  display: block;
}
.mobile-menu li:has(> ul li button[aria-current='page']) > ul {
  display: block;
}
.mobile-menu li:has(> ul li button.active) > ul {
  display: block;
}
.mobile-menu > ul > li:has(> ul) > a::after {
  content: "⏷";
  font-size: 1rem;
  color: var(--ink-soft);
}
.mobile-menu > ul > li:has(> button) > button::after {
  content: "⏷";
  font-size: 1rem;
  color: var(--ink-soft);
}
.nav a {
  color: var(--ink-soft);
  font-weight: 600;
  margin: 0 0 0 18px;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.nav button {
  background-color: transparent;
  border: none;
  padding: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
  cursor: pointer;
  color: var(--ink-soft);
  font-weight: 600;
  margin: 0 0 0 18px;
  display: flex;
  gap: 6px;
  white-space: nowrap;
}
.menu-toggle {
  color: var(--ink-soft);
  font-weight: 600;
  margin: 0 0 0 18px;
  display: flex;
  gap: 6px;
  white-space: nowrap;
}
.nav a.cta {
  color: #fff;
}
.nav button.cta {
  color: #fff;
}
.nav a.active, .nav a[aria-current='page'] {
  background-color: var(--nav-active-bg);
  color: var(--nav-active-fg);
  font-weight: var(--nav-active-weight);
}
.nav button.active, .nav button[aria-current='page'] {
  background-color: var(--nav-active-bg);
  color: var(--nav-active-fg);
  font-weight: var(--nav-active-weight);
}
.nav > li:has(> ul) > a::after {
  content: "⏷";
  font-size: 1rem;
  color: var(--ink-soft);
}
.nav > li:has(> button) > button::after {
  content: "⏷";
  font-size: 1rem;
  color: var(--ink-soft);
}
.menu {
  list-style: none;
  margin: 0;
  padding: .5rem;
  overflow: clip;
}
.menu a {
  display: block;
  padding: .25rem 0.5rem;
  text-decoration: none;
}
.menu a > span {
  display: inline;
}
.menu a:hover > span {
  text-decoration: underline;
}
.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}
.site {
;
}
.hamburger {
  display: none;
  position: relative;
  z-index: 9999;
  pointer-events: auto;
}
.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  background-color: var(--surface);
  box-shadow: var(--shadow);
  border-radius: 12px;
  padding: 12px;
  z-index: 1000;
}
body {
  padding-top: var(--header-height);
}
header.site {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 100;
  backdrop-filter: saturate(160%) blur(6px);
  background: color-mix(in oklab,var(--bg) 90%, white);
  border-bottom: 1px solid var(--muted);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
}
hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 2rem 0;
}
.hero {
  position: relative;
  min-height: 60vh;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.hero video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.9) contrast(1) brightness(.9);
}
.hero .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,rgba(255,255,255,.55),rgba(255,255,255,.6));
}
.hero .content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: auto;
  text-align: center;
  padding: 32px 24px;
  border-radius: 18px;
  background: color-mix(in oklab,white 60%, transparent);
  backdrop-filter: blur(6px);
}
.hero h1 {
  font-size: clamp(22px,3vw,34px);
  line-height: 1.1;
  margin: 0 0  14px;
}
.hero p {
  color: var(--ink-soft);
  font-size: clamp(16px,2.4vw,20px);
  margin: 0 0 22px;
}
section.hero {
  margin-top: 16px;
  margin-bottom: 0;
}
.row {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  font-weight: 700;
  box-shadow: var(--shadow);
  border: 1px solid color-mix(in oklab,var(--brand) 75%, black);
  transition: transform .08s ease,filter .2s ease;
  white-space: nowrap;
}
.wrap-2-buttons {
  display: flex;
  width: 100%;
  gap: 30px;
  margin: 4rem auto;
  flex-direction: row;
  justify-content: center;
}
.cta:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
  text-decoration: none;
}
.cta.secondary {
  background: transparent;
  color: var(--brand-strong);
  border: 1px solid var(--brand);
  box-shadow: none;
}
.selector {
  position: absolute;
  z-index: 3;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  background: rgba(255,255,255,.7);
  backdrop-filter: blur(6px);
  padding: 8px 10px;
  border: 1px solid var(--muted);
  border-radius: 999px;
}
.selector button {
  appearance: none;
  border: 1px solid var(--muted);
  background: #fff;
  padding: 8px 12px;
  border-radius: 999px;
  font: inherit;
  color: var(--ink-soft);
  cursor: pointer;
}
selector button.active {
  background: var(--brand);
  border-color: color-mix(in oklab,var(--brand) 75%, black);
  color: #fff;
}
section {
;
}
section:last-of-type {
  margin-bottom: 0;
}
section h1 {
  font-size: clamp(18px,2.2vw,24px);
  margin: 16px 0 32px 0;
  background: var(--brand-gradient);
  color: #fff;
  text-align: center;
  padding: 8px;
}
section h2 {
  font-size: clamp(22px,3vw,34px);
  margin: 32px 0 0 0;
}
section h3 {
  font-size: clamp(20px,2.4vw,28px);
  margin: 16px 0;
  color: var(--ink-soft);
}
.section-lead {
  color: var(--ink-soft);
  margin: 0 0 32px;
}
.section-lead-backgrounded {
  color: var(--ink-soft);
  margin-top: 2rem;
  background: #eef6ff;
  background: color-mix(in srgb, var(--brand-strong) 12%, white);
  border-left: 4px solid var(--brand-strong);
  padding: 1rem 1.25rem;
  border-radius: 0.75rem;
}
.cards {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
  justify-items: center;
  margin: 3rem auto;
}
.card {
  background: var(--surface);
  border: 1px solid var(--muted);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
  margin-top: 2rem;
  width: 100%;
}
.card h3 {
  margin: 8px 0 6px;
  font-size: 20px;
}
.chip {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  line-height: 1;
  font-size: 13px;
  color: var(--ink-soft);
  background: #f2f8ff;
  border: 1px solid var(--muted);
  padding: 6px 10px;
  border-radius: 999px;
}
.chip img {
  display: block;
  flex-shrink: 0;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
}
.step {
  background: var(--surface);
  border: 1px solid var(--muted);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
  position: relative;
}
.step::before {
  content: attr(data-step);
  position: absolute;
  top: -12px;
  left: -12px;
  width: 100px;
  height: 40px;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: #fff;
  background: var(--accent);
  border-radius: 1rem;
  box-shadow: var(--shadow);
}
.testimonials {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 24px;
  align-items: center;
}
.quote {
  background: var(--surface);
  border: 1px solid var(--muted);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  font-size: 18px;
}
.cta-band {
  background: linear-gradient(140deg,#e8f2ff,#eef7ff);
  border-top: 1px solid var(--muted);
  border-bottom: 1px solid var(--muted);
}
.cta-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--muted);
  border-radius: calc(var(--radius) + 4px);
  padding: 22px;
  box-shadow: var(--shadow);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
form.contact {
  background: var(--surface);
  border: 1px solid var(--muted);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
}
.field {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
  margin-bottom: 14px;
}
field input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--muted);
  border-radius: 12px;
  background-color: #fbfdff;
  font: inherit;
}
field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--muted);
  border-radius: 12px;
  background-color: #fbfdff;
  font: inherit;
  min-height: 120px;
  resize: vertical;
}
.footer {
  padding: 36px 0;
  color: var(--ink-soft);
  border-top: 1px solid var(--muted);
}
.section-grid-left {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 24px;
}
.section-grid-left > * {
  min-width: 0;
}
.section-grid-left img {
  display: block;
  width: 80%;
  height: auto;
  max-width: 100%;
  margin-bottom: 32px;
  margin-top: 32px;
  margin-left: auto;
}
.section-grid-right {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 24px;
}
.section-grid-right > * {
  min-width: 0;
}
.section-grid-right img {
  display: block;
  width: 80%;
  height: auto;
  max-width: 100%;
  margin-bottom: 32px;
  margin-top: 32px;
}
.md-table {
  width: 100%;
  border-collapse: collapse;
}
.md-table th, .md-table td {
  border: 1px solid var(--muted);
  padding: .5rem .75rem;
  text-align: left;
  margin-top: 16px;
}
.md-table thead {
  background: color-mix(in oklab, var(--bg) 60%, white);;
}
.md-table caption {
  caption-side: bottom;
  color: var(--ink-soft);
  padding-top: .5rem;
  font-size: .9rem;
}
.tarifs-table {
  width: 100%;
  border-collapse: collapse;
}
.tarifs-table td {
  border-bottom: 2px dashed var(--brand-strong);
  padding: 1rem 0;
  font-weight: 600;
}
.tarifs-table td:last-child {
  width: 30%;
  text-align: right;
}
.slider {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  border: 1px solid var(--muted);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: #000;
}
.slider-track {
  display: flex;
  height: 100%;
  transition: transform .3s ease;
}
.slider-track img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  flex: 0 0 100%;
  user-select: none;
  pointer-events: none;
  display: block;
}
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: color-mix(in oklab, #000 40%, transparent);
  color: #fff;
  border: 1px solid rgba(255,255,255,.4);
  cursor: pointer;
  backdrop-filter: blur(3px);
  transition: filter .2s ease, transform .08s ease;
}
.slider-btn:hover {
  filter: brightness(1.2);
  transform: translateY(-50%) scale(1.03);
}
.slider-btn.prev {
  left: 8px;
}
.slider-btn.next {
  right: 8px;
}
@media prefers-reduced-motion: reduce {
  .hero video {
    animation: none;
    filter: brightness(.95);
  }
}
@media (max-width:960px) {
  .cards {
    grid-template-columns: 1fr 1fr;
  }
  .steps {
    grid-template-columns: 1fr 1fr;
  }
  .section-grid-left {
    grid-template-columns: 1fr 1fr;
  }
  .section-grid-right {
    grid-template-columns: 1fr 1fr;
  }
  .testimonials {
    grid-template-columns: 1fr;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .cta-panel {
    grid-template-columns: 1fr;
  }
  nav {
    display: none;
  }
  .container {
    margin-top: 1rem;
  }
  .hamburger {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background-color: transparent;
    border: none;
    cursor: pointer;
  }
  .hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background-color: var(--ink);
    margin: 3px 0;
    transition: transform .2s ease, opacity .2s ease;
  }
  .mobile-menu.is-open {
    display: block;
  }
  .mobile-menu ul {
;
  }
}
@media (max-width:640px) {
  .cards {
    grid-template-columns: 1fr;
  }
  .steps {
    grid-template-columns: 1fr;
  }
  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 36px;
    align-items: center;
    border-radius: 18px;
    box-shadow: var(--shadow);
  }
  .photo img {
    border-radius: 18px;
    box-shadow: var(--shadow);
  }
  .about-grid .text h2 {
    margin: 0 0 6px;
    font-size: 1.8rem;
    color: var(--brand-strong);
  }
  .about-grid .text .subtitle {
    margin: 0 0 16px;
    font-weight: 500;
    color: var(--ink-soft);
  }
  .row {
    flex-direction: column;
  }
  .section-grid-left {
    grid-template-columns: 1fr;
  }
  .section-grid-right {
    grid-template-columns: 1fr;
  }
  .section-grid-right img {
    margin-left: auto;
    margin-right: auto;
  }
  .section-grid-left img {
    margin-right: auto;
  }
  p img {
    border-radius: 16px;
  }
  p {
    display: block;
  }
  p > :last-child {
    margin: 0;
  }
  body {
    font-size: 16px;
    line-height: 1.6;
  }
  .intro-section {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .intro-section .intro-image, .intro-section .intro-image img {
    width: 100%;
    max-width: 360px;
    height: auto;
    margin: 0 auto;
    display: block;
    border-radius: 16px;
  }
  .intro-section .intro-text {
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
  }
  .intro-section .intro-title {
    font-size: 1.4rem;
    line-height: 1.3;
    margin: 8px 0 0;
  }
  .intro-section .intro-subtitle {
    font-size: 1.1rem;
    line-height: 1.35;
    margin: 4px 0 0;
    color: var(--ink-soft);
  }
  .site-header, header {
    position: relative;
  }
  .hamburger {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background-color: var(--surface);
    box-shadow: var(--shadow-soft);
  }
  .cta {
    display: block;
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    text-align: center;
    padding: 14px 20px;
    font-size: 1rem;
  }
  .wrap-2-buttons {
    flex-direction: column;
  }
  .hero-title {
    font-size: 1.4rem;
    line-height: 1.3;
    padding: 12px 8px;
    margin: 0;
  }
  .intro-section {
    padding: 16px;
    border-radius: 20px;
  }
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }
  .quote-block {
    padding-top: 16px;
    padding-bottom: 16px;
  }
}
@media (max-width: 800px) {
  .about-grid {
    grid-template-columns: 1fr;
    text-align: center;
    margin: 0 auto;
  }
  .photo img {
    margin: 0 auto;
  }
  .section-grid {
    grid-template-columns: 1fr;
  }
}