/* 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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1;
  background: #F5FAF4;
  min-height: 100vh;
  color: #285B4A;
  font-family: 'Open Sans', Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
ol, ul {
  list-style: none;
}
a {
  background: transparent;
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
  outline: none;
}
img {
  vertical-align: middle;
  border-style: none;
  max-width: 100%;
}
button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  outline: none;
  transition: background 0.2s, color 0.2s;
}
input, textarea, select, button {
  font-family: inherit;
  font-size: 1rem;
  border-radius: 0;
}

/* BRAND COLORS (playful_dynamic) */
:root {
  --color-primary: #285B4A;
  --color-secondary: #8AD18A;
  --color-accent: #F5FAF4;
  --color-yellow: #FFE066;
  --color-orange: #FFAD69;
  --color-blue: #6EDCFF;
  --color-pink: #FB82C8;
  --color-card: #fff;
  --color-shadow: rgba(40,91,74,0.09);
  --color-dark: #25392f;
  --color-hero-bg: #EAFBF1;
  --color-footer-bg: #285B4A;
  --color-footer-text: #fff;
  --color-error: #FF7A7A;
}

/* TYPOGRAPHY (Playful & Fun) */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Open+Sans:wght@400;600&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 900;
  letter-spacing: -0.5px;
}
h1 {
  font-size: 2.5rem;
  color: var(--color-primary);
  line-height: 1.14;
}
h2 {
  font-size: 2rem;
  color: var(--color-primary);
  line-height: 1.15;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.31rem;
  color: var(--color-primary);
  line-height: 1.22;
  margin-bottom: 8px;
}
p, li, a, label, input, span, small {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  color: var(--color-dark);
  line-height: 1.6;
}
p {
  margin-bottom: 18px;
}
strong {
  font-weight: 700;
  color: var(--color-primary);
}
small {
  font-size: 0.93rem;
  color: var(--color-primary);
}

/* CONTAINER AND LAYOUT (FLEXBOX ONLY) */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* HERO SECTION (playful color and animation) */
.hero {
  background: var(--color-hero-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 340px;
  margin-bottom: 48px;
  animation: heroSlideIn 0.9s cubic-bezier(0.62,0.07,0.82,1.7);
}
@keyframes heroSlideIn {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.hero h1 {
  color: var(--color-primary);
  margin-bottom: 12px;
}
.hero p {
  color: var(--color-dark);
  margin-bottom: 20px;
}

/* FEATURES & GRIDS */
.features {
  background: var(--color-accent);
  margin-bottom: 60px;
  padding: 40px 20px;
}
.features .content-wrapper {
  margin-top: 14px;
}
.feature-grid, .feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  align-items: stretch;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: var(--color-card);
  padding: 22px 18px 20px 18px;
  border-radius: 18px;
  box-shadow: 0 2px 14px var(--color-shadow);
  gap: 15px;
  width: 210px;
  min-height: 200px;
  margin-bottom: 20px;
  transition: transform 0.22s cubic-bezier(0.15,1.02,0.29,1.07), box-shadow 0.17s;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}
.feature-item:hover {
  transform: translateY(-8px) scale(1.04) rotate(-1deg);
  box-shadow: 0 8px 24px 0 rgba(40,91,74,0.14);
  border-color: var(--color-secondary);
}
.feature-item img {
  width: 42px;
  height: 42px;
  margin-bottom: 4px;
  filter: drop-shadow(0 1px 4px #8AD18A22);
  animation: playfulWobble 2.8s infinite cubic-bezier(0.57,0.1,0.79,0.93) alternate;
}
@keyframes playfulWobble {
  0% { transform: rotate(-7deg) scale(1); }
  30% { transform: rotate(10deg) scale(1.1); }
  70% { transform: rotate(-4deg) scale(0.98); }
  100% { transform: rotate(8deg) scale(1.03); }
}

/* SERVICES OVERVIEW */
.services-overview .service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-top: 16px;
}
.service-item {
  background: var(--color-card);
  border-radius: 16px;
  box-shadow: 0 3px 13px var(--color-shadow);
  min-width: 230px;
  flex: 1 1 230px;
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
  transition: box-shadow 0.23s, transform 0.19s;
  position: relative;
  border: 2px solid transparent;
}
.service-item:hover {
  box-shadow: 0 7px 27px 0 var(--color-shadow), 0 1.5px 8px var(--color-secondary);
  border-color: var(--color-yellow);
  transform: translateY(-7px) scale(1.03);
}
.service-item h3 {
  margin-bottom: 4px;
}
.service-item .service-price {
  background: var(--color-yellow);
  border-radius: 32px;
  font-weight: 700;
  font-size: 1.07rem;
  padding: 4px 16px;
  color: #845701;
  margin-bottom: 8px;
}

/**** CTA SECTION ****/
.cta {
  background: var(--color-blue);
  padding: 40px 20px;
  margin-bottom: 60px;
  border-radius: 17px;
  box-shadow: 0 3px 9px var(--color-shadow);
  animation: ctaBounceIn 0.9s cubic-bezier(0.71,0.18,0.44,0.89);
}
@keyframes ctaBounceIn {
  0% { opacity: 0; transform: scale(0.85) translateY(91px); }
  70% { opacity: 1; transform: scale(1.04) translateY(-9px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}
.cta .btn-primary {
  margin-top: 12px;
}

/**** TESTIMONIALS ****/
.testimonials {
  margin-bottom: 60px;
}
.testimonials .content-wrapper {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 10px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #fffbea;
  padding: 20px;
  border-radius: 18px;
  box-shadow: 0 1.5px 9px 0 #ffc50018;
  margin-bottom: 20px;
  position: relative;
  gap: 14px;
  transition: box-shadow 0.19s, transform 0.18s;
  min-width: 260px;
  max-width: 440px;
  color: #28231c;
}
.testimonial-card strong {
  color: #285B4A;
  font-weight: 700;
  font-size: 1rem;
}
.testimonial-card p {
  color: #25392f;
  font-size: 1.07rem;
  font-style: italic;
}
.testimonial-card:hover {
  box-shadow: 0 7px 24px 0 #ffe06634;
  transform: scale(1.03) rotate(-1.3deg);
}

/**** ABOUT SECTION/TEXT SECTIONS ****/
.text-section, .about-section .text-section, .about-intro .text-section, .legal-section .text-section {
  background: #fff;
  padding: 32px 22px;
  border-radius: 14px;
  box-shadow: 0 2px 11px var(--color-shadow);
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 34px;
}

/**** CONTACT INFO ****/
.contact-info {
  margin-bottom: 60px;
}
.contact-info .text-section ul {
  padding-left: 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-info a {
  color: var(--color-secondary);
  text-decoration: underline;
  transition: color 0.18s;
}
.contact-info a:hover { color: var(--color-primary); }

/**** THANK-YOU SECTION ****/
.thank-you .content-wrapper {
  align-items: flex-start;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 3px 13px var(--color-shadow);
  padding: 36px 24px;
  gap: 12px;
  margin-bottom: 32px;
}

/**** FOOTER ****/
footer {
  background: var(--color-footer-bg);
  color: var(--color-footer-text);
  margin-top: 38px;
  padding: 0;
}
footer .container {
  padding: 0 20px 0 20px;
}
.footer-main {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
  justify-content: space-between;
  padding: 34px 0 1.9px 0;
}
.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 21px;
}
.footer-menu a {
  color: var(--color-footer-text);
  opacity: 0.95;
  font-size: 1rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: color 0.17s, opacity 0.18s;
}
.footer-menu a:hover { opacity: 1; color: var(--color-yellow); }
.footer-social {
  display: flex;
  align-items: center;
  gap: 14px;
}
.footer-social a img {
  width: 32px;
  height: 32px;
  border-radius: 99px;
  background: #fff2;
  padding: 4px;
  transition: background 0.18s, transform 0.11s;
}
.footer-social a:hover img {
  background: var(--color-yellow);
  transform: scale(1.11) rotate(-4deg);
}
.footer-info {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 9px 0 19px 0;
}
.footer-info small {
  color: var(--color-footer-text);
  opacity: 0.7;
  font-size: 0.96rem;
}

/**** BUTTONS ****/
.btn-primary, .btn-secondary, .cookie-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.08rem;
  border-radius: 100px;
  padding: 12px 32px;
  box-shadow: 0 2.7px 7px var(--color-shadow);
  margin-right: 8px;
  text-align: center;
  cursor: pointer;
  transition: background 0.22s, color 0.22s, transform 0.18s, box-shadow 0.13s;
}
.btn-primary {
  background: var(--color-secondary);
  color: #244425;
  border: 2px solid var(--color-secondary);
  box-shadow: 0 4px 12px 0 #8ad18a24;
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--color-yellow);
  color: #845701;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 8px 20px 0 #ffe06648;
}
.btn-secondary {
  background: #fff;
  border: 2px solid var(--color-secondary);
  color: var(--color-primary);
  box-shadow: 0 3px 12px 0 #8ad18a13;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: var(--color-blue);
  color: #19707a;
  border-color: var(--color-blue);
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 8px 20px 0 #73d2ff44;
}

/* Cookie Buttons */
.cookie-btn {
  min-width: 120px;
  font-size: 1rem;
  margin-right: 16px;
  margin-top: 10px;
  background: var(--color-secondary);
  color: #25392f;
  border: 2px solid var(--color-secondary);
}
.cookie-btn.reject {
  background: #fff;
  color: var(--color-error);
  border: 2px solid var(--color-error);
}
.cookie-btn.highlight {
  background: var(--color-yellow);
  color: #845701;
  border: 2px solid var(--color-yellow);
}
.cookie-btn:hover, .cookie-btn:focus {
  background: var(--color-blue);
  border-color: var(--color-blue);
  color: #17617b;
  transform: scale(1.04);
}

/**** MAIN NAVIGATION (Desktop) ****/
header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 900;
  box-shadow: 0 1.2px 8px 0 var(--color-shadow);
  padding: 0 0 0 0;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 19px;
  padding: 12px 20px;
  justify-content: flex-start;
  width: 100%;
  font-family: 'Montserrat', sans-serif;
}
.main-nav a {
  padding: 8px 14px;
  color: var(--color-primary);
  letter-spacing: 0.01em;
  font-weight: 700;
  transition: color 0.17s, background 0.18s, box-shadow 0.14s;
  border-radius: 42px;
  font-size: 1rem;
}
.main-nav a.btn-primary {
  margin-left: 16px;
}
.main-nav a:hover:not(.btn-primary), .main-nav a:focus:not(.btn-primary) {
  color: #fff;
  background: var(--color-secondary);
}
.main-nav img {
  height: 37px;
  width: auto;
  margin-right: 6px;
  margin-bottom: 0;
}

/* Hamburger Button (Mobile menu toggle) */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 16px;
  top: 16px;
  z-index: 1200;
  width: 44px;
  height: 44px;
  font-size: 2.3rem;
  background: var(--color-secondary);
  color: var(--color-primary);
  border-radius: 44px;
  box-shadow: 0 3px 14px var(--color-shadow);
  line-height: 1;
  align-items: center;
  justify-content: center;
  outline: none;
  border: 2px solid var(--color-primary);
  transition: background 0.17s, color 0.18s, transform 0.13s;
}
.mobile-menu-toggle:active, .mobile-menu-toggle:focus {
  background: var(--color-yellow);
  color: #633a12;
  transform: scale(1.09) rotate(-7deg);
}

/******** MOBILE MENU OVERLAY ********/
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 100vh;
  width: 100vw;
  background: #f5faf4ee;
  z-index: 2003;
  transform: translateX(-100vw);
  transition: transform 0.35s cubic-bezier(0.49,0.43,0.62,1.24);
  box-shadow: 0 4px 36px 0 #8AD18A11;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0vw);
}
.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 2.2rem;
  color: var(--color-primary);
  background: var(--color-yellow);
  border-radius: 38px;
  box-shadow: 0 2px 7px 0 #FFD90027;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, color 0.1s, transform 0.16s;
  border: 2px solid var(--color-primary);
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--color-secondary);
  color: #18452e;
  transform: rotate(7deg) scale(1.11);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: flex-start;
  padding: 94px 36px 32px 36px;
  width: 100vw;
}
.mobile-nav a {
  font-size: 1.22rem;
  color: var(--color-primary);
  padding: 12px 0;
  font-weight: 700;
  border-radius: 7px;
  transition: background 0.15s, color 0.11s;
  width: 93vw;
  display: inline-block;
  min-height: 38px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-secondary);
  color: #284826;
}

/**** LEGAL SECTION (Datenschutz, GDPR, Cookie, Nutzungsbedingungen) ****/
.legal-section .text-section h1, .legal-section .text-section h2 {
  color: var(--color-primary);
}
.legal-section .text-section ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 13px 0 16px 20px;
  list-style: disc inside;
}

/**** SPACING AND FLEX LAYOUT CLASSES (MANDATORY PATTERNS) ****/
.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;
}

/**** RESPONSIVE DESIGN ****/
@media (max-width: 1024px) {
  .container { max-width: 920px; }
  .feature-grid, .feature-list, .service-list, .content-grid {
    gap: 16px;
  }
  .feature-item,
  .service-item {
    min-width: 180px;
    padding: 18px 10px;
  }
}
@media (max-width: 768px) {
  html { font-size: 94%; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.4rem; }
  .container { max-width: 100vw; padding: 0 8px; }
  .section, .features, .hero, .cta {
    padding: 24px 7px;
    margin-bottom: 39px;
  }
  .main-nav { display: none; }
  .mobile-menu-toggle {
    display: flex;
  }
  .feature-grid, .feature-list, .service-list, .content-grid {
    flex-direction: column;
    gap: 9px;
  }
  .feature-item, .service-item, .testimonial-card {
    width: 100%;
    min-width: unset;
    padding: 16px 10px;
  }
  .testimonials .content-wrapper {
    flex-direction: column;
  }
  .hero, .cta {
    min-height: unset;
    border-radius: 12px;
  }
  .footer-main {
    flex-direction: column;
    align-items: flex-start;
    gap: 13px;
    padding: 25px 0 2px 0;
  }
  .footer-menu { flex-direction: column; gap: 8px; }
  .footer-social { gap: 8px; }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}
@media (max-width: 400px) {
  .footer-main { padding: 10px 0 1px 0; }
  .container { padding: 0 3px; }
  .mobile-nav { padding: 72px 7px 19px 7px; }
  .hero { padding: 15px 2px; }
}

/**** MICRO-INTERACTIONS & ANIMATION EFFECTS ****/
a, button, .btn-primary, .btn-secondary, .cookie-btn {
  transition: background 0.17s, color 0.17s, box-shadow 0.14s, transform 0.15s;
}
.feature-item::after {
  content: '';
  display: block;
  position: absolute;
  right: -26px;
  bottom: -26px;
  width: 60px;
  height: 60px;
  background: var(--color-yellow);
  border-radius: 36px;
  opacity: 0.13;
  z-index: 0;
  pointer-events: none;
}
.service-item::before {
  content: '';
  display: block;
  position: absolute;
  left: -18px;
  top: -18px;
  width: 40px;
  height: 40px;
  background: var(--color-pink);
  border-radius: 32px;
  opacity: 0.12;
  z-index: 0;
}

/**** COOKIE CONSENT BANNER ****/
.cookie-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  padding: 18px 9px;
  background: #fffbea;
  box-shadow: 0 0px 22px 0 #ffe06655;
  z-index: 9999;
  min-height: 0;
  font-size: 1rem;
  transition: transform 0.35s, opacity 0.25s;
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(130%);
}
.cookie-banner .cookie-text {
  color: #463c1d;
  font-size: 1rem;
  font-family: 'Open Sans', sans-serif;
  margin-right: 22px;
}
.cookie-banner button {
  margin-left: 6px;
}

.cookie-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(55,55,55,.26);
  z-index: 20020;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.15s;
}
.cookie-modal {
  background: #fff;
  padding: 38px 24px 24px 24px;
  border-radius: 19px;
  box-shadow: 0 10px 40px 0 #FFD90033;
  width: 98%;
  max-width: 390px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 17px;
  animation: modalPop 0.48s cubic-bezier(0.43,1.58,0.86,0.95);
}
@keyframes modalPop {
  0% { opacity: 0; transform: scale(0.8) translateY(105px); }
  80% { transform: scale(1.07); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}
.cookie-modal h2 {
  color: var(--color-primary);
  font-size: 1.22rem;
  margin-bottom: 8px;
}
.cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 7px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 9px;
}
.cookie-modal .category-label {
  font-weight: 700;
  color: var(--color-primary);
}
.cookie-modal .cookie-toggle {
  position: relative;
  width: 44px;
  height: 22px;
  background: #eee;
  border-radius: 22px;
  margin-left: 12px;
  cursor: pointer;
  border: 1.5px solid #ddd;
  flex-shrink: 0;
}
.cookie-modal .cookie-toggle[data-active="true"] {
  background: var(--color-secondary);
  border-color: var(--color-secondary);
}
.cookie-modal .cookie-toggle[data-disabled="true"] {
  background: #e5f1e6;
  border-color: #d0d4cd;
}
.cookie-modal .cookie-toggle .circle {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0.5px 4px #8AD18A22;
  transition: left 0.18s;
}
.cookie-modal .cookie-toggle[data-active="true"] .circle {
  left: 24px;
}
.cookie-modal .cookie-toggle[data-disabled="true"] {
  opacity: .72;
  cursor: not-allowed;
}
.cookie-modal .cookie-actions {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}
.cookie-modal .cookie-close {
  position: absolute;
  top: 9px;
  right: 9px;
  background: var(--color-yellow);
  color: #844e3a;
  border-radius: 25px;
  padding: 0 10px;
  font-size: 1.5rem;
  border: 1.5px solid #ffe066;
  transition: background 0.14s, color 0.12s;
}
.cookie-modal .cookie-close:hover {
  background: var(--color-secondary);
  color: #173c1a;
}

/**** UTILITY CLASSES & HELPERS ****/
.hide {
  display: none !important;
}
.text-center {
  text-align: center !important;
}
.bg-accent {
  background: var(--color-accent);
}
.bg-yellow {
  background: var(--color-yellow);
}
.bg-secondary {
  background: var(--color-secondary);
}
.rounded-lg {
  border-radius: 18px;
}

/**** ACCESSIBILITY (Focus States) ****/
a:focus, button:focus, .btn-primary:focus, .btn-secondary:focus {
  outline: 2px dotted var(--color-blue);
  outline-offset: 3px;
}

/**** END OF STYLES ****/
