/* ----------------------------------------------------
   CSS RESET & BASE NORMALIZATION
----------------------------------------------------- */
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;
}
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  min-height: 100vh;
  background: #f8fafc;
  color: #1a2533;
  font-family: 'Open Sans', Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img, svg {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: #21406B;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #FFD966;
  outline: none;
}
ul, ol {
  list-style-position: inside;
  margin-left: 0;
  padding-left: 0;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: 1rem;
  border: none;
  background: none;
  outline: none;
}
button {
  cursor: pointer;
}
:root {
  --primary:#21406B;
  --primary-80:#2d5088;
  --secondary:#497EBC;
  --accent:#FFD966;
  --bg: #f8fafc;
  --text: #1a2533;
  --gray: #dbe0e7;
  --white: #fff;
  --shadow: 0 2px 20px 0 rgba(33,64,107,0.10);
  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --transition: all 0.18s cubic-bezier(.4,.2,.2,1);
}
/* Fallbacks for CSS custom properties */
body {
  background: var(--bg, #f8fafc);
  color: var(--text, #1a2533);
}

/* ----------------------------------------------------
   TYPOGRAPHY HIERARCHY
----------------------------------------------------- */
h1, .h1 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-size: 2.8rem;
  line-height: 1.1;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 24px;
  letter-spacing: -1.2px;
}
@media(max-width: 768px) {
  h1, .h1 { font-size: 2rem; }
}
h2, .h2 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-size: 2rem;
  line-height: 1.2;
  font-weight: 600;
  color: var(--primary-80);
  margin-bottom: 20px;
}
h3, .h3 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 12px;
}
h4, .h4 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--primary-80);
  margin-bottom: 10px;
}
h5, .h5 {
  font-size: 1rem;
  color: var(--primary-80);
}
h6, .h6 {
  font-size: 0.97rem;
  color: var(--secondary);
}
p, ul, ol, li, address {
  font-size: 1rem;
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 400;
  color: var(--text);
  line-height: 1.7;
}
strong, b {
  font-weight: 700;
}
em, i {
  font-style: italic;
}

/* ----------------------------------------------------
   GLOBAL LAYOUT & SPACING
----------------------------------------------------- */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}
.content-wrapper {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
@media(max-width: 768px) {
  .section {
    margin-bottom: 32px;
    padding: 24px 8px;
    border-radius: var(--radius-md);
  }
  .container {
    padding: 0 8px;
  }
}

/* ----------------------------------------------------
   HEADER, NAVIGATION & CTA
----------------------------------------------------- */
header {
  background: var(--white);
  box-shadow: 0 1px 12px 0 rgba(33,64,107,0.06);
  position: sticky;
  top: 0;
  z-index: 200;
}
header > .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 80px;
  padding-top: 12px;
  padding-bottom: 12px;
}
header nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  color: var(--primary);
  font-size: 1rem;
  transition: color 0.18s;
  padding: 7px 0;
  border-bottom: 2px solid transparent;
}
header nav a:hover, header nav a:focus {
  color: var(--accent);
  border-bottom: 2px solid var(--accent);
}
.cta-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.07rem;
  color: var(--primary);
  background: var(--accent);
  border-radius: var(--radius-md);
  box-shadow: 0 1px 4px 0 rgba(33,64,107,0.09);
  padding: 11px 32px 11px 32px;
  margin-left: 18px;
  border: 2px solid var(--accent);
  transition: var(--transition);
  letter-spacing: 0.03em;
  text-shadow: 0 1px 2px rgba(255,255,255,0.20);
  position: relative;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--primary);
  color: var(--accent);
  border-color: var(--primary);
  text-shadow: none;
  box-shadow: 0 4px 16px 0 rgba(33,64,107,0.18);
}

/* ----------------------------------------------------
   HERO SECTION
----------------------------------------------------- */
.hero {
  background: linear-gradient(123deg, var(--primary) 70%, var(--secondary) 100%);
  color: var(--white);
  padding: 56px 0 60px 0;
  margin-bottom: 0;
  position: relative;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
  color: var(--white);
}
.hero h1 {
  color: var(--accent);
  font-size: 2.8rem;
  text-shadow: 0 2px 14px rgba(33,64,107,0.16);
}
.hero p {
  font-size: 1.25rem;
  color: var(--white);
  max-width: 540px;
  margin-bottom: 10px;
}
.hero .cta-btn {
  margin-top: 18px;
  font-size: 1.18rem;
  box-shadow: 0 4px 24px 0 rgba(33,64,107,0.11);
}
@media(max-width: 768px) {
  .hero {
    padding: 28px 0 36px 0;
  }
  .hero .content-wrapper {
    gap: 12px;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .hero p {
    font-size: 1rem;
  }
}

/* ----------------------------------------------------
   FLEXBOX LAYOUTS & STRUCTURE
----------------------------------------------------- */
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 20px;
  justify-content: space-between;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--white);
  box-shadow: 0 2px 16px 0 rgba(33,64,107,0.08);
  border-radius: var(--radius-md);
  padding: 22px 20px;
  transition: box-shadow 0.18s, transform 0.18s;
  min-width: 210px;
  flex: 1 1 260px;
  border: 1px solid var(--accent);
  position: relative;
}
.feature-item img {
  width: 40px;
  height: 40px;
}
.feature-item h3 {
  font-size: 1.18rem;
}
.feature-item:hover {
  box-shadow: 0 6px 28px 0 rgba(33,64,107,0.19);
  transform: translateY(-4px) scale(1.03);
  border-color: var(--primary-80);
  z-index: 1;
}

@media(max-width: 1000px) {
  .features-grid {
    gap: 20px;
  }
  .feature-item {
    min-width: 160px;
    flex: 1 1 180px;
    padding: 16px 10px;
  }
}
@media(max-width: 768px) {
  .features-grid {
    flex-direction: column;
    gap: 18px;
  }
  .feature-item {
    width: 100%;
    min-width: 0;
    border-radius: var(--radius-sm);
  }
}

/* Testimonials */
.testimonial-row {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 28px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 24px 0 rgba(33,64,107,0.09);
  margin-bottom: 20px;
  flex: 1 1 300px;
  min-width: 240px;
  border-left: 4px solid var(--accent);
  color: var(--primary);
  font-size: 1.07rem;
  transition: box-shadow 0.17s, transform 0.17s;
}
.testimonial-card p {
  color: var(--primary-80);
  font-weight: 500;
}
.testimonial-card .testimonial-meta {
  margin-top: 4px;
  color: var(--text);
  font-size: 0.99rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.testimonial-card:hover, .testimonial-card:focus {
  box-shadow: 0 8px 32px 0 rgba(33,64,107,0.19);
  transform: translateY(-4px) scale(1.025);
  border-color: var(--primary);
}
@media(max-width: 850px) {
  .testimonial-row {
    flex-direction: column;
    gap: 20px;
  }
  .testimonial-card {
    width: 100%;
    min-width: 0;
    border-radius: var(--radius-md);
  }
}

/* Pricing Table */
.pricing-table {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 20px;
}
.plan {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 24px 0 rgba(33,64,107,0.08);
  border: 1.5px solid var(--gray);
  flex: 1 1 280px;
  margin-bottom: 20px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  min-width: 200px;
  position: relative;
  transition: box-shadow 0.2s, border 0.2s, transform 0.18s;
}
.plan h2 {
  color: var(--primary);
  font-size: 1.37rem;
  letter-spacing: 0.02em;
}
.plan strong {
  color: var(--accent);
  font-size: 1.5rem;
  font-weight: 700;
}
.plan:hover {
  border-color: var(--accent);
  box-shadow: 0 10px 40px 0 rgba(33,64,107,0.18);
  transform: translateY(-4px) scale(1.025);
  z-index: 1;
}
@media(max-width: 1100px) {
  .pricing-table {
    gap: 18px;
  }
}
@media(max-width: 900px) {
  .pricing-table {
    flex-direction: column;
    gap: 18px;
  }
  .plan {
    width: 100%;
    min-width: 0;
    border-radius: var(--radius-md);
    padding: 20px 12px;
  }
}

/* FAQ Section */
.faq-section {
  width: 100%;
  margin-bottom: 20px;
}
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: 0 2px 12px 0 rgba(33,64,107,0.06);
  margin-bottom: 10px;
  padding: 18px 16px;
  transition: box-shadow 0.15s;
  border-left: 4px solid var(--accent);
}
.faq-item h3 {
  margin-bottom: 7px;
  color: var(--primary-80);
  font-size: 1.12rem;
  cursor: pointer;
}
.faq-item p {
  color: var(--text);
}
.faq-item:hover {
  box-shadow: 0 7px 24px 0 rgba(33,64,107,0.10);
}

/* -----------------------------------------------------------------
   Responsive Utility Classes for Text-Image Sections & Layouts
----------------------------------------------------------------- */
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
@media(max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  margin-bottom: 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 16px 0 rgba(33,64,107,0.10);
  margin-bottom: 20px;
  position: relative;
  padding: 24px 20px;
  transition: box-shadow 0.15s, transform 0.13s;
}
.card:hover {
  box-shadow: 0 8px 28px 0 rgba(33,64,107,0.14);
  transform: translateY(-2px) scale(1.01);
}

/* -----------------------------------------------------------------
   TEXT & LIST STYLES
----------------------------------------------------------------- */
.text-section {
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.text-section ul, .text-section ol {
  padding-left: 18px;
  margin-bottom: 10px;
  color: var(--primary-80);
}
.text-section li {
  margin-bottom: 8px;
}

/* -----------------------------------------------------------------
   FOOTER STYLES
----------------------------------------------------------------- */
footer {
  background: var(--primary);
  color: var(--white);
  padding: 40px 0 0 0;
  margin-top: 60px;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  padding-top: 10px;
  padding-bottom: 24px;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 10px;
}
footer nav a {
  color: var(--accent);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.16s;
}
footer nav a:hover, footer nav a:focus {
  color: var(--white);
  text-decoration: underline;
}
footer address {
  color: var(--white);
  font-style: normal;
  font-size: 1rem;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  flex-direction: column;
  margin-bottom: 4px;
}
footer address img {
  display: inline;
  width: 18px;
  height: 18px;
  margin-right: 4px;
  vertical-align: middle;
}
footer p {
  color: #e2e8ec;
  font-size: 0.95rem;
}
@media(max-width: 768px) {
  footer .container {
    padding: 16px 8px 30px 8px;
    gap: 12px;
  }
  footer nav {
    gap: 8px;
  }
}

/* -----------------------------------------------------------------
   CONTACT / MAP / DETAILS
----------------------------------------------------------------- */
.contact-details {
  display: flex;
  flex-direction: row;
  gap: 32px;
  align-items: flex-start;
  flex-wrap: wrap;
}
.contact-details ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact-details li {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 1.05rem;
}
.contact-details img {
  width: 24px;
  height: 24px;
}
.map-embed {
  margin-top: 12px;
  color: var(--primary-80);
}
@media(max-width: 900px) {
  .contact-details {
    flex-direction: column;
    gap: 16px;
  }
}

/* -----------------------------------------------------------------
   MOBILE NAV MENU - HAMBURGER (☰)
----------------------------------------------------------------- */
.mobile-menu-toggle {
  display: none;
  background: var(--accent);
  color: var(--primary);
  border-radius: var(--radius-md);
  padding: 10px 17px;
  font-size: 2rem;
  border: 2px solid var(--accent);
  position: relative;
  margin-left: auto;
  margin-right: 8px;
  z-index: 210;
  transition: background 0.17s, color 0.18s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--primary);
  color: var(--accent);
  border-color: var(--primary);
}
@media(max-width: 940px) {
  header nav, .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: fixed;
  top: 0;
  right: 0;
  width: 88vw;
  max-width: 350px;
  height: 100vh;
  background: var(--white);
  box-shadow: -6px 0 34px 0 rgba(33,64,107,0.20);
  z-index: 500;
  transform: translateX(105%);
  opacity: 0;
  transition: transform 0.36s cubic-bezier(.38,.08,.75,1.06), opacity 0.29s cubic-bezier(.38,.08,.75,1.06);
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  background: var(--accent);
  color: var(--primary);
  font-size: 2rem;
  border-radius: 28px;
  padding: 7px 13px;
  margin: 24px 16px 6px 0;
  align-self: flex-end;
  border: 2px solid var(--accent);
  transition: background 0.13s, color 0.13s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--primary);
  color: var(--accent);
  border-color: var(--primary);
}
.mobile-nav {
  padding: 16px 26px 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}
.mobile-nav a {
  color: var(--primary);
  font-size: 1.15rem;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 11px 0;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-bottom: 2px solid transparent;
  transition: color 0.16s, border-color 0.16s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--accent);
  border-bottom: 2px solid var(--accent);
}

/* Overlay for when mobile menu is open */
body.menu-open {
  overflow-y: hidden;
}

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

/* -----------------------------------------------------------------
   COOKIE CONSENT BANNER & MODAL
----------------------------------------------------------------- */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: var(--white);
  color: var(--primary);
  border-top: 2px solid var(--accent);
  box-shadow: 0 -2px 22px 0 rgba(33,64,107,0.13);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 17px 12px 17px 12px;
  z-index: 1200;
  gap: 18px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
  transition: opacity 0.18s, transform 0.32s cubic-bezier(.42,.02,.75,1.1);
}
.cookie-banner.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.cookie-banner p {
  font-size: 1rem;
  color: var(--primary-80);
  max-width: 600px;
  text-align: center;
}
.cookie-banner .cookie-btns {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-top: 6px;
  flex-wrap: wrap;
}
.cookie-banner button {
  border: none;
  border-radius: var(--radius-md);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 11px 28px;
  transition: background 0.18s, color 0.16s, box-shadow 0.13s;
  box-shadow: 0 1px 4px 0 rgba(33,64,107,0.06);
}
.cookie-banner .btn-accept {
  background: var(--accent);
  color: var(--primary);
  border: 2px solid var(--accent);
}
.cookie-banner .btn-accept:hover, .cookie-banner .btn-accept:focus {
  background: var(--primary);
  color: var(--accent);
  border-color: var(--primary);
}
.cookie-banner .btn-reject {
  background: #fff8d1;
  color: var(--primary-80);
  border: 2px solid #ffe477;
}
.cookie-banner .btn-reject:hover, .cookie-banner .btn-reject:focus {
  background: var(--primary-80);
  color: var(--accent);
  border-color: var(--primary-80);
}
.cookie-banner .btn-settings {
  background: var(--primary-80);
  color: var(--accent);
  border: 2px solid var(--primary-80);
}
.cookie-banner .btn-settings:hover, .cookie-banner .btn-settings:focus {
  background: var(--accent);
  color: var(--primary);
  border-color: var(--accent);
}

/* Cookie Modal (hidden by default) */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  z-index: 1220;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(33, 64, 107, 0.25);
  justify-content: center;
  align-items: center;
  transition: background 0.22s;
}
.cookie-modal-overlay.active {
  display: flex;
}
.cookie-modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 40px 0 rgba(33,64,107,0.25);
  padding: 32px 32px 24px 32px;
  max-width: 410px;
  width: 95vw;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: cookie-modal-in 0.32s cubic-bezier(.36,.1,.7,1.21);
  position: relative;
}
@keyframes cookie-modal-in {
  0% { opacity: 0; transform: scale(0.92) translateY(80px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}
.cookie-modal h2 {
  color: var(--primary);
  font-size: 1.32rem;
  margin-bottom: 8px;
}
.cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.07rem;
}
.cookie-category input[type="checkbox"] {
  accent-color: var(--primary-80);
  width: 20px; height: 20px;
}
.cookie-category .always {
  color: var(--secondary);
  font-weight: 600;
  margin-left: 6px;
  font-size: 0.94rem;
}
.cookie-modal .cookie-modal-btns {
  margin-top: 10px;
  display: flex;
  flex-direction: row;
  gap: 15px;
}
.cookie-modal .modal-close {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--accent);
  border-radius: 30px;
  color: var(--primary-80);
  font-size: 1.4rem;
  border: 2px solid var(--accent);
  padding: 4px 12px;
  transition: background 0.13s, color 0.14s;
}
.cookie-modal .modal-close:hover, .cookie-modal .modal-close:focus {
  background: var(--primary-80);
  color: var(--accent);
  border-color: var(--primary-80);
}

/* ----------------------------------------------------
   MISC: UTILITY, ANIMATION, ETC
----------------------------------------------------- */
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media(max-width: 600px) {
  .section {
    padding: 10px 2px;
  }
  .cookie-modal {
    padding: 18px 6px 12px 6px;
  }
}

/* Subtle hover animations for links and all buttons */
a, button, .cta-btn {
  transition: color 0.19s, background 0.16s, box-shadow 0.15s, border-color 0.16s;
}

/* Style for icons within lists and details */
ul li img, ol li img {
  width: 20px;
  height: 20px;
  vertical-align: middle;
  margin-right: 4px;
}

/* Accessibility: high contrast for testimonials/reviews, always dark text on white bg */
.testimonial-card, .faq-item, .feature-item, .plan {
  background: var(--white) !important;
  color: var(--primary) !important;
}

/* ----------------------------------------------------
   EXTRAS: THANK YOU, SUCCESS, EMPTY STATES
----------------------------------------------------- */
.thank-you {
  text-align: center;
  min-height: 400px;
  padding-top: 80px;
}
.thank-you .cta-btn {
  margin-top: 32px;
}

/* ----------------------------------------------------
   END
----------------------------------------------------- */
