/* =============================================================
   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,main,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;
}
html {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  background: #F9F6F2;
  height: 100%;
}
body {
  background: #F9F6F2;
  font-family: 'Open Sans', Arial, sans-serif;
  color: #263148;
  min-height: 100vh;
  min-width: 320px;
}
img {
  max-width: 100%;
  display: block;
}
ul, ol {
  padding-left: 20px;
}
a {
  text-decoration: none;
  color: #263148;
  transition: color 0.18s cubic-bezier(.39,.575,.565,1);
}
a:hover, a:focus {
  color: #9C734A;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
  outline: none;
  border: none;
  background: none;
}
button {
  cursor: pointer;
}

/* =============================================================
   TYPOGRAPHY
============================================================= */
h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.5rem;
  letter-spacing: -0.5px;
  font-weight: 700;
  line-height: 1.08;
  margin-bottom: 16px;
  color: #263148;
}
h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2rem;
  letter-spacing: -0.5px;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 16px;
  color: #263148;
}
h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  letter-spacing: 0;
  font-weight: 700;
  line-height: 1.22;
  margin-bottom: 12px;
  color: #263148;
}
h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #263148;
}
p, li {
  font-size: 1rem;
  line-height: 1.65;
  color: #263148;
}
strong {
  font-weight: 700;
}

/* Geometric styling for headings */
h1, h2, h3, h4, h5, h6 {
  font-variant-ligatures: none;
  text-transform: none;
  font-stretch: semi-expanded;
}

/* =============================================================
   STRUCTURAL LAYOUTS & SPACING (flex only)
============================================================= */
.container {
  width: 100%;
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  flex-wrap: nowrap;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* ====== CARD AND GRID FLEX LAYOUTS MANDATORY ====== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(38,49,72,0.07);
  padding: 32px 24px;
  min-width: 250px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.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;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(38,49,72,0.09);
  margin-bottom: 20px;
  border-left: 6px solid #9C734A;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* For testimonial meta info */
.testimonial-meta {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  font-size: 0.97rem;
  opacity: 0.9;
  color: #263148;
  font-family: 'Montserrat', Arial, sans-serif;
}
.testimonial-meta span:last-child {
  color: #9C734A;
  font-size: 1.1em;
}

/* Feature Grid Structure (used as .feature-grid) */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: flex-start;
  margin-top: 8px;
  margin-bottom: 8px;
}
.feature {
  min-width: 220px;
  flex: 1 1 250px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(38,49,72,0.07);
  padding: 28px 20px 22px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
  gap: 16px;
  border-bottom: 4px solid #9C734A;
  transition: transform 0.18s cubic-bezier(.39,.575,.565,1),box-shadow 0.18s;
}
.feature img {
  width: 40px;
  height: 40px;
}
.feature:hover, .feature:focus {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 6px 28px rgba(38,49,72,0.08);
}

/* ======== SERVICE BOXES (in kochkurse/dienstleistungen) ======== */
.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 12px;
}
.service-box {
  flex: 1 1 270px;
  min-width: 220px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 1px 8px rgba(38,49,72,0.08);
  padding: 28px 20px 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-bottom: 4px solid #263148;
  transition: box-shadow 0.18s;
}
.service-box:hover, .service-box:focus {
  box-shadow: 0 3px 17px rgba(38,49,72,0.13);
  border-bottom: 4px solid #9C734A;
}

/* ----- Card for About and other boxes ----- */
.contact-details-box, .info-box, .price-summary {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(38,49,72,0.07);
  padding: 18px 22px;
  margin-bottom: 20px;
  font-size: 1rem;
}
.info-box.neutral {
  border-left: 5px solid #263148;
  color: #263148;
  background: #f4f3ee;
}
.price-summary {
  border-left: 5px solid #9C734A;
  margin-top: 10px;
}

/* Map placeholder styling */
.map-placeholder {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #f4f7fa;
  padding: 18px 20px;
  border-radius: 10px;
  font-size: 1em;
}
.map-placeholder img {
  width: 38px;
  height: 38px;
}

/* =======================================================================
   HERO SECTION
======================================================================= */
.hero {
  background: #263148;
  color: #fff;
  padding: 56px 0 56px 0;
  margin-bottom: 60px;
}
.hero h1, .hero h2, .hero h3 {
  color: #fff;
}
.hero p {
  color: #F9F6F2;
  margin-bottom: 12px;
  font-size: 1.18rem;
  font-weight: 400;
}
.hero .cta {
  margin-top: 18px;
}

/* =======================================================================
   BUTTONS & CTA STYLES
======================================================================= */
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.07rem;
  letter-spacing: 0.15px;
  border-radius: 40px;
  border: none;
  padding: 13px 32px;
  margin-top: 6px;
  background: #F9F6F2;
  color: #263148;
  box-shadow: 0 2px 10px rgba(38,49,72,0.05);
  transition: background 0.15s cubic-bezier(.39,.575,.565,1),color 0.15s, box-shadow 0.15s;
}
.cta.primary {
  background: #9C734A;
  color: #fff;
  font-weight: 700;
}
.cta.secondary {
  background: #263148;
  color: #fff;
}
.cta:hover, .cta:focus {
  background: #263148;
  color: #fff;
  box-shadow: 0 2px 22px rgba(156,115,74,0.13);
}
.cta.primary:hover, .cta.primary:focus {
  background: #263148;
  color: #fff;
}
.cta.secondary:hover, .cta.secondary:focus {
  background: #9C734A;
  color: #fff;
}

/* =======================================================================
   HEADER & NAVIGATION
======================================================================= */
header {
  width: 100%;
  position: relative;
  background: #F9F6F2;
  box-shadow: 0 1px 8px rgba(38,49,72,0.05);
  margin-bottom: 0;
  z-index: 50;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  padding-top: 12px;
  padding-bottom: 12px;
}
header img[alt="Mondschein Genusswerk"] {
  height: 42px;
  width: auto;
}
.main-nav {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1em;
  font-weight: 600;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 7px;
  color: #263148;
  transition: background 0.13s, color 0.13s;
  letter-spacing: 0.09em;
}
.main-nav a:hover, .main-nav a:focus {
  background: #E8DED2;
  color: #9C734A;
}
header .cta.primary {
  margin-left: 18px;
}

/* Hide mobile nav toggle button on desktop */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.3rem;
  color: #263148;
  z-index: 120;
  transition: color 0.14s;
  padding: 6px 10px 3px 10px;
}
.mobile-menu-toggle:focus {
  color: #9C734A;
}

/* =========================================================================
   MOBILE MENU
========================================================================= */
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: fixed;
  top: 0; left: 0; height: 100vh; width: 100vw;
  background: rgba(38,49,72,0.985);
  box-shadow: 0 8px 42px rgba(38,49,72,0.22);
  z-index: 130;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.23,1,.32,1);
  opacity: 1;
  visibility: visible;
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}
.mobile-menu-close {
  position: absolute;
  top: 22px;
  right: 26px;
  background: none;
  border: none;
  font-size: 2.1rem;
  color: #fff;
  z-index: 141;
  cursor: pointer;
  padding: 8px 14px 4px 14px;
  border-radius: 32px;
  transition: background 0.15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #9C734A;
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-top: 85px;
  width: 100%;
  align-items: center;
  justify-content: flex-start;
}
.mobile-nav a {
  display: block;
  width: 90vw;
  max-width: 350px;
  padding: 16px 0 16px 0;
  text-align: center;
  border-radius: 9px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.19em;
  color: #F9F6F2;
  background: none;
  letter-spacing: 0.13em;
  transition: background 0.14s, color 0.14s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #9C734A;
  color: #fff;
}

/* =========================================================================
   FOOTER
========================================================================= */
footer {
  background: #263148;
  color: #fff;
  padding-top: 40px;
  padding-bottom: 32px;
}
footer nav {
  flex-wrap: wrap !important;
}
footer .container {
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px 20px;
}
.footer-nav, .legal-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 12px;
}
.footer-nav a, .legal-nav a {
  color: #F9F6F2;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1em;
  font-weight: 500;
  letter-spacing: 0.03em;
  padding: 3px 0;
}
.footer-nav a:hover, .legal-nav a:hover, .footer-nav a:focus, .legal-nav a:focus {
  color: #9C734A;
  text-decoration: underline;
}
footer .contact-details {
  color: #E9E9E9;
  font-size: 1em;
  line-height: 1.54;
  max-width: 320px;
}
footer .contact-details a {
  color: #F9F6F2;
  text-decoration: underline;
}
footer .social-links {
  display: flex;
  flex-direction: row;
  gap: 14px;
  align-items: center;
  margin-top: 12px;
}
footer .social-links img {
  width: 30px;
  height: 30px;
}

/* ===================================================================
   LISTS & GENERAL ELEMENTS
=================================================================== */
ul, ol {
  margin-bottom: 16px;
}
ul li, ol li {
  margin-bottom: 8px;
  font-size: 1rem;
}
ul li:last-child, ol li:last-child {
  margin-bottom: 0;
}
strong {
  font-weight: 700;
  color: #263148;
}

/* ===================================================================
   CONTACT, FORMS, MISCELLANEOUS
=================================================================== */
.contact-details-box p, .contact-details-box a {
  color: #263148;
  font-size: 1.03em;
}
.contact-details-box a {
  text-decoration: underline;
}
.contact-cta {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 2px 10px rgba(38,49,72,0.07);
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* ===================================================================
   COOKIE BANNER & MODAL
=================================================================== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  z-index: 300;
  background: #263148;
  color: #fff;
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: center;
  gap: 32px;
  padding: 18px 16px;
  box-shadow: 0 -2px 18px rgba(38,49,72,0.13);
  font-size: 1rem;
  animation: cookieBannerIn 0.45s cubic-bezier(.39,.575,.565,1);
}
@keyframes cookieBannerIn {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner .banner-text {
  max-width: 600px;
  font-size: 1rem;
  color: #fff;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 12px;
}
.cookie-banner button {
  padding: 10px 22px;
  background: #9C734A;
  color: #fff;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  border-radius: 28px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.18s;
  box-shadow: 0 1px 2px rgba(38,49,72,0.05);
}
.cookie-banner button.secondary {
  background: #fff;
  color: #263148;
  border: 1.2px solid #9C734A;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #263148;
  color: #fff;
}
.cookie-banner button.secondary:hover, .cookie-banner button.secondary:focus {
  background: #9C734A;
  color: #fff;
}

.cookie-modal {
  position: fixed;
  left:0; right:0; top:0; bottom:0;
  width: 100vw; height: 100vh;
  background: rgba(38,49,72,0.87);
  z-index: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  animation: cookieModalIn 0.45s cubic-bezier(.39,.575,.565,1);
}
@keyframes cookieModalIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal-content {
  background: #fff;
  max-width: 370px;
  width: 96vw;
  border-radius: 19px;
  padding: 36px 20px 28px 24px;
  box-shadow: 0 2px 40px rgba(38,49,72,0.21);
  color: #263148;
  font-size: 1rem;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
}
.cookie-modal-content h3 {
  font-size: 1.21em;
  color: #263148;
  margin-bottom: 7px;
}
.cookie-modal-content .close-modal {
  position: absolute;
  right: 19px; top: 18px;
  background: none;
  color: #9C734A;
  border: none;
  font-size: 1.7rem;
  cursor: pointer;
  border-radius: 26px;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  margin-bottom: 10px;
}
.cookie-category label {
  font-weight: 600;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #263148;
}
.cookie-toggle {
  appearance: none;
  width: 38px;
  height: 22px;
  background: #E8DED2;
  border-radius: 11px;
  position: relative;
  transition: background 0.18s;
  outline: none;
  border: 1.3px solid #263148;
}
.cookie-toggle:checked {
  background: #9C734A;
}
.cookie-toggle::after {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  top: 2.5px; left: 3px;
  transition: left 0.18s;
  box-shadow: 0 1px 4px rgba(38,49,72,0.13);
}
.cookie-toggle:checked::after {
  left: 17px;
}
.cookie-modal-content .actions {
  display: flex;
  flex-direction: row;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 22px;
}
.cookie-modal-content button {
  padding: 10px 22px;
  border-radius: 19px;
  font-size: 1em;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  background: #9C734A;
  color: #fff;
  border: none;
  transition: background 0.18s, color 0.18s;
}
.cookie-modal-content button.cancel {
  background: #fff;
  color: #263148;
  border: 1.1px solid #9C734A;
}
.cookie-modal-content button:hover, .cookie-modal-content button:focus {
  background: #263148;
  color: #fff;
}
.cookie-modal-content button.cancel:hover, .cookie-modal-content button.cancel:focus {
  background: #9C734A;
  color: #fff;
}

/* ================================================================
   RESPONSIVE & MOBILE FIRST (Flex only, never grid!)
================================================================ */
@media (max-width: 1200px) {
  .container { max-width: 1000px; }
  .feature-grid, .service-grid { gap: 20px; }
}
@media (max-width: 900px) {
  .main-nav { gap: 14px; }
  .feature-grid, .service-grid { gap: 18px; }
  .container { max-width: 94vw; }
}
@media (max-width: 768px) {
  .container { padding-left: 12px; padding-right: 12px; }
  .main-nav,
  header .cta.primary { display: none !important; }
  .mobile-menu-toggle {
    display: inline-flex;
    align-items: center;
  }
  header .container {
    gap: 10px;
    justify-content: space-between;
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .feature-grid, .service-grid {
    flex-direction: column;
    gap: 18px;
  }
  .feature, .service-box {
    min-width: unset;
    max-width: 100%;
    width: 100%;
  }
  .footer-nav, .legal-nav {
    flex-direction: row;
    gap: 16px;
  }
  footer .container {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }
  .contact-cta, .section {
    padding: 24px 8px;
    margin-bottom: 28px;
  }
  .hero {
    padding: 35px 0 35px 0;
    margin-bottom: 34px;
  }
}
@media (max-width: 620px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.34rem; }
  .feature, .service-box {
    padding: 18px 10px 14px 10px;
  }
  .card {
    padding: 16px 10px;
    border-radius: 8px;
  }
  .testimonial-card {
    padding: 13px 8px;
    border-radius: 7px;
    font-size: 0.99em;
  }
  .hero {
    padding: 22px 0;
  }
}
@media (max-width: 480px) {
  .cookie-modal-content { padding: 16px 3vw 11px 3vw; }
  .section, .contact-cta { padding: 12px 2vw; }
}

/* Responsive: Non-hero text/image/section flex to column */
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
  }
}

/* =====================================================================
   ANIMATIONS, HOVERS, MICRO-INTERACTIONS
===================================================================== */
.card, .feature, .testimonial-card, .service-box {
  transition: box-shadow 0.17s, transform 0.12s;
}
.card:hover, .feature:hover, .service-box:hover {
  box-shadow: 0 6px 22px rgba(38,49,72,0.11);
  transform: translateY(-3px) scale(1.012);
}

.cta, button, [role="button"] {
  transition: background 0.16s, color 0.16s, box-shadow 0.14s, border 0.15s;
}
.cta:active, button:active {
  filter: brightness(0.93);
}

/* Focus visible for all links and buttons */
a:focus-visible, button:focus-visible, .cta:focus-visible {
  outline: 2px solid #9C734A;
  outline-offset: 2px;
}

/* ==========================================================
   UTILS / GENERAL
========================================================== */
.hide { display: none !important; }
.flex-row { display: flex; flex-direction: row; }
.flex-col { display: flex; flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.align-center { align-items: center; }
.justify-center { justify-content: center; }

/* Highly visible skip link for accessibility */
.skip-link {
  position: absolute;
  top: -45px;
  left: 0;
  background: #9C734A;
  color: #fff;
  padding: 12px 24px;
  z-index: 500;
  transition: top 0.2s;
  font-size: 1rem;
  border-radius: 0 0 7px 7px;
}
.skip-link:focus {
  top: 0;
}

/* ==============================================================
   GEOMETRIC - STRUCTURED DECORATIVE ELEMENTS
============================================================== */
/* Decorative underline for headings (geometric highlight) */
h2:after {
  content: "";
  display: block;
  width: 48px;
  height: 4px;
  background: #9C734A;
  border-radius: 3px;
  margin-top: 8px;
}
@media (max-width: 480px) {
  h2:after { width: 30px; height: 3px; }
}

/* Angular block decorations on selected cards */
.card::before, .feature::before, .service-box::before {
  content: "";
  display: block;
  height: 0;
  width: 0;
}

/* Geometric avatar placeholders (for testimonials, if needed) */
.testimonial-card::before {
  content: "";
  display: none;
}
.testimonial-card {
  border-top-right-radius: 0;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 18px;
  border-top-left-radius: 12px;
}

/* ==============================================================
   CONTRAST & STYLES FOR TESTIMONIALS
============================================================== */
.testimonials, .testimonial-section {
  background: #F9F6F2;
  padding-top: 18px;
  padding-bottom: 18px;
}
.testimonial-card {
  background: #fff;
  color: #263148;
  box-shadow: 0 2px 8px rgba(156,115,74,0.07);
  border-left: 5px solid #9C734A;
}
.testimonial-card p {
  color: #263148;
  font-style: italic;
  font-size: 1.08em;
}

/* Ensures testimonials remain readable (high contrast) */
.testimonial-card, .testimonial-card * {
  color: #263148 !important;
}

/* ==============================================================
   MISCELLANEOUS SECTION STYLING
============================================================== */
.about-preview, .about, .service-teaser, .services-overview {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(38,49,72,0.06);
  margin-bottom: 60px;
  padding: 40px 20px;
}
.service-list {
  list-style: disc outside;
  padding-left: 20px;
  margin-bottom: 22px;
}
.service-list li {
  margin-bottom: 13px;
  font-size: 1.05em;
  line-height: 1.54;
}
.service-list li strong {
  color: #9C734A;
}

/* Legal Section (AGB, GDPR, etc) */
.legal {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(38,49,72,0.06);
  margin-top: 32px;
  margin-bottom: 48px;
  padding: 40px 24px;
}
.legal h1,
.legal h2 {
  color: #263148;
  margin-bottom: 18px;
}
.legal ul {
  padding-left: 20px;
}
.legal ul li {
  color: #263148;
  margin-bottom: 10px;
}

.confirmation {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(38,49,72,0.09);
  margin-top: 40px;
  padding: 40px 20px;
}
.confirmation h1 {
  color: #9C734A;
}

/* ===================== END =========================== */
