/* Velvet Quest Soft Pastel Flexbox CSS
   Branding: Modern, stilvoll, inspirierend, naturnah
   Style: soft_pastel (zarte Pastellfarben, sanfte Typografie, gelassene Eleganz)
   Fonts: Montserrat (Display), Open Sans (Body)
*/
/* ====================
   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-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}
body {
  background: #FBFAF7;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  color: #2D2D2D;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  scroll-behavior: smooth;
}
article, aside, footer, header, nav, section, main {
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
ul, ol {
  list-style: none;
}
img {
  max-width: 100%;
  display: block;
  border: none;
  vertical-align: middle;
}
button {
  font-family: inherit;
  font-size: 1rem;
  border: none;
  background: none;
  cursor: pointer;
  outline: none;
}
input, textarea {
  font-family: inherit;
  font-size: 1rem;
}

/* ================
   Pastel Color Palette
   ================ */
:root {
  --primary: #264653;
  --primary-light: #426377;
  --secondary: #e9c46a;
  --secondary-light: #f8e6c1;
  --accent: #f4f4f4;
  --pastel-blue: #A8DADC;
  --pastel-mint: #B5E1D4;
  --pastel-lavender: #D5C8E9;
  --pastel-pink: #FACECE;
  --pastel-sand: #FFEEE5;
  --pastel-green: #D6EFD6;
  --pastel-yellow: #FFF9E2;
  --soft-shadow: 0 8px 20px 0 rgba(122, 133, 176, 0.08);
  --radius: 18px;
  --border-light: #ececec;
  --text-main: #2d2d2d;
  --text-muted: #6E727A;
  --text-invert: #fff;
  --font-display: 'Montserrat', Arial, sans-serif;
  --font-body: 'Open Sans', Arial, sans-serif;
  --transition: 0.25s cubic-bezier(.4,0,.2,1);
}

/* =========================
   Container & Layout Globals
   ========================= */
.container {
  max-width: 1152px;
  padding: 0 20px;
  margin: 0 auto;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}
@media (max-width: 768px) {
  .section {
    margin-bottom: 40px;
    padding: 28px 8px;
  }
  .container {
    padding: 0 5vw;
  }
}

/* =====================
   Typography
   ===================== */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--primary);
}
h1 {
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 2px;
  line-height: 1.18;
  margin-bottom: 16px;
}
h2 {
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 10px;
}
h3 {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.25;
}
h4 {
  font-size: 1.1rem;
}
p, li, span, .btn-primary, .btn-secondary { font-family: var(--font-body); }
p, li, span {
  font-size: 1rem;
  color: var(--text-main);
}
p {
  margin-bottom: 10px;
  font-weight: 400;
}
strong {
  font-weight: 700;
  color: var(--primary-light);
}
.text-muted {
  color: var(--text-muted);
}
.text-section {
  max-width: 760px;
  padding: 28px 0 0 0;
  background: transparent;
  border-radius: var(--radius);
}
/* Typography scale responsive adjustments */
@media (max-width: 520px) {
  h1 { font-size: 1.58rem; }
  h2 { font-size: 1.18rem; }
  h3 { font-size: 1.05rem; }
}

/* ===============
   Header / Nav
   =============== */
header {
  background: linear-gradient(90deg, #fff 0%, var(--pastel-blue) 100%);
  box-shadow: 0 2px 16px -4px rgba(43,60,97,.14);
  padding: 0;
}
header .container {
  min-height: 70px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  position: relative;
  z-index: 22;
}
header img {
  height: 46px;
  width: auto;
  border-radius: 8px;
  margin-right: 12px;
}
.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  margin-left: 18px;
}
.main-nav a {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--primary-light);
  opacity: 0.9;
  border-radius: 8px;
  padding: 6px 10px;
  transition: background var(--transition), color var(--transition);
}
.main-nav a:hover,
.main-nav a:focus {
  background: var(--pastel-blue);
  color: var(--primary);
  opacity: 1;
}
.btn-primary {
  background: var(--pastel-lavender);
  color: var(--primary);
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 1px;
  font-weight: 600;
  border-radius: var(--radius);
  padding: 12px 32px;
  margin-left: 24px;
  box-shadow: var(--soft-shadow);
  border: 2px solid var(--secondary-light);
  transition: background var(--transition), color var(--transition), box-shadow 0.18s;
  position: relative;
  z-index: 2;
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--pastel-blue);
  color: var(--primary-light);
  box-shadow: 0 8px 26px 2px rgba(100,90,180,0.06);
}
.btn-secondary {
  background: var(--pastel-pink);
  color: var(--primary);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius);
  padding: 12px 28px;
  border: 2px solid var(--pastel-mint);
  margin-top: 14px;
  box-shadow: var(--soft-shadow);
  transition: background var(--transition), color var(--transition), box-shadow 0.18s;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: var(--pastel-lavender);
  color: var(--primary-light);
  box-shadow: 0 8px 24px 2px rgba(100,90,180,0.08);
}

/* Hide main nav / CTAs on mobile */
@media (max-width: 990px) {
  .main-nav {
    display: none;
  }
  .btn-primary {
    display: none;
  }
}

/* ==============
   Mobile Menu
   ============== */
.mobile-menu-toggle {
  display: none;
  background: var(--pastel-blue);
  color: var(--primary);
  border-radius: 9px;
  font-size: 2rem;
  padding: 8px 14px;
  margin-left: 12px;
  z-index: 23;
  transition: background var(--transition);
  border: 2px solid var(--pastel-mint);
}
.mobile-menu-toggle:hover {
  background: var(--pastel-mint);
}
@media (max-width: 990px) {
  .mobile-menu-toggle {
    display: block;
  }
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(226, 240, 248, 0.94);
  box-shadow: 0 2px 24px 0 rgba(143,165,189,0.09);
  transform: translateX(-100%);
  transition: transform 0.38s cubic-bezier(.55,.17,.36,.98);
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  visibility: hidden;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  visibility: visible;
  opacity: 1;
  transition: transform 0.38s cubic-bezier(.55,.17,.36,.98), opacity 0.22s;
}
.mobile-menu-close {
  align-self: flex-end;
  background: var(--pastel-mint);
  color: var(--primary);
  font-size: 2.2rem;
  border-radius: 8px;
  padding: 6px 18px 8px 14px;
  border: 2px solid var(--pastel-lavender);
  margin: 22px 24px 10px 0;
  transition: background var(--transition);
  z-index: 101;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: var(--pastel-blue);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
  padding: 0 30px;
  margin-top: 16px;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.24rem;
  color: var(--primary-light);
  background: var(--accent);
  padding: 14px 18px;
  margin-bottom: 5px;
  border-radius: 10px;
  box-shadow: 0 2px 14px 0 rgba(145,170,200,0.09);
  text-align: left;
  transition: background var(--transition), color var(--transition);
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: var(--pastel-blue);
  color: var(--primary);
}

/* Body lock while menu open */
body.mobile-lock {
  overflow: hidden;
}

/* ===================
   HERO Section
   =================== */
.hero {
  background: linear-gradient(90deg, var(--pastel-blue) 0%, var(--pastel-pink) 100%);
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: 0 4px 22px 0 rgba(189, 195, 222, 0.11);
  min-height: 310px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 60px;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.hero .content-wrapper {
  align-items: center;
  text-align: center;
  gap: 18px;
  margin-top: 38px;
}
.hero h1 {
  color: var(--primary);
  text-shadow: 0 4px 26px rgba(140,148,220,0.09);
}
.hero p {
  color: var(--primary-light);
  font-size: 1.16rem;
}
.hero .btn-primary {
  margin-top: 12px;
}
@media (max-width: 600px) {
  .hero {
    min-height: 190px;
    margin-bottom: 36px;
    padding: 24px 0 32px 0;
  }
  .hero .content-wrapper {
    margin-top: 10px;
  }
}

/* =====================
   Features Section
   ===================== */
.features {
  background: var(--pastel-sand);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
}
.features h2 {
  margin-bottom: 20px;
}
.feature-grid {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 32px 40px;
  align-items: center;
  width: 100%;
  margin-top: 10px;
}
.feature-icon {
  width: 66px;
  height: 66px;
  background: var(--pastel-yellow);
  border-radius: 50%;
  box-shadow: 0 3px 11px 0 rgba(220,191,255,0.11);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}
.feature-icon img {
  width: 35px;
  height: 35px;
}
.feature-description {
  max-width: 230px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.feature-description h3 {
  margin-bottom: 6px;
  color: var(--primary);
  font-family: var(--font-display);
}
@media (max-width: 948px) {
  .feature-grid {
    flex-wrap: wrap;
    gap: 24px 18px;
  }
}
@media (max-width: 700px) {
  .feature-grid {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }
  .feature-description {
    max-width: none;
  }
  .feature-icon {
    margin-bottom: 0;
  }
}

/* ===================
   Service List Section
   =================== */
.services {
  background: var(--pastel-mint);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
}
.service-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 14px;
  margin-top: 20px;
}
.service-list li,
.service-list li a {
  font-size: 1.08rem;
  color: var(--primary-light);
  background: var(--accent);
  border-radius: 12px;
  padding: 20px 24px;
  box-shadow: 0 2px 10px 0 rgba(212, 198, 236, 0.09);
  transition: box-shadow .18s, background .18s, color .13s;
  margin-bottom: 4px;
}
.service-list li a:hover {
  color: var(--primary);
  background: var(--pastel-lavender);
  box-shadow: 0 8px 16px 0 rgba(185, 175, 236, 0.13);
}
.service-list strong {
  color: var(--primary);
  font-family: var(--font-display);
  font-weight: 600;
}
.service-list span {
  color: var(--primary-light);
  display: block;
  margin-top: 2px;
}

.adventure-highlights {
  margin-top: 14px;
  margin-bottom: 8px;
  background: var(--pastel-sand);
  border-radius: 13px;
  padding: 13px 20px 11px 20px;
  box-shadow: 0 2px 10px 0 rgba(236,196,180,0.05);
}
.adventure-highlights h3 {
  font-size: 1.1rem;
  color: var(--primary);
  margin-bottom: 5px;
}
.adventure-highlights ul {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.adventure-highlights li {
  color: var(--primary-light);
  font-size: 1rem;
  margin-left: 8px;
}

@media (max-width: 560px) {
  .service-list li, .service-list li a {
    padding: 11px 10px;
    font-size: 0.98rem;
  }
  .adventure-highlights {
    padding: 7px 7px 7px 13px;
  }
}

/* ====================
   Testimonial Cards
   ==================== */
.testimonials {
  background: var(--pastel-yellow);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
}
.testimonials h2 {
  margin-bottom: 22px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  background: #fff;
  border-radius: 16px;
  margin-bottom: 24px;
  padding: 24px 24px 18px 24px;
  box-shadow: 0 3px 20px 0 rgba(211,200,238,0.09);
  min-width: 210px;
  max-width: 575px;
  border: 1px solid var(--border-light);
  transition: box-shadow .19s, border-color .19s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 28px 4px rgba(188,176,224,0.15);
  border-color: var(--pastel-pink);
}
.testimonial-card p {
  color: var(--primary);
  font-size: 1.09rem;
  font-style: italic;
  font-family: var(--font-body);
}
.testimonial-card span {
  color: var(--primary-light);
  font-size: 0.97rem;
  font-style: normal;
}
@media (max-width: 700px) {
  .testimonial-card {
    max-width: 100%;
    font-size: 0.95rem;
    padding: 14px 11px 14px 11px;
  }
}

/* ==============
   Call-To-Action
   ============== */
.cta {
  background: linear-gradient(90deg, var(--pastel-mint) 0%, var(--pastel-sand) 100%);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cta .content-wrapper {
  align-items: center;
  text-align: center;
  gap: 16px;
}
.cta h2 {
  color: var(--primary);
}

/* ==============================
   Cards, Cards Container
   ============================== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
  margin-bottom: 20px;
  padding: 18px 26px;
  min-width: 200px;
  flex: 1 1 320px;
  position: relative;
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  transition: box-shadow .18s, border-color .18s;
}
.card:hover {
  box-shadow: 0 8px 16px 0 rgba(200,175,225,0.13);
  border-color: var(--pastel-pink);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

/* ============
   Content Grid
   ============ */
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  align-items: flex-start;
}

/* =====================
   Text-Image Section
   ===================== */
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
}

/* =====================
   Feature Item
   ===================== */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 0;
  margin-bottom: 12px;
}

/* ========================
   Footer
   ======================== */
footer {
  background: linear-gradient(90deg, var(--pastel-green) 0%, var(--pastel-mint) 100%);
  border-radius: var(--radius) var(--radius) 0 0;
  margin-top: 62px;
  padding: 0 0 10px 0;
  box-shadow: 0 -2px 14px 0 rgba(180, 199, 220, 0.08);
}
footer .container {
  padding-top: 40px;
  padding-bottom: 28px;
  display: flex;
  flex-direction: column;
}
footer .content-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-menu {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 18px;
}
.footer-menu a {
  color: var(--primary-light);
  font-size: 1rem;
  padding: 6px 10px;
  border-radius: 7px;
  transition: background .18s, color .18s;
}
.footer-menu a:hover,
.footer-menu a:focus {
  background: var(--pastel-blue);
  color: var(--primary);
}
.contact-info {
  font-size: 0.97rem;
  color: var(--text-main);
  margin-top: 0;
  font-style: normal;
  max-width: 320px;
  line-height: 1.6;
}
.contact-info a {
  color: var(--primary);
  text-decoration: underline;
  transition: color 0.17s;
}
.contact-info a:hover {
  color: var(--secondary);
}
.footer-logo {
  display: flex;
  align-items: flex-end;
  height: 56px;
}
.footer-logo img {
  height: 40px;
  width: auto;
  border-radius: 6px;
}
@media (max-width: 900px) {
  footer .content-wrapper {
    flex-direction: column;
    gap: 32px;
    align-items: flex-start;
  }
}

/* ================
   Legal Sections
   ================ */
.legal {
  background: var(--pastel-sand);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
  margin-bottom: 54px;
  padding: 48px 24px 38px 24px;
}
.legal .text-section {
  width: 100%;
  font-size: 1rem;
  color: var(--primary-light);
}
.legal h1, .legal h2, .legal h3 {
  color: var(--primary);
}
.legal ul {
  padding-left: 1.2em;
  margin-bottom: 6px;
}
.legal li {
  list-style: disc;
  color: var(--primary);
  margin-bottom: 7px;
}

/* =====================*
   Cookie Consent Banner
   =====================*/
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: var(--pastel-lavender);
  color: var(--primary);
  box-shadow: 0 -2px 22px 0 rgba(163, 171, 215, 0.08);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 22px 8vw 22px 8vw;
  z-index: 9999;
  font-size: 1rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(48px);
  transition: opacity 0.34s, transform 0.24s;
}
.cookie-banner.active {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.cookie-banner .cookie-btn {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  margin-left: 14px;
  border-radius: 9px;
  padding: 11px 22px;
  margin-right: 7px;
  border: 2px solid var(--pastel-blue);
  background: var(--pastel-blue);
  color: var(--primary);
  transition: background .19s, color .16s, border .17s;
}
.cookie-banner .cookie-btn.accept {
  background: var(--pastel-mint);
  color: var(--primary);
  border: 2px solid var(--pastel-mint);
}
.cookie-banner .cookie-btn.reject {
  background: var(--pastel-pink);
  color: #b04848;
  border: 2px solid var(--pastel-pink);
}
.cookie-banner .cookie-btn.settings {
  background: var(--pastel-lavender);
  border: 2px solid var(--pastel-lavender);
  color: var(--primary-light);
}
.cookie-banner .cookie-btn:hover, .cookie-banner .cookie-btn:focus {
  background: var(--pastel-sand);
  color: var(--primary);
}
@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    gap: 12px;
    padding: 17px 16px;
    font-size: 0.93rem;
    align-items: stretch;
  }
  .cookie-banner .cookie-btn {
    margin: 7px 0 0 0;
    width: 100%;
  }
}

/* ========================
   Cookie Settings Modal
   ======================== */
.cookie-modal {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(80,122,174,0.23);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 12000;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.22s, visibility 0.18s;
}
.cookie-modal.active {
  visibility: visible;
  opacity: 1;
}
.cookie-modal-content {
  background: #fff;
  border-radius: 16px;
  padding: 40px 30px 30px 30px;
  width: 98vw;
  max-width: 410px;
  box-shadow: 0 8px 32px 0 rgba(180,185,222,.17);
  z-index: 12001;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}
.cookie-modal-content h3 {
  color: var(--primary);
  font-family: var(--font-display);
  font-size: 1.12rem;
  margin-bottom: 8px;
}
.cookie-modal-content ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 12px;
}
.category-toggle {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}
.category-toggle label {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--primary);
}
.toggle-switch {
  width: 36px;
  height: 20px;
  background: var(--pastel-lavender);
  border-radius: 12px;
  position: relative;
  transition: background .18s;
  cursor: pointer;
}
.toggle-switch input[type="checkbox"] {
  opacity: 0;
  width: 0;
  height: 0;
}
.toggle-slider {
  position: absolute;
  top: 2.2px;
  left: 2px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--pastel-blue);
  transition: left 0.19s;
}
.toggle-switch input:checked + .toggle-slider {
  left: 18px;
  background: var(--pastel-mint);
}
.category-toggle input:disabled + .toggle-slider {
  background: var(--pastel-pink);
  opacity: 0.7;
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 18px;
  justify-content: flex-end;
  margin-top: 24px;
}
.cookie-modal .cookie-btn {
  font-size: 1rem;
  padding: 10px 18px;
  border-radius: 8px;
}
.cookie-modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 1.7rem;
  color: var(--primary-light);
  background: var(--pastel-mint);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  line-height: 29px;
  text-align: center;
  border: 2px solid var(--pastel-lavender);
  cursor: pointer;
  transition: background .18s, color .18s;
}
.cookie-modal-close:hover {
  background: var(--pastel-lavender);
  color: var(--primary);
}

@media (max-width: 540px) {
  .cookie-modal-content {
    padding: 22px 7px 22px 7px;
    max-width: 98vw;
  }
}

/* ============
   Utility
   ============ */
.hide {
  display: none !important;
}
.flex-row {
  display: flex;
  flex-direction: row;
}
.flex-col {
  display: flex;
  flex-direction: column;
}

/* ============
   General Spacing
   ============ */
section + section, .section + .section, .features + .section, .services + .section, .testimonials + .section {
  margin-top: 28px;
}
.card + .card, .testimonial-card + .testimonial-card {
  margin-top: 20px;
}
@media (max-width: 600px) {
  .card-container, .content-grid {
    flex-direction: column;
    gap: 14px;
  }
}

/* ===============
   Animations
   =============== */
.btn-primary, .btn-secondary {
  transition: background .23s cubic-bezier(.4,0,.2,1), color .18s cubic-bezier(.18,.74,.48,1.01), box-shadow .18s;
}
footer, header, .hero, .section, .features, .services, .testimonials, .cta {
  transition: box-shadow .19s, background .22s, color .18s;
}

/* ====================
   Accessibility Focus
   ==================== */
a:focus, button:focus, .btn-primary:focus, .btn-secondary:focus {
  outline: 2px dashed var(--secondary);
  outline-offset: 2px;
}

/* ====================
   Scrollbar Styling
   ==================== */
::-webkit-scrollbar {
  width: 7px;
  background: var(--pastel-lavender);
}
::-webkit-scrollbar-thumb {
  background: var(--pastel-blue);
  border-radius: 7px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--pastel-mint);
}

/* ====================
   End of Style Sheet
   ==================== */