/* =============================================
   Flicker Movement Autoexperten – Luxury Premium CSS
   ============================================= */

/* ---------------------------------------------
   0. 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: inherit; vertical-align: baseline;
  box-sizing: border-box;
}
html { box-sizing: border-box; scroll-behavior: smooth; }
*, *:before, *:after { box-sizing: inherit; }
body { line-height: 1.5; font-family: 'Open Sans', Arial, sans-serif; font-size: 16px; background-color: #f7f7f9; color: #171a1c; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; margin:0; padding:0; }
a { color: inherit; text-decoration: none; transition: color .2s; }
button { background: none; border: none; font: inherit; cursor: pointer; }
input, button, select, textarea { font-family: inherit; }
:focus { outline: 2px solid #db9b22; outline-offset: 2px; }

/* Webfonts */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,600,400&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600,700&display=swap');

/* ---------------------------------------------
   1. Color Variables & Brand Styles
--------------------------------------------- */
:root {
  --color-primary: #19396b;
  --color-secondary: #e5e6ea;
  --color-accent: #db9b22;
  --color-bg: #f7f7f9;
  --color-bg-dark: #1a232e;
  --color-card: #fff;
  --color-text: #18181b;
  --color-text-light: #f7f7f9;
  --color-gold: #db9b22;
  --shadow-lux: 0 2px 16px 0 rgba(25, 47, 107, 0.08); /* subtle for luxury */
  --radius-main: 16px;
  --radius-btn: 24px;
  --transition: 0.25s cubic-bezier(0.4,0,0.2,1);
  --font-display: 'Montserrat', Arial, sans-serif;
  --font-body: 'Open Sans', Arial, sans-serif;
}

body {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--color-primary);
  font-weight: 700;
  letter-spacing: 0.01em;
  margin-bottom: 18px;
}
h1 { font-size: 2.5rem; line-height: 1.15; }
h2 { font-size: 2rem; line-height: 1.2; }
h3 { font-size: 1.35rem; line-height: 1.3; }
h4 { font-size: 1.1rem; }

@media (max-width: 768px) {
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.2rem; }
  h3 { font-size: 1rem; }
}

p, li, span, a{
  font-size: 1rem;
  color: var(--color-text);
}
p {
  margin-bottom: 14px;
}

strong { color: var(--color-primary); font-weight: 700; }

/* ---------------------------------------------
   2. Layout Containers
--------------------------------------------- */
.container {
  width: 100%;
  max-width: 1120px;
  padding-left: 20px;
  padding-right: 20px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0; /* Individual sections will have their gaps*/
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

@media (min-width: 900px) {
  .container { padding-left: 32px; padding-right: 32px; }
  .content-wrapper { gap: 32px; }
}

.section, section:not(.hero):not(.about-hero):not(.cta), .team-section {
  margin-bottom: 60px !important;
  padding: 40px 20px;
  background: none;
}

/* Custom hero & premium section backgrounds */
.hero, .about-hero {
  padding: 60px 0 40px 0;
  background: linear-gradient(90deg, #fff 65%, #f7f7f9 100%);
}

@media (max-width: 900px) {
  .hero, .about-hero { padding: 40px 0 25px 0; }
}

.cta {
  padding-top: 42px;
  padding-bottom: 42px;
  margin-bottom: 0 !important;
  background: linear-gradient(90deg, #19396b 60%, #fff 120%);
}

.cta .container {
  align-items: center;
}

.cta h2, .cta p{
  color: #fff;
}

.about-hero, .thank-you, .legal {
  background: #fff;
  border-radius: var(--radius-main);
  box-shadow: var(--shadow-lux);
  margin-bottom: 60px;
}

/* ---------------------------------------------
   3. Spacing Flex Patterns (MANDATORY)
--------------------------------------------- */
.card-container { 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; }

/* Extra class mappings from HTML structure */
.feature-grid, .feature-icons, .feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

@media (min-width: 800px) {
  .feature-grid, .feature-icons, .feature-list {
    flex-direction: row;
    align-items: stretch;
    justify-content: start;
    gap: 32px;
  }
  .service-list {
    flex-direction: row;
    gap: 36px;
  }
}

/* ---------------------------------------------
   4. Header, Navigation, and Logo
--------------------------------------------- */
header {
  background: #fff;
  box-shadow: 0 2px 10px 0 rgba(25,57,107, 0.04);
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 50;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo img {
  height: 52px;
  width: auto;
}

.main-nav {
  display: flex;
  gap: 20px;
  align-items: center;
}
.main-nav a {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--color-primary);
  font-size: 1.05rem;
  position: relative;
  padding: 6px 0;
  transition: color var(--transition);
}
.main-nav a:hover,
.main-nav a.active {
  color: var(--color-gold);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 130px;
  padding: 0.65em 2em;
  font-family: var(--font-display);
  font-size: 1.09rem;
  font-weight: 700;
  border-radius: var(--radius-btn);
  border: none;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition), border-color var(--transition), transform var(--transition);
  box-shadow: 0 1px 8px 0 rgba(31,30,34, 0.04);
}
.btn-primary {
  background: var(--color-gold);
  color: #fff !important;
  border: 2px solid var(--color-gold);
}
.btn-primary:hover, .btn-primary:focus {
  background-color: #b07c13;
  border-color: #b07c13;
  color: #fff;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 4px 18px 0 rgba(219,155,34, 0.14);
}

/* ---------------------------------------------
   5. Mobile Burger Menu
--------------------------------------------- */
.mobile-menu-toggle {
  display: none;
  background: #fff;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--color-primary);
  z-index: 120;
  margin-left: 12px;
  transition: background var(--transition), color var(--transition);
}
.mobile-menu-toggle:active, .mobile-menu-toggle:focus {
  background: var(--color-accent);
  color: #fff;
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(24, 24, 27, 0.96);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(.77,0,.18,1);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: all;
  opacity: 1;
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 18px 26px 10px 0;
  font-size: 2rem;
  color: var(--color-gold);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: color var(--transition);
}
.mobile-menu-close:focus,
.mobile-menu-close:hover { color: #fff; }

.mobile-nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 32px 40px 16px 36px;
  gap: 24px;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.38rem;
  color: #fff;
  font-weight: 600;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  width: 100%;
  transition: color var(--transition), background var(--transition);
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  color: var(--color-gold);
  background: rgba(255, 255, 255, 0.05);
}

@media (max-width: 1100px) {
  .main-nav {
    gap: 12px; font-size: 1rem;
  }
}
@media (max-width: 900px) {
  .main-nav { gap: 4px; }
  .btn { min-width: 0; padding: 0.55em 1.3em; font-size: 1rem; }
}
@media (max-width: 768px) {
  .main-nav, header .btn {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex;
    position: absolute;
    right: 20px;
    top: 18px;
  }
  header .container {
    flex-direction: row;
    gap: 10px;
    align-items: center;
  }
  .logo img {
    height: 40px;
  }
}

/* ---------------------------------------------
   6. Hero, About, Thank-You & Legal Sections
--------------------------------------------- */
.hero, .about-hero, .thank-you, .legal {
  border-radius: var(--radius-main);
  box-shadow: var(--shadow-lux);
  background: #fff;
}
.hero .content-wrapper,
.about-hero .content-wrapper,
.thank-you .content-wrapper,
.legal .content-wrapper {
  align-items: flex-start;
  gap: 18px;
}
@media (max-width: 768px) {
  .hero, .about-hero, .thank-you, .legal {
    padding: 28px 8px;
  }
}

/* ---------------------------------------------
   7. Features & Services 
--------------------------------------------- */
.features .container > h2, .leistungen > .container > h2, .benefits > .container > h2, .services > .container > h2 {
  margin-bottom: 32px;
}
.feature, .service {
  background: var(--color-card);
  border-radius: var(--radius-main);
  box-shadow: var(--shadow-lux);
  padding: 28px 24px 20px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  min-width: 234px;
  max-width: 340px;
  position: relative;
  border-bottom: 3px solid transparent;
  margin-bottom: 20px;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}
.feature img, .service img {
  height: 44px;
  width: 44px;
  margin-bottom: 13px;
  filter: drop-shadow(0 2px 6px rgba(219, 155, 34, .09));
}
.feature h3, .service h3 {
  margin: 0 0 6px 0;
  color: var(--color-primary);
  font-size: 1.14rem;
  font-weight: 600;
}
.feature p, .service p {
  color: #393950;
  font-size: 1rem;
}
.feature:hover, .service:hover {
  box-shadow: 0 8px 40px 0 rgba(219,155,34, 0.12), 0 0 0 2px var(--color-gold);
  transform: translateY(-4px) scale(1.03);
  border-bottom: 3px solid var(--color-gold);
  z-index: 1;
}

@media (max-width: 768px) {
  .feature, .service {
    min-width: unset;
    width: 100%;
    margin-bottom: 18px;
    padding: 18px 12px 14px 12px;
  }
}

/* Price Cards and Service Price */
.price-card {
  background: #fff;
  color: var(--color-gold);
  border: 2px solid var(--color-gold);
  border-radius: var(--radius-main);
  box-shadow: var(--shadow-lux);
  padding: 30px 44px;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  text-align: center;
  margin: 18px 0 0 0;
  align-self: flex-start;
  transition: box-shadow var(--transition), background var(--transition);
}
.price-card strong { font-size: 2rem; color: var(--color-accent); }
.price-card:hover {
  background: var(--color-secondary);
  box-shadow: 0 6px 20px 0 rgba(219,155,34,0.10);
}
.service-price {
  color: var(--color-gold);
  font-size: 1.07rem;
  font-weight: 600;
}

/* ---------------------------------------------
   8. Steps Lists (ol type)
--------------------------------------------- */
ol.service-steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
ol.service-steps li {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  border-left: 3px solid var(--color-gold);
  margin-left: 6px;
  background: #fbfbfb;
  border-radius: 12px;
  padding: 20px 18px;
  gap: 4px;
}
ol.service-steps h3 {
  color: var(--color-primary);
  font-size: 1.1rem;
  margin-bottom: 3px;
  font-weight: 600;
}
ol.service-steps p {
  margin-bottom: 0;
  color: #393950;
}

@media (min-width: 900px) {
  ol.service-steps {
    flex-direction: row;
    gap: 36px;
  }
  ol.service-steps li {
    min-width: 210px;
    flex: 1 0 190px;
  }
}
@media (max-width: 700px) {
  ol.service-steps li {
    padding: 12px 9px;
    min-width: unset;
  }
}

/* ---------------------------------------------
   9. Testimonials
--------------------------------------------- */
.testimonials .content-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
}
.testimonial-card {
  background: #fff;
  padding: 28px;
  border-radius: var(--radius-main);
  box-shadow: 0 2px 16px 0 rgba(25,57,107,0.07);
  min-width: 260px;
  max-width: 430px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  border-left: 4px solid var(--color-gold);
  color: #191a1e;
  font-size: 1.1rem;
  margin-bottom: 20px;
  transition: box-shadow var(--transition), border-left-color var(--transition);
}
.testimonial-card p {
  color: #17181b;
  margin-bottom: 0;
  line-height: 1.7;
}
.testimonial-card span {
  font-size: 1rem;
  color: #64748b;
  font-style: italic;
  margin-top: 6px;
}
.testimonial-card strong {
  color: var(--color-gold);
  font-weight: 700;
}
.testimonial-card:hover {
  box-shadow: 0 12px 40px 0 rgba(219,155,34,0.13);
  border-left-color: #b07c13;
}

@media (max-width: 900px) {
  .testimonials .content-wrapper {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .testimonial-card {
    max-width: 100%;
    min-width: unset;
    padding: 18px 11px;
  }
}

/* ---------------------------------------------
   10. Footer
--------------------------------------------- */
footer {
  background: #f0f1f6;
  border-top: 1px solid #e5e6ea;
  margin-top: 70px;
  padding: 36px 0 12px 0;
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
}
.footer-logo img {
  height: 60px;
  filter: grayscale(0.46) brightness(1.05);
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-nav a {
  color: var(--color-primary);
  font-family: var(--font-display);
  font-weight: 600;
  transition: color var(--transition);
  font-size: 1rem;
}
.footer-nav a:hover { color: var(--color-gold); }

.footer-contact {
  color: #66687a;
  font-size: 1rem;
}
.footer-contact a {
  color: var(--color-primary);
  text-decoration: underline;
  transition: color var(--transition);
}
.footer-contact a:hover { color: var(--color-gold); }

@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .footer-logo img { height: 42px; }
}

/* ---------------------------------------------
   11. Responsive/Special Sections
--------------------------------------------- */
.team-section .content-wrapper {
  max-width: 750px;
}
.text-section {
  font-size: 1.07rem;
  color: #2d3148;
}
.contact .content-wrapper {
  gap: 8px;
}

@media (max-width: 768px) {
  .section, section:not(.hero):not(.about-hero):not(.cta), .team-section {
    padding: 24px 0 !important;
    margin-bottom: 38px !important;
  }
  .price-card { font-size: 1.01rem; padding: 16px 14px; }
}

@media (max-width: 600px) {
  .footer-contact, .footer-logo, .footer-nav {
    font-size: 0.97rem;
  }
}

/* ---------------------------------------------
   12. Cookie Consent Banner & Modal
--------------------------------------------- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 9999;
  background: rgba(255,255,255,0.97);
  box-shadow: 0 -3px 24px rgba(25,57,107,0.12);
  padding: 24px 20px 20px 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: transform var(--transition), opacity var(--transition);
}
.cookie-banner.hide {
  transform: translateY(110%);
  opacity: 0;
}
.cookie-banner.show {
  transform: translateY(0);
  opacity: 1;
}
.cookie-banner .cookie-message {
  flex: 1 1 0%;
  color: #282c36;
  font-size: 1rem;
  margin-right: 8px;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
}
.cookie-btn {
  padding: 0.55em 1.5em;
  border-radius: var(--radius-btn);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  margin-right: 2px;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
}
.cookie-btn.accept {
  background: var(--color-gold);
  color: #fff;
  border: 1.5px solid var(--color-gold);
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #b07c13;
}
.cookie-btn.reject {
  background: #fff;
  color: var(--color-primary);
  border: 1.5px solid var(--color-primary);
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: var(--color-primary);
  color: #fff;
}
.cookie-btn.settings {
  background: #fff7e7;
  color: var(--color-gold);
  border: 1.5px solid var(--color-gold);
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: var(--color-gold);
  color: #fff;
}
@media (max-width: 700px) {
  .cookie-banner { flex-direction: column; align-items: flex-start; gap: 20px; padding: 16px 9px 14px 9px; }
  .cookie-banner .cookie-actions { width: 100%; flex-direction: row; gap: 8px; display: flex; }
}

/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed;
  z-index: 10100;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(31,34,36, 0.72);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.cookie-modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal {
  background: #fff;
  border-radius: var(--radius-main);
  box-shadow: 0 8px 40px rgba(25,57,107,0.17);
  max-width: 440px;
  width: 96vw;
  padding: 32px 28px 20px 28px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  animation: fadeInModal 0.35s cubic-bezier(.77,0,.18,1);
  font-family: var(--font-body);
  font-size: 1rem;
}
@keyframes fadeInModal { from { transform: scale(.95); opacity: 0; } to { transform: scale(1); opacity: 1;} }
.cookie-modal h2 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--color-primary);
  margin-bottom: 0;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  font-size: 1.04rem;
  margin-bottom: 10px;
}
.cookie-toggle {
  min-width: 46px;
  height: 22px;
  border-radius: 16px;
  background: #eee;
  position: relative;
  cursor: pointer;
  border: 1.5px solid #dadada;
  transition: background var(--transition), border-color var(--transition);
  margin-left: 18px;
}
.cookie-toggle input[type='checkbox'] {
  display: none;
}
.cookie-toggle .slider {
  position: absolute;
  left: 2px; top: 2px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: #bababa;
  transition: left var(--transition), background var(--transition);
  z-index: 2;
}
.cookie-toggle input[type='checkbox']:checked + .slider {
  left: 26px;
  background: var(--color-gold);
}
.cookie-toggle.disabled,
.cookie-toggle[aria-disabled='true'] {
  background: #f2f2f2;
  border-color: #e5e5e5;
  cursor: not-allowed;
}
.cookie-toggle.disabled .slider { background: #ccc; }
.cookie-modal-actions {
  display: flex; flex-direction: row; gap: 14px; margin-top: 10px; }
.cookie-modal-close {
  background: transparent;
  border: none;
  color: var(--color-primary);
  font-size: 1.4rem;
  align-self: flex-end;
  margin-top: -15px;
  margin-bottom: 6px;
  margin-right: -2px;
  cursor: pointer;
  transition: color var(--transition);
}
.cookie-modal-close:hover{ color: var(--color-gold); }

/* ---------------------------------------------
   13. Misc and Utilities
--------------------------------------------- */
.section:not(.cta):not(.hero):not(.about-hero) {
  background: #fff;
  border-radius: var(--radius-main);
  box-shadow: var(--shadow-lux);
  padding-top: 48px;
  padding-bottom: 48px;
}
a:hover, a:focus { color: var(--color-gold); }

::-webkit-scrollbar-thumb { background: #db9b22; border-radius: 8px; }
::-webkit-scrollbar { width: 8px; background: #e5e6ea; }

/* Decorative Gold Accents Lines */
hr, .gold-line {
  border: none;
  height: 3px;
  background: var(--color-gold);
  border-radius: 2px;
  opacity: 0.14;
  margin: 18px 0 22px 0;
}
.gold-line { max-width: 128px; }

/* Card Initials for testimonials if needed */
.card-initial {
  width: 38px; height: 38px;
  background: var(--color-gold);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.10rem; display: flex; align-items: center; justify-content: center;
  border-radius: 50%; margin-right: 13px;
  box-shadow: 0 2px 10px rgba(219,155,34,.14);
}

/* Utility spacing */
.mt-2{ margin-top: 20px; }
.mt-4{ margin-top: 40px; }
.mb-2{ margin-bottom: 20px; }
.mb-4{ margin-bottom: 40px; }
.gap-2{ gap: 20px; }
.gap-1{ gap: 10px; }

/* Shadows & Effects for luxury touch */
.lux-shadow { box-shadow: 0 8px 36px 0 rgba(219,155,34, 0.11); }

/* Responsive Flex Fixes */
@media (max-width: 900px) {
  .content-wrapper, .feature-grid, .feature-icons, .content-grid, .card-container {
    flex-direction: column;
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
  .features .container > h2,
  .leistungen > .container > h2,
  .benefits > .container > h2,
  .services > .container > h2 {
    margin-bottom: 16px;
  }
}

/* No CSS Grid or Columns are used in this file. */
