/* 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,
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;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  line-height: 1.6;
  background: #F6F7F9;
  color: #2C3E50;
  font-family: 'Roboto', Arial, sans-serif;
  min-height: 100vh;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: #2C3E50;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #E67E22;
}
ul, ol {
  margin-left: 1.5em;
  margin-bottom: 1em;
}
strong {
  font-weight: 700;
}
hr {
  border: 0;
  border-top: 1px solid #ececec;
  margin: 32px 0;
}

/* CONTAINERS & LAYOUTS */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 24px rgba(44,62,80,0.07);
}
.section:last-child {
  margin-bottom: 0;
}

/* TYPOGRAPHY (LUXURY SCALE) */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', 'Times New Roman', serif;
  color: #2C3E50;
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.4rem;
  margin-bottom: 18px;
}
h2 {
  font-size: 1.75rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  font-weight: 600;
}
h4 {
  font-size: 1.05rem;
  margin-bottom: 6px;
}
p, li, label, input, button {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #2C3E50;
}
@media (min-width: 576px) {
  h1 { font-size: 2.9rem; }
  h2 { font-size: 2.1rem; }
  h3 { font-size: 1.3rem; }
}
@media (min-width: 992px) {
  h1 { font-size: 3.2rem; }
  h2 { font-size: 2.4rem; }
}

/* GOLD ACCENT (Luxury) */
.gold {
  color: #B28D36;
}

/* BUTTONS & CTA */
.cta-primary, button, .newsletter-signup-form button  {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #B28D36;
  color: #fff;
  font-family: 'Playfair Display', 'Times New Roman', serif;
  font-size: 1.08rem;
  font-weight: 700;
  border: none;
  border-radius: 32px;
  box-shadow: 0 2px 10px rgba(44,62,80,0.07);
  padding: 13px 38px;
  margin-top: 12px;
  margin-bottom: 8px;
  letter-spacing: 0.02em;
  cursor: pointer;
  text-shadow: 0 1px 8px rgba(178,141,54,0.07);
  outline: none;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.cta-primary:hover, button:hover, .newsletter-signup-form button:hover {
  background: #E67E22;
  color: #fff;
  box-shadow: 0 4px 24px rgba(230,126,34,0.12);
}
.cta-primary:active, button:active {
  background: #2C3E50;
  color: #fff;
}
.cta-primary:focus, button:focus {
  outline: 2px solid #B28D36;
  outline-offset: 2px;
}

/* HEADER & MAIN NAVIGATION */
header {
  background: #fff;
  border-bottom: 1px solid #ede8da;
  box-shadow: 0 2px 16px rgba(44,62,80,0.08);
  position: relative;
  z-index: 20;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
  gap: 32px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.main-nav a {
  padding: 8px 0;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #2C3E50;
  font-weight: 500;
  border: none;
  border-bottom: 2px solid transparent;
  transition: color 0.18s, border 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
  color: #B28D36;
  border-bottom: 2px solid #B28D36;
}
.main-nav .cta-primary {
  margin-left: 28px;
  font-size: 1rem;
  background: #B28D36;
  color: #fff;
  padding: 10px 28px;
  border-radius: 28px;
  border: none;
  box-shadow: 0 2px 9px rgba(178,141,54,0.06);
}
.main-nav .cta-primary:hover {
  background: #E67E22;
}

/* MOBILE NAV */
.mobile-menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  font-size: 1.7rem;
  color: #B28D36;
  background: #fff;
  border: 2px solid #B28D36;
  border-radius: 50%;
  cursor: pointer;
  transition: background .2s;
  z-index: 100;
  margin-left: 16px;
}
.mobile-menu-toggle:hover {
  background: #B28D36;
  color: #fff;
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(44, 62, 80, 0.98);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 48px;
  padding-left: 30px;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(.77,.2,.05,1.0);
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 22px;
  right: 32px;
  background: none;
  border: none;
  font-size: 2.1rem;
  color: #fff;
  cursor: pointer;
  z-index: 1001;
  transition: color 0.15s;
}
.mobile-menu-close:hover {
  color: #B28D36;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  margin-top: 65px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  padding: 8px 3px;
  border-radius: 8px;
  transition: background 0.15s, color 0.15s;
  min-width: 190px;
}
.mobile-nav a:hover {
  background: #B28D36;
  color: #fff;
}

@media (min-width: 992px) {
  .mobile-menu-toggle,
  .mobile-menu {
    display: none !important;
  }
  .main-nav {
    display: flex !important;
  }
}
@media (max-width: 991px) {
  .main-nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: inline-flex !important;
  }
}

/* HERO SECTIONS */
.hero {
  background: linear-gradient(95deg, #fff 60%, #F6F7F9 100%);
  box-shadow: 0 12px 38px -18px rgba(178,141,54,.10);
  border-radius: 0 0 32px 32px;
  margin-bottom: 48px;
}
.hero .container {
  padding-top: 48px;
  padding-bottom: 48px;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  color: #B28D36;
  font-size: 2.2rem;
  margin-bottom: 12px;
  letter-spacing: 0.01em;
}
.hero p {
  font-size: 1.15rem;
  max-width: 600px;
  margin-bottom: 20px;
}

/* FEATURES, CARDS, TEXT-IMAGE SECTIONS */
.features .content-wrapper > ul,
.values ul,
.features ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  list-style: none;
}
.features ul li, .values ul li, .services ul li {
  display: flex;
  align-items: flex-start;
  gap: 17px;
  background: #fff;
  border-radius: 16px;
  padding: 20px 24px;
  box-shadow: 0 2px 14px rgba(44,62,80,0.07);
  color: #2C3E50;
  font-size: 1.1rem;
  min-width: 220px;
  flex: 1 1 260px;
}
.features ul li img, .values ul li img {
  width: 40px;
  height: 40px;
  margin-top: 3px;
}
.services-preview .offer-list,
.blog-preview-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.services-preview .offer-list > div, 
.blog-preview-cards > div {
  flex: 1 1 260px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(178,141,54,0.06);
  padding: 24px 20px 16px 20px;
  margin-bottom: 20px;
  font-size: 1.05rem;
  transition: box-shadow 0.25s, transform 0.15s;
  border: 1px solid #f4e5bc;
}
.services-preview .offer-list > div:hover,
.blog-preview-cards > div:hover {
  box-shadow: 0 5px 34px rgba(178,141,54,0.14);
  transform: translateY(-5px) scale(1.01);
}
@media (max-width: 768px) {
  .features ul,
  .values ul,
  .services-preview .offer-list,
  .blog-preview-cards,
  .content-grid {
    flex-direction: column;
    gap: 20px;
  }
  .hero .container { padding-top: 30px; padding-bottom: 30px; }
  .services-preview .offer-list > div, .blog-preview-cards > div { min-width: 0; width: 100%; }
}

/* CARD GRID / CARD CONTAINER PATTERNS */
.card-container,
.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}
.card {
  background: #fff;
  border-radius: 14px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(44,62,80,0.07);
  position: relative;
  flex: 1 1 260px;
  padding: 30px 20px;
  transition: box-shadow 0.16s, transform 0.12s;
  border: 1.5px solid #f8deb8;
}
.card:hover {
  box-shadow: 0 5px 22px rgba(178,141,54,0.16);
  transform: scale(1.01);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

/* TESTIMONIALS */
.testimonials {
  background: #f9f6ee;
  border-radius: 14px;
  padding: 40px 20px;
  margin-bottom: 60px;
}
.testimonials h2 {
  color: #B28D36;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 22px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(44,62,80,0.09);
  margin-bottom: 20px;
  flex-wrap: wrap;
  border-left: 5px solid #B28D36;
  position: relative;
}
.testimonial-card strong {
  color: #2C3E50;
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: 1.08rem;
}
.testimonial-card p {
  color: #212529;
  font-size: 1.01rem;
}
.star-rating {
  color: #B28D36;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.testimonial-card img {
  width: 21px;
  height: 21px;
}

@media (max-width: 540px) {
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 11px;
    font-size: 0.97rem;
  }
}

/* CTA SECTION */
.cta {
  text-align: center;
  padding: 40px 20px;
  background: #2C3E50;
  color: #fff;
  border-radius: 20px;
  box-shadow: 0 3px 36px rgba(44,62,80,0.12);
  margin-bottom: 60px;
}
.cta h2 {
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 18px;
}
.cta .cta-primary {
  background: #B28D36;
  color: #fff;
  border: none;
  margin-top: 8px;
  margin-bottom: 18px;
}
.cta .cta-primary:hover {
  background: #E67E22;
}
.cta .text-section {
  color: #fff;
  margin-top: 14px;
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta .text-section img {
  width: 20px;
  height: 20px;
  margin-right: 6px;
  display: inline-block;
  vertical-align: middle;
}

/* ABOUT/TEXT-IMAGE SECTION */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  margin-top: 8px;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
  }
}

/* TIMELINE (über uns) */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(44,62,80,0.07);
  padding: 20px 22px;
  margin: 18px 0 0 0;
  font-size: 1.06rem;
}
.timeline ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
  margin-bottom: 0;
}

/* FORMS (newsletter, search) */
form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.search-bar {
  flex-direction: row;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
input[type="search"],
input[type="email"] {
  font-size: 1rem;
  padding: 10px 16px;
  border: 1.5px solid #B28D36;
  border-radius: 8px;
  background: #fff;
  color: #2C3E50;
  transition: border .2s, box-shadow .2s;
}
input[type="search"]:focus,
input[type="email"]:focus {
  outline: none;
  border-color: #E67E22;
  box-shadow: 0 0 0 2px #f9e2c1;
}
.newsletter-signup-form {
  flex-direction: row;
  gap: 16px;
  align-items: center;
  justify-content: center;
  margin: 16px 0;
}
.newsletter-signup-form input {
  flex: 1 1 220px;
  min-width: 0;
  max-width: 300px;
}
.newsletter-signup-form button {
  font-size: 1rem;
  padding: 12px 30px;
  background: #B28D36;
  color: #fff;
  border-radius: 24px;
  border: none;
  box-shadow: 0 2px 9px rgba(178,141,54,0.05);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s;
}
.newsletter-signup-form button:hover { background: #E67E22; }

@media (max-width: 600px) {
  .newsletter-signup-form {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }
  .newsletter-signup-form input { width: 100%; max-width: unset; }
  .newsletter-signup-form button { width: 100%; }
}

/* BLOG - CATEGORY FILTERS */
.category-filters {
  display: flex;
  gap: 16px;
  align-items: center;
  margin: 10px 0 20px;
  font-size: 1rem;
  color: #B28D36;
  font-family: 'Playfair Display', serif;
}
.category-filters a {
  color: #B28D36;
  text-decoration: underline;
  padding: 2px 8px;
  border-radius: 6px;
  font-weight: 500;
  transition: background 0.16s, color 0.16s;
}
.category-filters a:hover {
  background: #B28D36;
  color: #fff;
}

/* STORYTELLING (Galerie) */
.storytelling {
  background: #fffce9;
  border-radius: 16px;
  box-shadow: 0 3px 18px rgba(178,141,54,0.07);
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* CONTACT / FAQ / SUPPORT LINKS */
.contact .text-section a,
.support-links a {
  color: #B28D36;
  text-decoration: underline;
  font-weight: 500;
  transition: color .12s;
}
.contact .text-section a:hover,
.support-links a:hover {
  color: #E67E22;
}
.social-links {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
  margin-top: 9px;
}
.social-links a img {
  width: 27px;
  height: 27px;
  transition: filter 0.16s, transform 0.2s;
  filter: grayscale(0.2) brightness(0.96);
}
.social-links a:hover img {
  filter: grayscale(0) brightness(1.1) drop-shadow(0 0 3px #B28D36CC);
  transform: scale(1.07);
}

/* FOOTER */
footer {
  background: #2C3E50;
  color: #fff;
  padding: 32px 0 0 0;
  font-size: 1rem;
  border-top: 4px solid #B28D36;
  margin-top: 48px;
}
.footer-nav {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 12px;
}
.footer-nav a {
  color: #fff;
  opacity: 0.9;
  font-weight: 400;
  padding: 7px 5px;
  transition: color 0.16s, opacity 0.16s;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 0.97rem;
}
.footer-nav a:hover {
  color: #B28D36;
  opacity: 1;
}
.footer-contact {
  text-align: center;
  font-size: 0.98rem;
  opacity: 0.85;
  padding: 4px 0 18px 0;
}

/* COOKIE CONSENT BANNER  */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1700;
  width: 100vw;
  background: #fffbe5;
  color: #2C3E50;
  box-shadow: 0 -2px 16px rgba(178,141,54,0.22), 0 -1px 7px #dacba7;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 18px 20px 16px 20px;
  font-size: 1.02rem;
  animation: slideUpBanner 0.45s cubic-bezier(.64,.14,.38,1.1);
}
@keyframes slideUpBanner {
  0% { transform: translateY(110%); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner button {
  margin: 0 6px;
  padding: 10px 25px;
  background: #B28D36;
  color: #fff;
  border: none;
  border-radius: 24px;
  font-size: 1rem;
  font-family: 'Playfair Display', serif;
  cursor: pointer;
  box-shadow: 0 1px 6px rgba(178,141,54,0.03);
  transition: background .16s;
}
.cookie-banner button:hover {
  background: #E67E22;
}
.cookie-banner .cookie-settings-btn {
  background: #2C3E50;
  color: #fff;
  border: 1.5px solid #B28D36;
}
.cookie-banner .cookie-settings-btn:hover {
  background: #B28D36;
}
@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    gap: 12px;
    padding: 17px 10px 13px 10px;
    font-size: 0.99rem;
    align-items: flex-start;
  }
}

/* COOKIE PRIVACY MODAL  */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(44,62,80,0.65);
  z-index: 1701;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInModal 0.34s cubic-bezier(.61,.3,.23,1.1);
}
@keyframes fadeInModal {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  border-radius: 14px;
  padding: 36px 28px 26px 28px;
  max-width: 370px;
  width: 97vw;
  box-shadow: 0 10px 36px rgba(44,62,80,0.23);
  color: #2C3E50;
  display: flex;
  flex-direction: column;
  gap: 16px;
  animation: modalScaleIn 0.25s cubic-bezier(.7,.3,.5,1.1);
}
@keyframes modalScaleIn {
  from { transform: scale(0.85); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.cookie-modal h2 {
  font-size: 1.35rem;
  color: #B28D36;
  margin-bottom: 12px;
  font-family: 'Playfair Display', serif;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1rem;
  margin-bottom: 10px;
}
.cookie-category input[type="checkbox"] {
  appearance: none;
  width: 24px;
  height: 24px;
  border: 2px solid #B28D36;
  border-radius: 50%;
  background: #fff;
  margin-right: 0;
  position: relative;
  cursor: pointer;
  transition: border 0.15s, box-shadow 0.15s;
}
.cookie-category input[type="checkbox"]:checked {
  background: #B28D36;
  border-color: #E67E22;
}
.cookie-category input[type="checkbox"]:checked:after {
  content: '';
  display: block;
  width: 12px;
  height: 12px;
  background: #fff;
  border-radius: 50%;
  margin: 4px auto;
}
.cookie-modal .btn-row {
  display: flex;
  flex-direction: row;
  gap: 14px;
  margin-top: 12px;
  justify-content: flex-end;
}
.cookie-modal .btn-row button {
  padding: 8px 18px;
  font-size: 0.97rem;
  border-radius: 18px;
}
.cookie-modal .close-btn {
  position: absolute;
  top: 12px;
  right: 18px;
  background: none;
  border: none;
  font-size: 1.23rem;
  color: #B28D36;
  cursor: pointer;
}

/* RESPONSIVE UTILS & FLEX PATTERNS */
.card-container, .card-grid, .offer-list, .content-grid, .blog-preview-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
}
.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: 768px) {
  .container {
    padding-left: 8px;
    padding-right: 8px;
  }
  .card-container,
  .offer-list,
  .content-grid,
  .blog-preview-cards {
    flex-direction: column;
    gap: 20px;
  }
}

/* ACCESSIBILITY - FOCUS STYLES */
a:focus, button:focus, input:focus, .cta-primary:focus {
  outline: 2px solid #B28D36;
  outline-offset: 2px;
}

/* ANIMATIONS */
.card, .blog-preview-cards > div, .services-preview .offer-list > div {
  transition: box-shadow .19s, transform .18s;
}
.card:hover, .blog-preview-cards > div:hover, .services-preview .offer-list > div:hover {
  box-shadow: 0 4px 30px rgba(44,62,80,0.09), 0 1.5px 9px #B28D36AA;
  transform: scale(1.012) translateY(-4px);
}
.cta-primary, button, input, .main-nav a, .mobile-nav a {
  transition: background 0.18s, color 0.18s, box-shadow 0.13s, border 0.16s;
}

/* THANK YOU PAGE */
.thank-you {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 3px 23px rgba(178,141,54,0.09);
  margin-bottom: 60px;
  padding: 46px 20px 38px 20px;
  text-align: center;
}
.thank-you .cta-primary {
  margin-top: 14px;
}

/* LEGAL PAGE STYLE */
.legal {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 14px rgba(44,62,80,0.07);
  padding: 40px 20px;
  margin-bottom: 60px;
}
.legal h1, .legal h2 {
  color: #B28D36;
}

/* MISC */
::-webkit-scrollbar {
  width: 12px;
  background: #f5ead6;
}
::-webkit-scrollbar-thumb {
  background: #dacba7;
  border-radius: 9px;
}

@media (max-width: 480px) {
  .section, .legal, .testimonials, .cta, .storytelling, .thank-you {
    padding: 24px 6px;
  }
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.15rem; }
}
  