/* --- CSS RESET & BASE --- */
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 { box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; }
body {
  min-height: 100vh;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  background: #F9F9F9;
  color: #212b36;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #1A3557;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus { color: #FFA800; }

/* --- FONT FAMILIES --- */
h1, h2, h3, h4, h5, h6, .btn-primary, .logo, .logo-footer {
  font-family: 'Oswald', Impact, Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.03em;
}

/* --- TYPOGRAPHY & PLAYFUL TOUCHES --- */
h1 {
  font-size: 2.5rem;
  color: #1A3557;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  color: #FFA800;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.4rem;
  color: #1A3557;
  margin-bottom: 12px;
}
h4 {
  font-size: 1.1rem;
  color: #FFA800;
  margin-bottom: 10px;
}
p, li {
  font-size: 1rem;
  color: #212b36;
}
strong {
  color: #1A3557;
  font-weight: bold;
}

/* --- CONTAINER --- */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

/* --- HEADER & NAVIGATION --- */
header {
  background: #fff;
  box-shadow: 0 2px 20px rgba(26,53,87,0.06);
  position: sticky;
  top: 0;
  z-index: 20;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 20px 18px 20px;
  gap: 24px;
  min-height: 64px;
}
.logo img, .logo-footer img {
  height: 48px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}
.main-nav a {
  font-size: 1.09rem;
  font-family: 'Oswald', Impact, Arial, sans-serif;
  padding: 6px 13px;
  border-radius: 16px;
  position: relative;
  background: transparent;
  transition: background 0.16s, color 0.18s, box-shadow 0.22s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #FFA800;
  color: #1A3557;
  box-shadow: 0 4px 12px rgba(255,168,0,0.21);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  padding: 11px 32px;
  background: #FFA800;
  color: #1A3557;
  border: none;
  border-radius: 30px;
  font-size: 1.08rem;
  font-family: 'Oswald', Impact, Arial, sans-serif;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: 0.045em;
  box-shadow: 0 4px 18px rgba(255,168,0,0.16);
  transition: transform 0.16s, background 0.15s, box-shadow 0.22s;
  margin-left: 10px;
  gap: 8px;
  outline: none;
}
.btn-primary:hover, .btn-primary:focus {
  background: #FFD066;
  color: #1A3557;
  transform: scale(1.056) rotate(-1deg);
  box-shadow: 0 6px 24px rgba(255,168,0,0.23);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  background: #FFA800;
  border: none;
  color: #1A3557;
  font-size: 2.1rem;
  border-radius: 50%;
  padding: 6px 15px;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.18s, transform 0.15s;
  z-index: 101;
  box-shadow: 0 2px 12px rgba(255,168,0,0.18);
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #FFD066;
  transform: scale(1.13) rotate(5deg);
}

/* --- MOBILE NAVIGATION --- */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  box-shadow: 0 6px 48px rgba(26,53,87,0.19);
  z-index: 100;
  display: flex;
  flex-direction: column;
  transform: translateX(-100vw);
  opacity: 0;
  transition: transform 0.32s cubic-bezier(.7,.2,.17,1.02), opacity 0.27s cubic-bezier(.74,.22,.23,1.16);
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  padding: 10px 18px;
  margin: 18px;
  font-size: 2rem;
  color: #1A3557;
  background: #FFA800;
  border: none;
  border-radius: 50%;
  align-self: flex-end;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(255,168,0,0.14);
  transition: background 0.18s, transform 0.16s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #FFD066;
  transform: scale(1.08) rotate(2deg);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 60px;
  align-items: center;
}
.mobile-nav a {
  color: #1A3557;
  font-family: 'Oswald', Impact, Arial, sans-serif;
  font-size: 1.24rem;
  font-weight: 700;
  background: #FFD066;
  padding: 13px 40px;
  border-radius: 30px;
  transition: background 0.15s, color 0.14s, transform 0.13s;
  margin-bottom: 4px;
  box-shadow: 0 1px 4px rgba(255,168,0,0.07);
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #FFA800;
  color: #fff;
  transform: scale(1.035) rotate(-3deg);
}

/* --- HERO SECTION --- */
.hero {
  background: #FFD066;
  min-height: 340px;
  display: flex;
  align-items: center;
  padding: 0;
}
.hero .container,
.cta-section .container,
.thank-you-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.hero .content-wrapper,
.cta-section .content-wrapper,
.thank-you-section .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
  width: 100%;
  padding: 48px 0 34px 0;
}
.hero h1, .cta-section h2, .thank-you-section h1 {
  font-size: 2.4rem;
  letter-spacing: 0.03em;
  color: #1A3557;
  text-shadow: 1px 3px 0 #FFA8002c;
}
.hero p, .cta-section p, .thank-you-section p {
  font-size: 1.10rem;
  color: #1A3557;
  max-width: 620px;
}

/* --- SECTION LAYOUTS --- */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 30px;
  box-shadow: 0 6px 30px rgba(26,53,87,0.06);
  position: relative;
}
.content-wrapper {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 28px;
  width: 100%;
  max-width: 900px;
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 12px;
}
.feature-grid > div {
  flex: 1 1 230px;
  min-width: 200px;
  background: #FFD066;
  border-radius: 22px;
  padding: 26px;
  margin-bottom: 20px;
  box-shadow: 0 4px 18px rgba(255,168,0,0.09);
  transition: box-shadow 0.17s, transform 0.13s;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.feature-grid > div:hover, .feature-grid > div:focus {
  box-shadow: 0 7px 34px rgba(26,53,87,0.14);
  transform: scale(1.03) rotate(-1deg);
}
.feature-grid h3 {
  color: #1A3557;
  font-family: 'Oswald', Impact, Arial, sans-serif;
  margin-bottom: 12px;
}
.feature-grid p {
  color: #1A3557;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  position: relative;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 3px 16px rgba(26,53,87,0.08);
  margin-bottom: 20px;
  padding: 24px 18px;
  transition: box-shadow 0.16s, transform 0.13s;
}
.card:hover, .card:focus {
  box-shadow: 0 8px 28px rgba(255,168,0,0.18);
  transform: rotate(2deg) scale(1.025);
}
.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;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.map-section {
  background: #FFD066;
  border-radius: 16px;
  padding: 16px 18px;
  margin-top: 16px;
  color: #1A3557;
  font-size: 1.05rem;
}
.certification-list {
  margin-bottom: 16px;
}
.certification-list, .usp-list, .feature-grid ul, .service-list, .pricing-table, .next-steps-info ul {
  list-style: none;
  padding-left: 0;
  margin-left: 0;
  color: #1A3557;
}
.usp-list, .certification-list {
  font-size: 1.08rem;
  margin-bottom: 12px;
}
.usp-list li, .certification-list li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 26px;
}
.usp-list li:before, .certification-list li:before {
  content: '\2714';
  position: absolute;
  left: 0; top: 0;
  color: #FFA800;
  font-size: 1.15em;
}

.faq-accordion h2 {
  margin: 30px 0 6px 0;
  font-size: 1.2rem;
  color: #1A3557;
  background: #FFD066;
  padding: 11px 18px;
  border-radius: 18px;
  cursor: pointer;
  transition: background 0.13s, color 0.13s;
}
.faq-accordion h2:hover, .faq-accordion h2:focus {
  background: #FFA800;
  color: #fff;
}
.faq-accordion p {
  margin: 0 0 14px 0;
}

.contact-prompt { background: #FFE498; border-radius: 18px; padding: 22px; margin-top: 16px; color: #1A3557; }

.contact-block {
  align-items: flex-start;
  gap: 26px;
}

/***** TABLES: PRICING *****/
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  box-shadow: 0 2px 18px rgba(26,53,87,0.06);
  margin-bottom: 26px;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
}
.pricing-table th, .pricing-table td {
  padding: 19px 12px;
  text-align: left;
  font-size: 1rem;
}
.pricing-table th {
  background: #1A3557;
  color: #fff;
  font-family: 'Oswald', Impact, Arial, sans-serif;
}
.pricing-table tbody tr:nth-child(even) {
  background: #FFE498;
}
.pricing-table tbody tr:hover {
  background: #FFD066;
  transition: background 0.19s;
}

/***** TESTIMONIALS *****/
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 3px 18px rgba(26,53,87,0.10);
  margin: 24px 0 12px 0;
  font-style: italic;
  color: #1A3557;
  max-width: 720px;
  border-left: 7px solid #FFA800;
  position: relative;
  transition: box-shadow 0.18s, transform 0.12s;
}
.testimonial-card:hover, .testimonial-card:focus {
  box-shadow: 0 10px 44px rgba(255,168,0,0.12), 0 0 0 4px #FFD06644;
  transform: scale(1.023);
}
.testimonial-card strong {
  font-style: normal;
  color: #FFA800;
  margin-left: 18px;
}

/***** CTA & THANK YOU SECTION *****/
.cta-section {
  background: #FFA800;
  border-radius: 30px;
  margin-bottom: 48px;
  padding: 40px 20px;
  box-shadow: 0 4px 27px rgba(255,168,0,0.09);
}
.cta-section h2 {
  color: #1A3557;
}
.cta-section .btn-primary {
  margin-top: 6px;
}
.thank-you-section { background: #FFD066; border-radius: 30px; padding: 40px 20px; margin-bottom: 48px; }
.thank-you-section .next-steps-info {
  margin: 24px 0 10px 0;
  background: #FFE498;
  border-radius: 17px;
  padding: 15px 28px;
  font-size: 1.07rem;
  color: #1A3557;
}
.thank-you-section .next-steps-info ul { margin-left: 8px; }

/***** FOOTER *****/
footer {
  background: #1A3557;
  color: #fff;
  margin-top: 64px;
  padding: 0 0 0 0;
}
.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  padding: 44px 20px 32px 20px;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
}
.logo-footer img {
  height: 38px;
  margin-bottom: 19px;
}
.contact-short {
  color: #fff;
  font-size: 1.07rem;
  padding-bottom: 16px;
}
.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-family: 'Oswald', Impact, Arial, sans-serif;
}
.footer-menu a {
  color: #FFA800;
  transition: color 0.15s, transform 0.10s;
}
.footer-menu a:hover, .footer-menu a:focus {
  color: #FFD066;
  transform: translateX(4px) scale(1.01) skewX(-2deg);
}
.social-links {
  display: flex;
  align-items: center;
  gap: 22px;
}
.social-links a img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
  padding: 4px;
  transition: transform 0.19s;
  box-shadow: 0 2px 8px rgba(255,168,0,0.09);
}
.social-links a:hover img, .social-links a:focus img {
  transform: scale(1.11) rotate(10deg);
  background: #FFD066;
}

/***** LEGAL PAGES (DATENSCHUTZERKLÄRUNG, IMPRESSUM, ETC.) *****/
.legal-content {
  background: #fff;
  padding: 32px 18px;
  border-radius: 20px;
  box-shadow: 0 3px 16px rgba(26,53,87,0.06);
  margin-bottom: 24px;
  color: #212b36;
  font-size: 1rem;
}
.legal-content h1 {
  font-size: 2rem;
  margin-bottom: 18px;
}
.legal-content h2 {
  font-size: 1.18rem;
  color: #FFA800;
  margin-top: 18px;
}
.legal-content ul {
  margin: 8px 0 14px 0;
}

/***** COOKIE CONSENT BANNER & MODAL *****/
#cookie-banner {
  position: fixed;
  bottom: 0; left: 0;
  width: 100vw;
  background: #1A3557;
  color: #fff;
  padding: 28px 20px 18px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  z-index: 3000;
  box-shadow: 0 -4px 24px rgba(26,53,87,0.21);
  font-size: 1.06rem;
  opacity: 0;
  transform: translateY(100%);
  transition: transform 0.27s cubic-bezier(.78,0,.32,1.11), opacity 0.26s cubic-bezier(.74,.22,.23,1.16);
  pointer-events: none;
}
#cookie-banner.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
#cookie-banner .cookie-btns {
  display: flex;
  flex-direction: row;
  gap: 22px;
  margin-top: 10px;
}
.cookie-btns button {
  border: none;
  border-radius: 22px;
  font-family: 'Oswald', Impact, Arial, sans-serif;
  font-size: 1.04rem;
  padding: 9px 26px;
  margin: 0 2px;
  cursor: pointer;
  outline: none;
  transition: background 0.12s, color 0.13s;
  box-shadow: 0 2px 8px rgba(255,168,0,0.13);
}
.cookie-btns .accept {
  background: #FFA800;
  color: #1A3557;
  font-weight: bold;
}
.cookie-btns .accept:hover, .cookie-btns .accept:focus {
  background: #FFD066;
}
.cookie-btns .reject {
  background: #fff;
  color: #1A3557;
  border: 2px solid #FFA800;
  font-weight: bold;
}
.cookie-btns .reject:hover, .cookie-btns .reject:focus {
  background: #FFD066;
  color: #1A3557;
}
.cookie-btns .settings {
  background: #1A3557;
  color: #FFA800;
  border: 1.5px solid #FFA800;
}
.cookie-btns .settings:hover, .cookie-btns .settings:focus {
  background: #FFA800;
  color: #1A3557;
}

#cookie-modal {
  display: none;
  position: fixed; left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: rgba(26,53,87,0.65);
  z-index: 3100;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
#cookie-modal.open {
  display: flex;
  animation: fadeInModal 240ms cubic-bezier(.68,.05,.32,1.13);
}
@keyframes fadeInModal {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.cookie-modal-content {
  background: #fff;
  color: #1A3557;
  border-radius: 22px;
  max-width: 380px;
  min-width: 72vw;
  padding: 38px 28px 32px 28px;
  box-shadow: 0 8px 34px rgba(26,53,87,0.19);
  display: flex;
  flex-direction: column;
  gap: 17px;
  position: relative;
  animation: modalSlideIn 320ms cubic-bezier(.68,.05,.32,1.13);
}
@keyframes modalSlideIn {
  from { transform: translateY(-40px) scale(0.95); opacity: 0.4; }
  to   { transform: translateY(0) scale(1); opacity: 1; }
}
.cookie-modal-content h3 {
  font-family: 'Oswald', Impact, Arial, sans-serif;
  color: #FFA800;
  font-size: 1.46rem;
  margin-bottom: 0.7rem;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 10px;
  font-size: 1.05rem;
}
.cookie-toggle {
  appearance: none;
  width: 38px;
  height: 21px;
  background: #FFD066;
  border-radius: 14px;
  border: 2px solid #FFA800;
  position: relative;
  outline: none;
  cursor: pointer;
  transition: background 0.15s;
}
.cookie-toggle:checked {
  background: #FFA800;
}
.cookie-toggle::after {
  content: '';
  position: absolute;
  left: 3px; top: 2.2px;
  width: 15px; height: 15px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 3px #1A355715;
  transition: left 0.14s;
}
.cookie-toggle:checked::after {
  left: 18px;
}
.cookie-category label {
  color: #1A3557;
}
.category-essential {
  font-weight: bold;
  color: #1A3557;
}
.category-essential::after {
  content: ' (immer aktiv)';
  color: #888;
  font-size: 0.99rem;
  font-style: italic;
  margin-left: 6px;
}
.cookie-modal-footer {
  display: flex;
  gap: 18px;
  justify-content: flex-end;
  margin-top: 14px;
}
.cookie-modal-footer button {
  border: none;
  border-radius: 18px;
  font-size: 1.02rem;
  padding: 9px 22px;
  font-family: 'Oswald', Impact, Arial, sans-serif;
  color: #1A3557;
  background: #FFD066;
  margin: 0 2px;
  cursor: pointer;
  transition: background 0.15s, color 0.13s;
}
.cookie-modal-footer button.save {
  background: #FFA800;
  color: #fff;
}
.cookie-modal-footer button.save:hover, .cookie-modal-footer button.save:focus {
  background: #FFD066;
  color: #1A3557;
}
.cookie-modal-footer button.cancel {
  background: #fff;
  border: 2px solid #FFA800;
  color: #1A3557;
}
.cookie-modal-footer button.cancel:hover, .cookie-modal-footer button.cancel:focus {
  background: #FFD066;
}
.cookie-modal-close {
  position: absolute;
  top: 22px; right: 24px;
  font-size: 1.7rem;
  color: #FFA800;
  background: none;
  border: none;
  cursor: pointer;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #1A3557;
}

/***** RESPONSIVE (MOBILE-FIRST) *****/
@media (max-width: 1080px) {
  .container { max-width: 97vw; }
  .footer-content { flex-wrap: wrap; gap: 24px; }
}
@media (max-width: 900px) {
  .main-nav a { font-size: 1rem; padding: 4px 8px; }
  .hero h1, .cta-section h2 { font-size: 2.0rem; }
  .footer-content { flex-direction: column; gap: 24px; padding: 38px 10px 32px 10px; }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .feature-grid {
    flex-direction: column;
    gap: 18px;
  }
  .feature-grid > div {
    min-width: unset; padding: 17px; margin-bottom: 10px;
  }
  .section {
    margin-bottom: 36px;
    padding: 22px 7px;
    border-radius: 22px;
  }
  .hero, .cta-section, .thank-you-section { border-radius: 18px; }
  .container { padding: 0 7px; }
  .content-wrapper { padding: 0; }
  .footer-content { padding: 25px 7px 18px 7px; gap: 19px; }
  .logo img { height: 37px; }
  .logo-footer img { height: 26px; margin-bottom: 11px; }
  .contact-short { font-size: 1rem; }
  .testimonial-card { flex-direction: column; gap: 10px; font-size: 0.98rem; padding: 16px; margin: 14px 0 10px 0; border-left-width: 5px; }
  .pricing-table th, .pricing-table td { padding: 11px 5px; font-size: 0.97rem; }
  .card-container, .content-grid { gap: 12px; }
  .text-image-section { flex-direction: column; gap: 12px; }
}
@media (max-width: 520px) {
  .btn-primary, .main-nav a, .mobile-nav a, .cookie-btns button { font-size: 0.97rem; padding: 11px 18px; }
  .cookie-modal-content { min-width: 97vw; padding: 21px 9px 18px 9px; }
}

/***** PLAYFUL MICRO-INTERACTIONS & EFFECTS *****/
section, .section, .hero, .cta-section, .thank-you-section {
  animation: popInSection 650ms cubic-bezier(.23,1.22,.79,1.01);
}
@keyframes popInSection {
  0% { opacity: 0; transform: scaleY(0.93) translateY(38px); }
  100% { opacity: 1; transform: none; }
}
.btn-primary { animation: playfulBounce 1.6s infinite alternate cubic-bezier(.26,.61,.81,.14); }
@keyframes playfulBounce {
  0% { box-shadow: 0 2px 10px rgba(255,168,0,0.13); }
  100% { box-shadow: 0 7px 18px rgba(255,168,0,0.14), 0 0 10px #FFD06655 inset; }
}
.feature-grid > div:before {
  content: ''; position: absolute; z-index: 0;
  right: -16px; top: -18px; width: 64px; height: 64px;
  background: #FFA80033;
  border-radius: 50%; opacity: 0.22;
  filter: blur(4px);
  pointer-events: none;
}
.card:before {
  content: ''; position: absolute; z-index: 0;
  left: -12px; bottom: -18px; width: 42px; height: 42px;
  background: #1A355733;
  border-radius: 50%; opacity: 0.17;
  filter: blur(2px);
  pointer-events: none;
}

/***** ACCESSIBILITY & UTILITY  *****/
:focus {
  outline: 2.5px dashed #FFA800;
  outline-offset: 2.5px;
}
::-webkit-input-placeholder { color: #888; opacity: 1; }
::-moz-placeholder { color: #888; opacity: 1; }
:-ms-input-placeholder { color: #888; opacity: 1; }
::placeholder { color: #888; opacity: 1; }

/***** FORCED UTILITY SPACING (MANDATORY CLASSES) *****/
.section { margin-bottom: 60px; padding: 40px 20px; }
.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; }

/* --- END --- */
