/* merci.css */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #1f2937;
}
a {
  color: #2563eb;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
/* ============================================
   CSS RESET & BASE STYLES
   ============================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  color: #1f2937;
  font-size: 16px;
}

.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ============================================
   HEADER - DESKTOP & MOBILE
   ============================================ */
.header {
  background: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo img {
  height: 60px;
}

.company-name {
  color: #1f2937;
  font-size: 1.25rem;
  font-weight: 700;
}

/* ============================================
   DESKTOP NAVIGATION
   ============================================ */
.nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-main-content {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav a {
  color: #4b5563;
  text-decoration: none;
  /* Animating color causes repaints; use transform/opacity for smoother composited animations */
  transition: transform 0.2s ease, opacity 0.2s ease;
  will-change: transform, opacity;
}

.nav a:hover {
  color: #2563eb;
  transform: translateY(-2px);
  opacity: 0.95;
}

.header-cta {
  background: #ef4444;
  color: white !important;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: bold;
}

/* ============================================
   DESKTOP DROPDOWN MENU (CLICK TO OPEN)
   ============================================ */
.has-dropdown {
  position: relative;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  color: #4b5563;
  transition: transform 0.2s ease, opacity 0.2s ease;
  will-change: transform, opacity;
  background: none;
  border: none;
  font-size: 1rem;
  padding: 0;
  font-family: inherit;
}

.dropdown-toggle:hover {
  color: #2563eb;
  transform: translateY(-2px);
  opacity: 0.95;
}

.dropdown-arrow {
  font-size: 0.75rem;
  transition: transform 0.3s;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  background: white;
  min-width: 250px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  padding: 1rem 0;
  z-index: 1000;
}

.dropdown-menu a {
  display: block;
  padding: 0.75rem 2rem;
  color: #4b5563 !important;
  text-decoration: none;
  transition: background 0.2s;
}

.dropdown-menu a:hover {
  background: #f3f4f6;
  color: #2563eb !important;
}

/* Desktop click-to-open dropdown */
#services-toggle:checked ~ .nav .has-dropdown .services-menu,
#blog-toggle:checked ~ .nav .has-dropdown .blog-menu {
  display: block;
}

#services-toggle:checked ~ .nav .has-dropdown .dropdown-arrow,
#blog-toggle:checked ~ .nav .has-dropdown .dropdown-arrow {
  transform: rotate(180deg);
}

.back-button {
  display: none; /* Hidden on desktop */
}

/* ============================================
   BLOG PAGE CONTENT STYLES
   ============================================ */
.hero-section {
  text-align: center;
  padding: 4rem 1rem;
  background: #f9fafb;
}

.hero-section h1 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.hero-section p {
  font-size: 1.125rem;
  color: #6b7280;
  max-width: 800px;
  margin: 0 auto;
}

.blog-grid {
  padding: 4rem 1rem;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.blog-and-service-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.25s ease, box-shadow 0.2s ease, opacity 0.2s ease;
  will-change: transform, opacity;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}

.blog-and-service-card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.blog-and-service-card-image {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.blog-and-service-card-content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.blog-and-service-card-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 0.75rem;
  color: #000000;
}

.blog-and-service-card-description {
  color: #000000;
  margin-bottom: 1rem;
  flex-grow: 1;
}

.blog-and-service-card-footer {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  color: #000000;
  padding-top: 1rem;
  border-top: 1px solid #000000;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: #1e3a8a;
  color: white;
  padding: 3rem 1rem;
  margin-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section a {
  color: #e0e7ff;
  text-decoration: none;
  transition: transform 0.2s ease, opacity 0.2s ease;
  will-change: transform, opacity;
}
.footer-section a:hover {
  color: white;
  transform: translateY(-1px);
  opacity: 0.95;
}

.footer-section li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: #e0e7ff;
  text-decoration: none;
  transition: transform 0.2s ease, opacity 0.2s ease;
  will-change: transform, opacity;
}

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

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

/* ============================================
   MOBILE MENU SETUP (HIDDEN BY DEFAULT)
   ============================================ */
#menu-toggle {
  display: none;
}

#services-toggle {
  display: none;
}

#blog-toggle {
  display: none;
}

.menu-icon {
  display: none;
  width: 30px;
  height: 30px;
  cursor: pointer;
  position: relative;
  z-index: 102;
}

.menu-icon span {
  display: block;
  width: 100%;
  height: 3px;
  background: #000000;
  margin: 6px 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
  will-change: transform, opacity;
}

.menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 100;
}

/* FORCE MAIN DROPDOWN LINKS TO USE FULL WIDTH */
.nav-main-content,
.nav-main-content > a,
.nav-main-content > .has-dropdown,
.nav-main-content > .has-dropdown > .dropdown-toggle {
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box;
}

/* ============================================
   MOBILE RESPONSIVE STYLES (≤768px)
   ============================================ */
@media (max-width: 768px) {
  /* MOBILE: Show hamburger icon */
  .menu-icon {
    display: block;
    flex-direction: column;
    justify-content: space-around;
  }

  /* MOBILE: Main navigation menu (slides in from right when hamburger clicked) */
  .nav {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: white;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 101;
    overflow-x: hidden;
    overflow-y: auto;
  }

  /* MOBILE: Main menu content container */
  .nav-main-content {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 80px 0 0 0;
    min-height: 100%;
  }

  /* MOBILE: Regular nav links (Accueil, À Propos, Contact) */
  .nav-main-content > a {
    width: 100%;
    padding: 1rem 20px;
    border-bottom: 1px solid #e5e7eb;
    display: block;
    text-align: center;
    text-decoration: none;
    color: #4b5563;
  }

  /* MOBILE: Dropdown wrapper (Services, Blog) */
  .nav-main-content > .has-dropdown {
    width: 100%;
    border-bottom: 1px solid #e5e7eb;
  }

  /* MOBILE: Dropdown toggle buttons (Services ▼, Blog ▼) */
  .nav-main-content > .has-dropdown > .dropdown-toggle {
    width: 100%;
    padding: 1rem 20px;
    display: block;
    text-align: center;
    color: #4b5563;
    border: none;
    background: none;
    cursor: pointer;
    font-size: 1rem;
    font-family: inherit;
  }

  /* MOBILE: Dropdown arrow */
  .dropdown-arrow {
    font-size: 1rem;
    display: inline !important;
    margin-left: 0.5rem;
    transition: transform 0.3s;
  }

  /* MOBILE: Submenu (hidden by default, expands below when clicked) */
  .dropdown-menu {
    display: none;
    position: static;
    background: #f9fafb;
    width: 100%;
    padding: 0;
  }

  /* MOBILE: Submenu links */
  .dropdown-menu a {
    padding: 0.75rem 1.5rem;
    border-bottom: 1px solid #e5e7eb;
    width: 100%;
    text-decoration: none;
    color: #4b5563;
    text-align: center;
    display: block;
  }

  /* MOBILE: Hide back button (not needed for accordion) */
  .back-button {
    display: none !important;
  }

  /* MOBILE: Show Services submenu when checkbox checked */
  #services-toggle:checked ~ .nav .services-menu {
    display: block;
  }

  /* MOBILE: Show Blog submenu when checkbox checked */
  #blog-toggle:checked ~ .nav .blog-menu {
    display: block;
  }

  /* MOBILE: Rotate arrow when submenu open */
  #services-toggle:checked ~ .nav .has-dropdown .services-menu ~ .dropdown-toggle .dropdown-arrow,
  #blog-toggle:checked ~ .nav .has-dropdown .blog-menu ~ .dropdown-toggle .dropdown-arrow {
    transform: rotate(180deg);
  }

  /* MOBILE: Emergency CTA button */
  .header-cta {
    width: 100%;
    text-align: center;
    margin-top: 1rem;
    margin-left: 0;
  }

  /* MOBILE: Open main nav when hamburger clicked */
  #menu-toggle:checked ~ .nav {
    display: flex;
    right: 0; /* Slide nav into view */
  }

  /* MOBILE: Animate hamburger to X when menu open */
  #menu-toggle:checked ~ .menu-icon span:nth-child(1) {
    transform: rotate(-45deg) translate(-6px, 6px);
  }

  #menu-toggle:checked ~ .menu-icon span:nth-child(2) {
    opacity: 0;
  }

  #menu-toggle:checked ~ .menu-icon span:nth-child(3) {
    transform: rotate(45deg) translate(-6px, -6px);
  }

  /* MOBILE: Show dark overlay when menu open */
  #menu-toggle:checked ~ .menu-overlay {
    display: block;
  }

  /* MOBILE: Smaller hero text */
  .hero-section h1 {
    font-size: 2rem;
  }

  /* MOBILE: Single column blog grid */
  .cards-grid {
    grid-template-columns: 1fr;
  }
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.7;
  color: #1f2937;
  font-size: 16px;
  background: #f9fafb;
}
.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.header {
  background: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo img {
  height: 60px;
}
.company-name {
  color: #000000;
  font-size: 1.25rem;
  font-weight: 700;
}
.nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.nav a {
  color: #000000;
  text-decoration: none;
  transition: transform 0.2s ease, opacity 0.2s ease;
  will-change: transform, opacity;
}
.nav a:hover {
  color: #2563eb;
  transform: translateY(-2px);
  opacity: 0.95;
}
.header-cta {
  background: #ef4444;
  color: white !important;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: bold;
}
.breadcrumb {
  background: #f5f5f5;
  padding: 1rem 0;
}

.breadcrumb ol {
  list-style: none;
  display: flex;
  gap: 0.5rem;
}

.breadcrumb li:not(:last-child)::after {
  content: ">";
  margin-left: 0.5rem;
}

.breadcrumb a {
  color: #0066cc;
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}
/* Main Content */
.thank-you-container {
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 1rem;
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}
.thank-you-content {
  background: white;
  border-radius: 1rem;
  padding: 3rem 2rem;
  max-width: 600px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.success-icon {
  width: 80px;
  height: 80px;
  background: #10b981;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 3rem;
}
.thank-you-content h1 {
  font-size: 2.5rem;
  color: #1f2937;
  margin-bottom: 1rem;
}
.thank-you-content .subtitle {
  font-size: 1.25rem;
  color: #10b981;
  margin-bottom: 1.5rem;
  font-weight: 600;
}
.thank-you-content p {
  color: #6b7280;
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
}
.next-steps {
  background: #f9fafb;
  border-radius: 0.5rem;
  padding: 1.5rem;
  margin: 2rem 0;
  text-align: left;
}
.next-steps h2 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: #1f2937;
}
.next-steps ul {
  list-style: none;
}
.next-steps li {
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
  position: relative;
  color: #4b5563;
}
.next-steps li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: bold;
}
.action-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}
.btn-primary {
  background: #2563eb;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 0.375rem;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
  display: inline-block;
}
.btn-primary:hover {
  background: #1d4ed8;
}
.btn-secondary {
  background: white;
  color: #2563eb;
  padding: 0.75rem 1.5rem;
  border-radius: 0.375rem;
  text-decoration: none;
  font-weight: 600;
  border: 2px solid #2563eb;
  transition: background 0.3s;
  display: inline-block;
}
.btn-secondary:hover {
  background: #eff6ff;
}
.urgent-notice {
  background: #fef2f2;
  border: 2px solid #ff0000;
  border-radius: 0.5rem;
  padding: 1rem;
  margin-top: 2rem;
}
.urgent-notice h3 {
  color: #ff0000;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}
.urgent-notice p {
  margin-bottom: 0.5rem;
  color: #000000;
}
/* Footer */
.footer {
  background: #1e3a8a;
  color: white;
  padding: 3rem 0 2rem;
}
.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}
.footer h3 {
  font-size: 1.125rem;
  margin-bottom: 1rem;
  color: white;
}
.footer ul {
  list-style: none;
}
.footer li {
  margin-bottom: 0.5rem;
}
.footer a {
  color: #ffffff;
  transition: transform 0.2s ease, opacity 0.2s ease;
  will-change: transform, opacity;
}
.footer a:hover {
  color: white;
  transform: translateY(-1px);
  opacity: 0.95;
}
.footer-bottom {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #ffffff;
  text-align: center;
  color: #ffffff;
}
/* Responsive */
@media (max-width: 768px) {
  .thank-you-content h1 {
    font-size: 2rem;
  }
  .action-buttons {
    flex-direction: column;
  }
  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }
}
/* Dropdown Menu */
.has-dropdown {
  position: relative;
}
.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  color: #000000;
  transition: transform 0.2s ease, opacity 0.2s ease;
  will-change: transform, opacity;
  background: none;
  border: none;
  font-size: 1rem;
  padding: 0;
}
.dropdown-toggle:hover {
  color: #2563eb;
}
.dropdown-arrow {
  font-size: 0.75rem;
  transition: transform 0.3s;
}
.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% - 5px);
  left: 0;
  background: white;
  min-width: 250px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  padding: 0.5rem 0;
  z-index: 1000;
  padding-top: 1rem;
}
.dropdown-menu a {
  display: block;
  padding: 0.75rem 1rem;
  color: #000000 !important;
  text-decoration: none;
  transition: background 0.2s;
}
.dropdown-menu a:hover {
  background: #f3f4f6;
  color: #2563eb !important;
}
.has-dropdown:hover .dropdown-menu {
  display: block;
}
.has-dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}
/* Matched Rule from user-agent */
div {
  display: block;
}

/* Matched Rule from user-agent */
address,
blockquote,
center,
div,
figure,
figcaption,
footer,
form,
header,
hr,
legend,
listing,
main,
p,
plaintext,
pre,
summary,
xmp,
article,
aside,
h1,
h2,
h3,
h4,
h5,
h6,
hgroup,
nav,
section,
search,
table,
caption,
colgroup,
col,
thead,
tbody,
tfoot,
tr,
td,
th,
dir,
dd,
dl,
dt,
menu,
ol,
ul,
li,
bdi,
output,
[dir="ltr" i],
[dir="rtl" i],
[dir="auto" i] {
  unicode-bidi: isolate;
}

/* Matched Rule from regular */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
  padding-top: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
  padding-left: 0px;
  box-sizing: border-box;
}

/* Matched Rule from regular */
.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  padding-right: 0px;
  padding-bottom: 1rem;
  padding-left: 0px;
}

/* Inherited from ancestor level 1 (user-agent) */
div {
  display: block;
}

/* Inherited from ancestor level 1 (user-agent) */
address,
blockquote,
center,
div,
figure,
figcaption,
footer,
form,
header,
hr,
legend,
listing,
main,
p,
plaintext,
pre,
summary,
xmp,
article,
aside,
h1,
h2,
h3,
h4,
h5,
h6,
hgroup,
nav,
section,
search,
table,
caption,
colgroup,
col,
thead,
tbody,
tfoot,
tr,
td,
th,
dir,
dd,
dl,
dt,
menu,
ol,
ul,
li,
bdi,
output,
[dir="ltr" i],
[dir="rtl" i],
[dir="auto" i] {
  unicode-bidi: isolate;
}

/* Inherited from ancestor level 1 (regular) */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
  padding-top: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
  padding-left: 0px;
  box-sizing: border-box;
}

/* Inherited from ancestor level 1 (regular) */
.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  max-width: 1200px;
  margin-top: 0px;
  margin-right: auto;
  margin-bottom: 0px;
  margin-left: auto;
  padding-top: 0px;
  padding-right: 20px;
  padding-bottom: 0px;
  padding-left: 20px;
}

/* Inherited from ancestor level 2 (user-agent) */
article,
aside,
footer,
header,
hgroup,
main,
nav,
search,
section {
  display: block;
}

/* Inherited from ancestor level 2 (user-agent) */
address,
blockquote,
center,
div,
figure,
figcaption,
footer,
form,
header,
hr,
legend,
listing,
main,
p,
plaintext,
pre,
summary,
xmp,
article,
aside,
h1,
h2,
h3,
h4,
h5,
h6,
hgroup,
nav,
section,
search,
table,
caption,
colgroup,
col,
thead,
tbody,
tfoot,
tr,
td,
th,
dir,
dd,
dl,
dt,
menu,
ol,
ul,
li,
bdi,
output,
[dir="ltr" i],
[dir="rtl" i],
[dir="auto" i] {
  unicode-bidi: isolate;
}

/* Inherited from ancestor level 2 (regular) */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
  padding-top: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
  padding-left: 0px;
  box-sizing: border-box;
}

/* Inherited from ancestor level 2 (regular) */
.header {
  background: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: white;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 4px;
  position: sticky;
  top: 0px;
  z-index: 100;
}

/* Inherited from ancestor level 3 (user-agent) */
body {
  display: block;
  margin-top: 8px;
  margin-right: 8px;
  margin-bottom: 8px;
  margin-left: 8px;
}

/* Inherited from ancestor level 3 (regular) */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
  padding-top: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
  padding-left: 0px;
  box-sizing: border-box;
}

/* Inherited from ancestor level 3 (regular) */
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  color: #1f2937;
  font-size: 16px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  color: rgb(31, 41, 55);
  font-size: 16px;
}

/* Inherited from ancestor level 4 (user-agent) */
html {
  display: block;
}

/* Inherited from ancestor level 4 (user-agent) */
:root {
  /* view-transition-name removed for browser support */
}

/* Inherited from ancestor level 4 (regular) */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
  padding-top: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
  padding-left: 0px;
  box-sizing: border-box;
}
