/* =============================================================
   Luminous Mint Hochzeiten – Minimalist Flexbox CSS
   Author: Senior CSS & UI Designer
   Brand: Luminous Mint Hochzeiten – Modern, elegant wedding planner
   ============================================================= */

/* =============================================================
   CSS RESET & BASE
   ============================================================= */
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;
}
html {
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  min-height: 100vh;
  background: #fff;
  color: #21443C;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
}
img, svg {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: #21443C;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #A3EACD;
  outline: none;
}
ul, ol {
  list-style: none;
}

/* =============================================================
   TYPOGRAPHY
   ============================================================= */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', 'Times New Roman', serif;
  color: #21443C;
  margin-bottom: 12px;
  font-weight: 700;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  font-weight: 600;
}
h4, h5, h6 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  font-weight: 400;
}
p, li {
  font-size: 1rem;
  margin-bottom: 10px;
  color: #21443C;
}
.subheadline {
  font-size: 1.15rem;
  color: #21443C;
  opacity: 0.82;
  margin-bottom: 24px;
  font-family: 'Roboto', Arial, sans-serif;
}
strong {
  font-weight: 600;
}

/* Headings visual hierarchy */
section h2, .content-wrapper > h2, .content-wrapper > h1 {
  margin-top: 0;
  margin-bottom: 24px;
}

/* =============================================================
   LAYOUT STRUCTURE & CONTAINERS
   ============================================================= */
.container {
  max-width: 1072px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  justify-content: center;
}

section, .section {
  margin-bottom: 60px;
  padding: 40px 0 0 0;
  width: 100%;
}
section:last-child, .section:last-child {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  section, .section {
    padding: 32px 0 0 0;
    margin-bottom: 36px;
  }
}

/* Utility Classes */
.gap-20 { gap: 20px; }
.gap-24 { gap: 24px; }
.gap-32 { gap: 32px; }

/* =============================================================
   HEADER & NAVIGATION
   ============================================================= */
header {
  background: #fff;
  border-bottom: 1px solid #f1f1f1;
  width: 100%;
  z-index: 99;
  position: relative;
  min-height: 68px;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 20px 20px 20px 20px;
}
header nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 32px;
}
header nav a {
  position: relative;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  padding: 8px 4px;
  transition: color 0.2s;
}
header nav a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: #A3EACD;
  opacity: 0;
  border-radius: 1px;
  transition: opacity 0.2s, transform 0.2s;
  transform: scaleX(0.5);
}
header nav a:hover::after, header nav a:focus::after {
  opacity: 1;
  transform: scaleX(1);
}

.cta-primary, .cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 28px;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.07rem;
  font-weight: 500;
  text-align: center;
  padding: 12px 32px;
  margin-left: 18px;
  min-width: 140px;
  border: none;
  transition: background 0.2s, box-shadow 0.2s, color 0.2s;
  box-shadow: 0 2px 8px 0 rgba(33, 68, 60, 0.07);
  cursor: pointer;
}
.cta-primary {
  background: #21443C;
  color: #fff;
  border: 1px solid transparent;
  box-shadow: 0 4px 14px 0 rgba(33,68,60, 0.09);
}
.cta-primary:hover, .cta-primary:focus {
  background: #A3EACD;
  color: #21443C;
  box-shadow: 0 6px 16px 0 rgba(33,68,60,0.17);
}
.cta-secondary {
  background: #fff;
  color: #21443C;
  border: 1px solid #A3EACD;
}
.cta-secondary:hover, .cta-secondary:focus {
  background: #A3EACD;
  color: #21443C;
}

/* Hide burger on desktop, show burger on mobile */
.mobile-menu-toggle {
  display: none;
}

@media (max-width: 950px) {
  header .container nav,
  header .cta-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 24px;
    top: 16px;
    width: 44px;
    height: 44px;
    background: #fff;
    border: 1px solid #A3EACD;
    color: #21443C;
    border-radius: 100px;
    font-size: 2rem;
    z-index: 110;
    cursor: pointer;
    box-shadow: 0 2px 8px 0 rgba(33,68,60,0.06);
    transition: border 0.2s, box-shadow 0.2s;
  }
  .mobile-menu-toggle:active, .mobile-menu-toggle:focus {
    border: 1px solid #21443C;
    box-shadow: 0 4px 16px 0 rgba(33,68,60,0.11);
  }
}

/* Mobile Menu Overlay */
.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  position: fixed;
  top: 0; left: 0; bottom: 0; right: 0;
  background: #fff;
  z-index: 120;
  width: 100vw;
  height: 100vh;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(.76,.01,.33,1);
  box-shadow: 0 0 24px 0 rgba(33,68,60,0.08);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu-close {
  margin: 20px 20px 0 auto;
  border: none;
  background: none;
  color: #21443C;
  font-size: 2rem;
  cursor: pointer;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #A3EACD;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin: 40px 0 0 0;
  align-items: flex-start;
  padding-left: 36px;
}
.mobile-nav a {
  font-size: 1.17rem;
  padding: 12px 0;
  color: #21443C;
  width: 100%;
  font-family: 'Roboto', Arial, sans-serif;
  border-radius: 5px;
  transition: background 0.2s, color 0.2s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #A3EACD;
  color: #21443C;
}

@media (min-width: 950px) {
  .mobile-menu,
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* Menu fade-in for visual quality */
.mobile-menu,
.cookie-banner, .cookie-modal {
  will-change: opacity, transform;
}

/* Backdrop when mobile nav/cookie modal open */
.mobile-menu::after, .cookie-modal.open::before {
  content: '';
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  z-index: 0;
  background: rgba(33,68,60,0.08);
}


/* =============================================================
   HERO & HEADERS
   ============================================================= */
.hero {
  background: #F9FCFB;
  border-radius: 0 0 32px 32px;
  min-height: 260px;
  display: flex;
  align-items: center;
  box-shadow: 0 2px 16px 0 rgba(33,68,60, 0.03);
  padding-bottom: 32px;
  margin-bottom: 60px;
}
.hero .container {
  justify-content: center;
  align-items: center;
  min-height: 210px;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 18px;
  margin-top: 10px;
}
@media (max-width: 768px) {
  .hero {
    min-height: 170px;
    border-radius: 0 0 18px 18px;
    margin-bottom: 38px;
    padding-bottom: 14px;
  }
}

/* =============================================================
   FLEXBOX LAYOUTS (MANDATED PATTERNS & BRAND DESIGN)
   ============================================================= */
.feature-grid, .card-container, .features {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
  margin-bottom: 12px;
}
.feature-grid > div {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 9px 0 rgba(33,68,60,0.06);
  padding: 22px 18px;
  flex: 1 1 202px;
  min-width: 220px;
  max-width: 49%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  transition: box-shadow 0.18s;
  margin-bottom: 20px;
}
.feature-grid > div:hover, .feature-grid > div:focus-within {
  box-shadow: 0 4px 18px 0 rgba(33,68,60,0.11);
}
@media (max-width: 768px) {
  .feature-grid > div {
    max-width: 100%;
    min-width: 0;
    width: 100%;
  }
  .feature-grid {
    gap: 18px;
  }
}

.card-container { /* generic cards, not used by default but included by spec */
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  border-radius: 18px;
  box-shadow: 0 2px 12px 0 rgba(33,68,60,0.07);
  background: #fff;
}
.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;
  margin-bottom: 24px;
  padding: 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 13px 0 rgba(33,68,60,0.08);
  transition: box-shadow 0.12s, background 0.12s;
}
.testimonial-card:hover,
.testimonial-card:focus-within {
  background: #F5FFF9;
  box-shadow: 0 4px 20px 0 rgba(33,68,60,0.18);
}
.testimonial-card p {
  font-size: 1.09rem;
  color: #21443C;
  margin-bottom: 6px;
  line-height: 1.66;
}
.testimonial-card span {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 0.98rem;
  color: #65786E;
  font-weight: 400;
  margin-top: -6px;
}
.star-rating {
  display: flex;
  gap: 1.5px;
  align-items: center;
  height: 18px;
}

.icon-list {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 12px;
  margin-bottom: 22px;
}
.icon-list li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 1rem;
  color: #21443C;
  margin-bottom: 0;
}
.icon-list img {
  width: 23px;
  height: 23px;
  opacity: 0.96;
}

.features {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
  margin-bottom: 24px;
}
.features .feature-grid {
  width: 100%;
  gap: 24px;
}
.features ul, .features .feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.features li {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 1px 7px 0 rgba(33,68,60,0.06);
  padding: 18px 14px;
  min-width: 180px;
  flex: 1 1 180px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #21443C;
  font-size: 1rem;
}
@media (max-width: 768px) {
  .features .feature-grid, .features ul {
    flex-direction: column;
    gap: 14px;
  }
  .features li {
    width: 100%;
    min-width: 0;
  }
}

.text-section {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 0 0 12px 0;
}
.text-section ul,
.contact .text-section ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 4px 0 12px 0;
}
.text-section li,
.contact .text-section li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 1rem;
}
.text-section img,
.contact .text-section img {
  width: 20px;
  height: 20px;
  opacity: 0.85;
}

.contact-suggestion {
  margin-top: 28px;
  padding: 18px 22px;
  background: #F9FCFB;
  border-radius: 16px;
  box-shadow: 0 1px 7px 0 rgba(33,68,60,0.04);
  font-size: 1.01rem;
}

/* Card and section spacing (MANDATORY) */
.card {
  margin-bottom: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.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;
}

/* Gaps between all cards and sections */
section > *, .section > * {
  margin-bottom: 24px;
}
section > *:last-child, .section > *:last-child {
  margin-bottom: 0;
}

/* On mobile, layout changes from horizontal to column */
@media (max-width: 768px) {
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }
  .content-grid, .feature-grid, .features {
    flex-direction: column;
    gap: 14px;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
}

/* =============================================================
   FAQ (Accordion-Like Spacing)
   ============================================================= */
.faq .content-wrapper > div {
  border-bottom: 1px solid #eee;
  padding-bottom: 20px;
  margin-bottom: 20px;
  transition: background 0.12s;
}
.faq .content-wrapper > div:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.faq h3 {
  cursor: pointer;
  font-size: 1.11rem;
}
.faq h3:not(:last-child):hover {
  color: #A3EACD;
}
.contact-suggestion a {
  color: #21443C;
  font-weight: 500;
  border-bottom: 1px dashed #A3EACD;
  transition: color 0.18s, border-color 0.18s;
}
.contact-suggestion a:hover, .contact-suggestion a:focus {
  color: #A3EACD;
  border-bottom: 1px solid #A3EACD;
}

/* =============================================================
   FOOTER
   ============================================================= */
footer {
  background: #F9FCFB;
  border-top: 1px solid #F1F1F1;
  margin-top: 80px;
  padding: 32px 0 8px 0;
  display: flex;
  flex-direction: column;
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
}
footer nav {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
}
footer nav a {
  color: #65786E;
  font-size: 0.97rem;
  transition: color 0.2s;
}
footer nav a:hover {
  color: #21443C;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: #65786E;
  font-size: 0.95rem;
  margin-top: 4px;
}
@media (max-width: 950px) {
  footer .container {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
    padding-bottom: 24px;
  }
}

/* =============================================================
   COOKIE CONSENT BANNER & MODAL
   ============================================================= */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  z-index: 1300;
  background: #fff;
  box-shadow: 0 -2px 24px 0 rgba(33,68,60,0.09);
  border-top: 1px solid #A3EACD;
  padding: 16px 14px;
  min-height: 64px;
  opacity: 1;
  transition: opacity 0.35s, transform 0.32s;
  gap: 18px;
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
}
.cookie-banner p {
  font-size: 1.01rem;
  color: #21443C;
  margin: 0 24px 0 0;
  flex: 1 1 60%;
}
.cookie-banner button {
  min-width: 125px;
  font-size: .99rem;
  font-family: 'Roboto', Arial, sans-serif;
  padding: 10px 20px;
  margin-left: 15px;
  border-radius: 20px;
  border: none;
  transition: background 0.15s, color 0.15s, box-shadow 0.18s;
  cursor: pointer;
  box-shadow: 0 1px 6px 0 rgba(33,68,60,0.03);
}
.cookie-banner .cookie-accept {
  background: #21443C;
  color: #fff;
}
.cookie-banner .cookie-accept:hover, .cookie-banner .cookie-accept:focus {
  background: #A3EACD;
  color: #21443C;
}
.cookie-banner .cookie-reject {
  background: #fff;
  color: #21443C;
  border: 1px solid #A3EACD;
}
.cookie-banner .cookie-reject:hover, .cookie-banner .cookie-reject:focus {
  background: #F9FCFB;
  color: #21443C;
  border-color: #21443C;
}
.cookie-banner .cookie-settings {
  background: #A3EACD;
  color: #21443C;
}
.cookie-banner .cookie-settings:hover, .cookie-banner .cookie-settings:focus {
  background: #fff;
  color: #21443C;
  border: 1px solid #A3EACD;
}
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 8px;
    gap: 12px;
    font-size: 0.97rem;
    min-height: 0;
  }
  .cookie-banner p {
    margin: 0 0 8px 0;
    font-size: 0.98rem;
  }
  .cookie-banner button {
    width: 95%;
    margin-left: 0;
    margin-bottom: 7px;
    min-width: 0;
  }
}

.cookie-modal {
  display: none;
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  z-index: 2000;
  background: rgba(33,68,60,0.13);
  align-items: center;
  justify-content: center;
  transition: opacity 0.28s;
}
.cookie-modal.open {
  display: flex;
}
.cookie-modal-dialog {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 40px 0 rgba(33,68,60,0.13);
  padding: 36px 24px 22px 24px;
  min-width: 310px;
  max-width: 95vw;
  width: 440px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  animation: cookieModalShow 0.34s cubic-bezier(.26,.58,.68,1.08);
}
@keyframes cookieModalShow {
  from { transform: scale(0.92) translateY(40px); opacity: 0; }
  to   { transform: none; opacity: 1; }
}
.cookie-modal-dialog h2 {
  margin-bottom: 8px;
  font-size: 1.45rem;
  color: #21443C;
  font-weight: 600;
}
.cookie-modal-dialog .cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid #eee;
  padding-bottom: 12px;
  margin-bottom: 13px;
}
.cookie-modal-dialog .cookie-category:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.cookie-toggle {
  margin-left: auto;
}
.cookie-toggle input[type="checkbox"] {
  accent-color: #A3EACD;
  width: 22px;
  height: 22px;
  cursor: pointer;
}
.cookie-toggle input[disabled] {
  opacity: 0.4;
  cursor: not-allowed;
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 14px;
}
.cookie-modal-actions button {
  font-size: 0.98rem;
  border-radius: 17px;
  font-family: 'Roboto', Arial, sans-serif;
  padding: 8px 22px;
  border: none;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.cookie-modal-close {
  background: none;
  border: none;
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 1.5rem;
  color: #21443C;
  cursor: pointer;
  border-radius: 18px;
  padding: 2px 4px;
  transition: background 0.16s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #A3EACD;
  color: #21443C;
}

/* =============================================================
   BUTTONS [General, not cta-primary/secondary]
   ============================================================= */
button {
  font-family: 'Roboto', Arial, sans-serif;
  outline: none;
}
button:focus {
  outline: 1.5px solid #A3EACD;
}

/* =============================================================
   RESPONSIVE TYPOGRAPHY (avoid clamp()). Use fixed sizes.
   ============================================================= */
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.35rem;
  }
  h3 {
    font-size: 1.06rem;
  }
  .cta-primary, .cta-secondary {
    padding: 11px 15px;
    min-width: 100px;
    font-size: 0.968rem;
    margin-left: 0;
    margin-top: 10px;
  }
}

/* =============================================================
   MICRO-INTERACTIONS & ANIMATIONS
   ============================================================= */
.cta-primary, .cta-secondary, .cookie-banner button, .cookie-modal-actions button {
  transition: background 0.23s, box-shadow 0.16s, color 0.18s, border-color 0.18s;
}
.testimonial-card, .feature-grid > div, .features li {
  transition: box-shadow 0.16s, background 0.12s;
}
.testimonial-card:hover, .feature-grid > div:hover, .features li:hover {
  box-shadow: 0 6px 23px 0 rgba(33,68,60,0.13);
}
@media (hover: none) {
  .testimonial-card:hover, .feature-grid > div:hover, .features li:hover {
    box-shadow: 0 2px 13px 0 rgba(33,68,60,0.10);
  }
}

/* =============================================================
   LEGAL PAGES
   ============================================================= */
.legal {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 1px 7px 0 rgba(33,68,60,0.07);
  padding: 28px 24px;
  margin-top: 22px;
  margin-bottom: 32px;
}
.legal h1, .legal h2, .legal h3 {
  color: #21443C;
}
.legal ul {
  padding-left: 22px;
  margin-bottom: 18px;
}
.legal ul li {
  list-style: disc inside;
  color: #21443C;
  margin-bottom: 6px;
}

/* =============================================================
   THANK YOU / CONFIRMATION
   ============================================================= */
.confirmation .content-wrapper {
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 20px;
}
.confirmation h1 {
  color: #21443C;
  font-size: 2rem;
  margin-bottom: 16px;
}
.confirmation p {
  color: #21443C;
  font-size: 1.1rem;
}
.confirmation .contact-link p {
  margin-top: 16px;
  font-size: 1rem;
  color: #65786E;
}

/* =============================================================
   MISC
   ============================================================= */
::-webkit-input-placeholder {
  color: #a8b3ac;
  opacity: 1;
}
::-moz-placeholder {
  color: #a8b3ac;
  opacity: 1;
}
:-ms-input-placeholder {
  color: #a8b3ac;
  opacity: 1;
}
::placeholder {
  color: #a8b3ac;
  opacity: 1;
}

/* =============================================================
   FOCUS-STATE ACCESSIBILITY (COLOR-CONTRAST) [All interactive]
   ============================================================= */
a:focus, .cta-primary:focus, .cta-secondary:focus, .footer nav a:focus {
  outline: 2px solid #A3EACD;
  outline-offset: 1.5px;
}

/* =============================================================
   END OF STYLESHEET
   ============================================================= */
