/* CSS RESET & NORMALIZE */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  min-height: 100vh;
  background: #F7F7F7;
  color: #1C2033;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
}
* {
  box-sizing: inherit;
}
a {
  color: #1C2033;
  text-decoration: none;
  transition: color 0.15s;
}
a:hover, a:focus {
  color: #D0B65D;
}
img {
  vertical-align: middle;
  max-width: 100%;
  display: block;
}
ul, ol {
  margin-left: 1.5em;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: 1rem;
  border-radius: 5px;
  border: 1px solid #ddd;
  outline: none;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', 'Roboto', Arial, sans-serif;
  color: #1C2033;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 20px;
}
h1 {
  font-size: 2.4rem;
  margin-bottom: 20px;
}
h2 {
  font-size: 1.8rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 14px;
  font-weight: 500;
}
p, li, ul, ol, address, span {
  font-size: 1rem;
  line-height: 1.6;
  color: #272933;
}
p, ul, ol {
  margin-bottom: 16px;
}
strong {
  font-weight: bold;
  color: #1C2033;
}
em {
  font-style: italic;
}

/* GENERAL CONTAINER & LAYOUT */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(28,32,51,0.03), 0 1.5px 8px rgba(28,32,51,0.05);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* HEADER */
header {
  background: #fff;
  box-shadow: 0 2px 8px rgba(28,32,51,0.06);
  position: relative;
  z-index: 100;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 24px;
}
header img {
  height: 50px;
  width: auto;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  font-family: 'Oswald', 'Roboto', sans-serif;
  font-size: 1rem;
  color: #1C2033;
  padding: 7px 8px;
  border-radius: 6px;
  font-weight: 500;
  transition: background 0.16s, color 0.15s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #F7F7F7;
  color: #D0B65D;
}

.cta-primary {
  background: #D0B65D;
  color: #1C2033;
  font-family: 'Oswald', 'Roboto', sans-serif;
  padding: 11px 24px;
  border: none;
  border-radius: 8px;
  font-size: 1.12rem;
  font-weight: 700;
  box-shadow: 0 1.5px 8px rgba(28,32,51,0.07);
  text-align: center;
  cursor: pointer;
  transition: background 0.17s, box-shadow 0.2s, color 0.17s;
}
.cta-primary:hover, .cta-primary:focus {
  background: #b79e45;
  color: #fff;
  box-shadow: 0 3px 24px rgba(208,182,93,0.10);
}

/* MOBILE NAVIGATION */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #1C2033;
  cursor: pointer;
  margin-left: 8px;
  z-index: 101;
  transition: color 0.2s;
}
.mobile-menu-toggle:focus {
  color: #D0B65D;
  outline: 2px solid #D0B65D;
}
.mobile-menu {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  z-index: 999;
  transform: translateX(-100%);
  transition: transform 0.34s cubic-bezier(.77,.02,.5,1);
  display: flex;
  flex-direction: column;
  padding-top: 32px;
  box-shadow: 4px 0 30px rgba(28,32,51,0.10);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 2.2rem;
  color: #1C2033;
  cursor: pointer;
  margin: 10px 22px 16px 0;
  transition: color 0.15s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  color: #D0B65D;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 16px 40px 0 36px;
}
.mobile-nav a {
  font-family: 'Oswald', 'Roboto', sans-serif;
  font-size: 1.18rem;
  color: #1C2033;
  padding: 12px 0;
  width: 100%;
  border-radius: 7px;
  font-weight: 500;
  transition: background 0.14s, color 0.18s;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  background: #F7F7F7;
  color: #D0B65D;
}

@media (max-width: 1024px) {
  .main-nav {
    gap: 14px;
  }
}
@media (max-width: 880px) {
  header .container {
    gap: 12px;
  }
  .main-nav a {
    font-size: 0.97rem;
  }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .cta-primary {
    font-size: 1rem;
    padding: 10px 16px;
  }
  .mobile-menu-toggle {
    display: block;
  }
  header .container {
    padding-right: 0;
    min-height: 56px;
  }
}

/* HERO SECTION */
.hero {
  background: #F7F7F7;
  padding: 60px 0 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 0;
  max-width: 680px;
}
.hero h1 {
  font-size: 2.25rem;
  color: #1C2033;
}
.hero p {
  font-size: 1.13rem;
  color: #272933;
}

@media (max-width: 600px) {
  .hero {
    padding: 38px 0 24px;
    min-height: unset;
  }
  .hero h1 {
    font-size: 1.5rem;
  }
  .hero .content-wrapper {
    gap: 12px;
  }
}

/* FEATURES + CARDS */
.features {
  margin-bottom: 60px;
  padding: 40px 0;
  background: #fff;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 20px;
}
.feature-grid > div {
  background: #F7F7F7;
  border-radius: 13px;
  padding: 27px 20px 21px 20px;
  flex: 1 1 235px;
  min-width: 220px;
  box-shadow: 0 2px 10px rgba(28,32,51,0.04);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  transition: box-shadow 0.19s;
}
.feature-grid > div:hover {
  box-shadow: 0 10px 28px rgba(208,182,93,0.06), 0 2px 10px rgba(28,32,51,0.03);
}
.feature-grid img {
  height: 35px;
  width: 35px;
  margin-bottom: 8px;
}
.feature-grid h3 {
  font-size: 1.18rem;
  margin-bottom: 2px;
  color: #1C2033;
}
.feature-grid p {
  font-size: 1rem;
  color: #272933;
  margin-bottom: 0;
}

@media (max-width: 800px) {
  .feature-grid {
    flex-direction: column;
    gap: 20px;
  }
  .feature-grid > div {
    min-width: unset;
    width: 100%;
  }
}

/* ABOUT/LEGAL/GENERAL TEXT SECTIONS */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: transparent;
  margin-bottom: 14px;
}
.text-section ul {
  margin: 0 0 0 18px;
  padding: 0;
}
.text-section li {
  margin-bottom: 7px;
  font-size: 1rem;
}

.legal {
  margin-bottom: 60px;
  padding: 43px 0 33px 0;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 16px rgba(28,32,51,0.04);
}
.legal h1 {
  font-size: 2rem;
}
.legal h2 {
  font-size: 1.28rem;
  margin-top: 20px;
}

/* SERVICE CARDS/OVERVIEW */
.services-overview {
  margin-bottom: 60px;
  padding: 39px 0;
  background: #fff;
}
.service-summary-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-top: 20px;
}
.service-summary-cards > div {
  background: #FAFAFA;
  border-radius: 15px;
  padding: 23px 19px;
  flex: 1 1 250px;
  min-width: 210px;
  box-shadow: 0 1.5px 7px rgba(28,32,51,0.03);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
  transition: box-shadow 0.16s;
}
.service-summary-cards > div:hover {
  box-shadow: 0 12px 22px rgba(208,182,93,0.06), 0 2px 10px rgba(28,32,51,0.03);
}
.service-summary-cards img {
  height: 34px;
  margin-bottom: 8px;
}
.service-summary-cards h3 {
  font-size: 1.11rem;
  margin-bottom: 2px;
}

@media (max-width: 800px) {
  .service-summary-cards {
    flex-direction: column;
    gap: 16px;
  }
  .service-summary-cards > div {
    min-width: unset;
    width: 100%;
  }
}

/* SERVICE LIST (used in .services) */
.service-list {
  display: flex;
  flex-direction: column;
  gap: 13px;
  list-style: disc;
  margin-bottom: 20px;
}
.service-list li {
  font-size: 1rem;
  color: #272933;
  margin-bottom: 3px;
}

/* PRICING TABLE */
.service-pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  margin: 22px 0 10px 0;
  box-shadow: 0 1.5px 10px rgba(208,182,93,0.045);
  border-radius: 10px;
  overflow: hidden;
}
.service-pricing-table th {
  background: #EBEBEA;
  color: #1C2033;
  font-family: 'Oswald', 'Roboto', sans-serif;
  font-size: 1rem;
  padding: 13px 9px;
  text-align: left;
}
.service-pricing-table td {
  padding: 13px 9px;
  color: #272933;
  font-size: 1rem;
}
.service-pricing-table tr:nth-child(even) td {
  background: #F7F7F7;
}

/* TESTIMONIALS */
.testimonials {
  margin-bottom: 60px;
  padding: 39px 0 29px 0;
  background: #fff;
}
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 23px;
  margin-top: 20px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  background: #FAFAF8;
  border-radius: 13px;
  padding: 22px 20px 15px;
  box-shadow: 0 2px 14px rgba(28,32,51,0.03), 0 2px 4px rgba(0,0,0,0.01);
  min-width: 220px;
  flex: 1 1 320px;
  color: #1C2033;
  font-size: 1.06rem;
  transition: box-shadow 0.18s;
}
.testimonial-card p {
  color: #222;
  font-size: 1.06rem;
}
.testimonial-card span {
  color: #888;
  font-size: 0.96rem;
  font-weight: 400;
}
.testimonial-card:hover {
  box-shadow: 0 8px 30px rgba(208,182,93,0.10) , 0 2px 10px rgba(28,32,51,0.04);
}
@media (max-width: 900px) {
  .testimonial-list {
    flex-direction: column;
    gap: 16px;
  }
  .testimonial-card {
    min-width: unset;
    width: 100%;
  }
}

/***** CTA SECTION *****/
.cta {
  background: #F7F7F7;
  margin-bottom: 60px;
  padding: 43px 0 0 0;
  border-radius: 17px;
}
.cta .content-wrapper {
  align-items: center;
  gap: 22px;
  text-align: center;
  padding-bottom: 24px;
}
.cta h2 {
  margin-bottom: 10px;
  font-size: 1.52rem;
}
.support-contact p, .contact-us-prompt p {
  display: flex;
  align-items: center;
  gap: 7px;
  justify-content: center;
  font-size: 1rem;
  margin-top: 13px;
  color: #222;
}
.support-contact img, .contact-us-prompt img {
  height: 20px;
}

/***** FAQ ACCORDION *****/
.faq-accordion .faq-item {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 1.5px 8px rgba(208,182,93,0.06);
  margin-bottom: 20px;
  padding: 19px 21px 12px 18px;
  transition: box-shadow 0.18s;
}
.faq-accordion .faq-item h3 {
  font-size: 1.07rem;
  color: #1C2033;
  margin-bottom: 8px;
  font-family: 'Oswald', 'Roboto', sans-serif;
}
.faq-accordion .faq-item p {
  color: #272933;
  font-size: 0.97rem;
}
.faq-accordion .faq-item:hover, .faq-accordion .faq-item:focus-within {
  box-shadow: 0 8px 24px rgba(208,182,93,0.12) , 0 1.5px 10px rgba(28,32,51,0.06);
}

/* CONTACT DETAILS */
.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin: 20px 0 16px 0;
}
.contact-method {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  background: #F7F7F7;
  border-radius: 9px;
  padding: 17px 14px 15px 14px;
  min-width: 180px;
  flex: 1 1 180px;
  box-shadow: 0 1px 6px rgba(28,32,51,0.04);
}
.contact-method img {
  height: 26px;
  margin-bottom: 3px;
}
.contact-method span {
  font-weight: bold;
  color: #1C2033;
  margin-bottom: 2px;
}
.contact-method a {
  color: #1C2033;
  font-size: 1rem;
  word-break: break-all;
  transition: color 0.16s;
}
.contact-method a:hover {
  color: #D0B65D;
  text-decoration: underline;
}

@media (max-width: 800px) {
  .contact-details {
    flex-direction: column;
    gap: 16px;
  }
  .contact-method {
    min-width: unset;
    width: 100%;
  }
}

/* MAP EMBED */
.map-embed {
  margin: 16px 0 0 0;
}
.map-embed em {
  font-size: 0.98rem;
  color: #8b8b76;
}

/* REPAIR PROCESS OL (REPARATURPROCESS) */
.repair-process ol {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-left: 1.4em;
  margin-bottom: 2px;
}
.repair-process li {
  font-size: 1rem;
  color: #272933;
  margin-bottom: 0;
}

/* CONFIRMATION (THANK YOU) PAGE */
.confirmation {
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F7F7F7;
  margin-bottom: 60px;
  padding: 80px 0;
}
.confirmation .content-wrapper {
  background: #fff;
  border-radius: 11px;
  box-shadow: 0 1.5px 8px rgba(208,182,93,0.09);
  padding: 38px 32px 30px 32px;
  align-items: center;
  text-align: center;
  gap: 18px;
}
.confirmation h1 {
  color: #4E505C;
}

/***** FOOTER *****/
footer {
  background: #fff;
  padding: 38px 0 18px 0;
  border-top: 1.5px solid #eee;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
  justify-content: space-between;
}
footer a img {
  height: 45px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-nav a {
  color: #888;
  font-size: 0.98rem;
  transition: color 0.15s;
  padding: 0;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #D0B65D;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.99rem;
}
.footer-contact address, .footer-contact p {
  color: #575656;
  font-style: normal;
}
.footer-contact a {
  color: #222;
  word-break: break-all;
  transition: color 0.15s;
}
.footer-contact a:hover {
  color: #D0B65D;
  text-decoration: underline;
}

@media (max-width: 700px) {
  footer .container {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
    padding-left: 6px;
  }
  .footer-nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 14px;
  }
  .footer-contact {
    font-size: 0.97rem;
  }
}

/***** CARD/SECTION/FLEX PATTERNS *****/
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  margin-bottom: 20px;
  border-radius: 13px;
  box-shadow: 0 1.5px 8px rgba(28,32,51,0.03);
  padding: 24px 18px 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 13px;
  transition: box-shadow 0.15s;
}
.card:hover {
  box-shadow: 0 8px 24px rgba(208,182,93,0.10) , 0 1.5px 10px rgba(28,32,51,0.05);
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

@media (max-width: 900px) {
  .content-grid, .card-container {
    flex-direction: column;
    gap: 18px;
  }
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
}

/***** BUTTONS & MICROLEFFECTS *****/
button, .button, input[type=submit] {
  background: #D0B65D;
  color: #1C2033;
  border: none;
  border-radius: 7px;
  padding: 11px 22px;
  cursor: pointer;
  font-family: 'Oswald', 'Roboto', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  box-shadow: 0 1.5px 8px rgba(208,182,93,0.08);
  transition: background 0.15s, color 0.15s, box-shadow 0.15s;
}
button:hover, button:focus, .button:hover, .button:focus, input[type=submit]:hover, input[type=submit]:focus {
  background: #b79e45;
  color: #fff;
  box-shadow: 0 3px 18px rgba(208,182,93,0.13);
}

/***** FOCUS RING *****/
:focus-visible {
  outline: 2px solid #D0B65D;
  outline-offset: 2px;
}

/***** COOKIE CONSENT BANNER *****/
.cookie-banner {
  position: fixed;
  left: 0; bottom: 0;
  width: 100vw;
  background: #fffbe6;
  box-shadow: 0 -2px 12px rgba(208,182,93,0.13);
  z-index: 2000;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 18px 7vw 18px 7vw;
  transition: transform 0.32s cubic-bezier(.77,.02,.56,1);
  transform: translateY(0);
}
.cookie-banner.hide {
  transform: translateY(100%);
}
.cookie-banner .cookie-content {
  max-width: 740px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cookie-banner p {
  color: #1C2033;
  font-size: 1.01rem;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 7px;
}
.cookie-banner button {
  min-width: 120px;
  background: #D0B65D;
  color: #fff;
  border-radius: 6px;
  margin-right: 10px;
  font-size: 0.97rem;
  box-shadow: none;
}
.cookie-banner button.reject {
  background: #e0e0e0;
  color: #1C2033;
}
.cookie-banner button.settings {
  background: #fff;
  border: 1.2px solid #D0B65D;
  color: #1C2033;
}
.cookie-banner button.settings:focus, .cookie-banner button.settings:hover {
  background: #F7F7F7;
  color: #D0B65D;
}

/***** COOKIE PREFERENCES MODAL *****/
.cookie-modal {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  z-index: 2100;
  background: rgba(28,32,51,0.46);
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.26s cubic-bezier(.77,.02,.56,1);
}
.cookie-modal.open {
  visibility: visible;
  opacity: 1;
}
.cookie-modal .cookie-modal-content {
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 5px 40px rgba(28,32,51,0.17);
  padding: 34px 25px 26px 25px;
  width: 95%;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  gap: 19px;
  position: relative;
}
.cookie-modal .cookie-modal-content h2 {
  font-size: 1.35rem;
  margin-bottom: 0px;
  color: #1C2033;
}
.cookie-modal .cookie-modal-content .cookie-category {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.cookie-modal .cookie-modal-content .cookie-category strong {
  color: #1C2033;
}
.cookie-modal .cookie-modal-content label {
  font-size: 1rem;
  color: #1C2033;
  flex: 1;
}
.cookie-modal .cookie-modal-content input[type=checkbox] {
  width: 17px;
  height: 17px;
  accent-color: #D0B65D;
  margin-right: 7px;
}
.cookie-modal .cookie-modal-content .cookie-category.essential label {
  opacity: 0.6;
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  top: 15px; right: 15px;
  background: none;
  border: none;
  font-size: 1.65rem;
  color: #1C2033;
  cursor: pointer;
  transition: color 0.13s;
}
.cookie-modal .cookie-modal-close:hover {
  color: #D0B65D;
}
.cookie-modal .cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
}
.cookie-modal .cookie-actions button {
  min-width: 98px;
  font-size: 0.99rem;
  border-radius: 7px;
}

@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    padding: 13px 10px 13px 10px;
  }
  .cookie-modal .cookie-modal-content {
    max-width: 97vw;
    padding: 20px 6vw;
  }
}

/* ANIMATION (slide in/out for mobile menu, cookie banner/modal) */
@keyframes slideInMenu {
  from { transform: translateX(-100%); }
  to { transform: translateX(0); }
}
@keyframes slideOutMenu {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}
@keyframes fadeInModal {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes fadeOutModal {
  from { opacity: 1; }
  to { opacity: 0; }
}

/***** MEDIA QUERIES FOR RESPONSIVENESS *****/
@media (max-width: 1175px) {
  .container {
    max-width: 970px;
  }
}
@media (max-width: 990px) {
  .container {
    max-width: 760px;
  }
}
@media (max-width: 700px) {
  .container {
    max-width: 98vw;
    padding-left: 8px;
    padding-right: 8px;
  }
  .section, .features, .services-overview, .testimonials, .cta, .legal, .confirmation {
    padding: 18px 0;
    margin-bottom: 30px;
    border-radius: 10px;
  }
}
@media (max-width: 460px) {
  .section, .features, .services-overview, .testimonials, .cta, .legal, .confirmation {
    padding: 7px 0;
  }
}

/* Hide visually-hidden, for a11y */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  white-space: nowrap;
  clip-path: inset(100%);
  clip: rect(0 0 0 0);
  overflow: hidden;
}
