/* --- CSS RESET & NORMALIZATION --- */
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;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  min-height: 100vh;
  background: #F5F0EB;
}
ul, ol {
  list-style: none;
}
a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}
img {
  border: 0;
  max-width: 100%;
  display: block;
}
button {
  background: none;
  border: none;
  cursor: pointer;
  font: inherit;
}

/* --- ROOT VARIABLES (WITH FALLBACKS FOR RETRO PALETTE) --- */
:root {
  /* Vintage/retro re-interpretation using brand and warm, nostalgic tones */
  --primary: #21293A;
  --secondary: #26b7ff;
  --accent: #f4e409;
  --retro-red: #ca676a;
  --retro-cream: #f9f4e7;
  --retro-teal: #268e83;
  --retro-orange: #e68734;
  --retro-brown: #6a4c31;
  --retro-blue: #82aaff;
  --retro-dark: #241c15;
  --white: #fff;
  --offwhite: #f5f0eb;
  --border: #e0d2b6;
  --shadow: rgba(33, 41, 58, 0.11);
  --transition: 0.22s cubic-bezier(.68,-0.26,.33,1.26);
}

/* --- FONTS (Vintage/Retro Combination based on brand) --- */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Rubik+Mono+One|Lora:700&display=swap');
body {
  font-family: 'Roboto', Arial, sans-serif;
  background: var(--offwhite);
  color: var(--retro-dark);
}

h1, h2, h3, h4 {
  font-family: 'Montserrat', 'Rubik Mono One', 'Lora', serif;
  font-weight: 700;
  text-shadow: 0 2px 0 var(--border);
  color: var(--primary);
}
h1 {
  font-size: 2.3rem;
  margin-bottom: 20px;
  letter-spacing: 1.2px;
}
h2 {
  font-size: 1.6rem;
  margin-bottom: 18px;
  letter-spacing: 0.8px;
}
h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  letter-spacing: 0.2px;
}
h4 {
  font-size: 1rem;
  margin-bottom: 10px;
}
p, li {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.07rem;
  color: var(--retro-dark);
  line-height: 1.7;
  margin-bottom: 10px;
}
strong {
  font-weight: bold;
  color: var(--retro-brown);
}

.subheadline {
  font-size: 1.2rem;
  color: var(--retro-red);
  font-family: 'Montserrat', 'Lora', serif;
  margin-bottom: 22px;
}

/* --- GENERAL LAYOUT --- */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  margin-bottom: 40px;
  background: none;
}
.text-section {
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-left: 6px solid var(--retro-orange);
  padding-left: 20px;
  background: none;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}

/* --- NAVBAR & HEADER (RETRO STYLE) --- */
header {
  width: 100%;
  background: var(--retro-cream);
  box-shadow: 0 2px 12px var(--shadow);
  border-bottom: 3px dotted var(--accent);
  position: relative;
  z-index: 11;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  gap: 16px;
}
header nav {
  display: flex;
  align-items: center;
  gap: 22px;
}
header nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.04rem;
  color: var(--primary);
  letter-spacing: 0.3px;
  position: relative;
  font-weight: 700;
  padding: 6px 8px;
  transition: color var(--transition);
  border-radius: 6px;
}
header nav a:hover, header nav a:focus {
  background: var(--accent);
  color: var(--retro-brown);
}
header .cta-btn {
  background: var(--accent);
  color: var(--retro-dark);
  padding: 7px 22px;
  border-radius: 26px;
  font-weight: bold;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.08rem;
  box-shadow: 2px 3px 0 0 var(--retro-brown), 0 1px 6px var(--shadow);
  border: 2px solid var(--retro-brown);
  margin-left: 18px;
  transition: background var(--transition), color var(--transition), transform var(--transition);
  text-shadow: none;
}
header .cta-btn:hover, header .cta-btn:focus {
  background: var(--retro-brown);
  color: var(--accent);
  transform: translateY(-2px) scale(1.045);
}
/* --- MOBILE HEADER --- */
.mobile-menu-toggle {
  display: none;
  background: var(--retro-brown);
  color: var(--accent);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 2rem;
  box-shadow: 1px 1px 6px var(--shadow);
  z-index: 15;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), color var(--transition);
}
.mobile-menu-toggle:active, .mobile-menu-toggle:focus {
  background: var(--accent);
  color: var(--retro-brown);
}

/* --- MOBILE MENU OVERLAY --- */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; bottom: 0; right: 0;
  background: var(--retro-dark);
  color: var(--accent);
  z-index: 1002;
  transform: translateX(100%);
  opacity: 0;
  transition: transform 0.3s cubic-bezier(.68,-0.26,.33,1.26), opacity 0.22s;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
}
.mobile-menu-close {
  font-size: 2.2rem;
  color: var(--accent);
  background: transparent;
  margin: 28px 32px 8px 0;
  align-self: flex-end;
  cursor: pointer;
  padding: 8px 10px;
  border-radius: 50%;
  border: 2px solid var(--accent);
  transition: background var(--transition), color var(--transition);
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--accent);
  color: var(--retro-brown);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 26px 12vw;
  gap: 24px;
}
.mobile-nav a {
  color: var(--accent);
  font-family: 'Montserrat', 'Lora', serif;
  font-size: 1.3rem;
  padding: 14px 0;
  border-bottom: 1.5px dashed var(--retro-orange);
  transition: color var(--transition), background var(--transition);
  border-radius: 4px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--retro-red);
  background: var(--retro-cream);
  border-bottom: 2.5px solid var(--retro-red);
}

/* --- HERO & CTA --- */
.hero, .cta {
  background: var(--retro-blue);
  padding: 60px 0 60px 0;
  border-bottom: 6px double var(--accent);
  border-radius: 0 0 40px 40px;
  margin-bottom: 40px;
  box-shadow: 0 10px 36px -12px var(--shadow);
}
.hero h1, .cta h2, .hero h2 {
  color: var(--accent);
  font-family: 'Montserrat', 'Rubik Mono One', sans-serif;
  text-shadow: 3px 4px 0 var(--retro-red), 0 2px var(--retro-dark);
}
.hero .cta-btn, .cta .cta-btn {
  background: var(--accent);
  border: 2.5px solid var(--retro-red);
  color: var(--retro-dark);
  margin-top: 12px;
  padding: 12px 38px;
  font-size: 1.22rem;
  font-family: 'Montserrat', 'Lora', serif;
  border-radius: 999px;
  box-shadow: 0 6px 0 var(--retro-brown), 0 1px 16px var(--shadow);
  transition: background var(--transition), color var(--transition), box-shadow var(--transition), transform var(--transition);
  font-weight: 900;
  letter-spacing: 1.2px;
}
.hero .cta-btn:hover, .cta .cta-btn:hover {
  background: var(--retro-brown);
  color: var(--accent);
  transform: translateY(-2.5px) scale(1.05);
}

/* --- FLEX LAYOUTS & GRIDS --- */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 10px;
  width: 100%;
  justify-content: space-between;
}
.feature-grid > div {
  flex: 1 1 210px;
  min-width: 180px;
  max-width: 300px;
  background: var(--retro-cream);
  border: 2.5px solid var(--retro-orange);
  border-radius: 22px;
  box-shadow: 3px 5px 0 var(--retro-red), 0 1px 6px var(--shadow);
  padding: 26px 18px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow var(--transition), transform var(--transition);
}
.feature-grid > div:hover {
  box-shadow: 5px 13px 0 var(--retro-red), 0 4px 18px var(--shadow);
  transform: translateY(-5px) scale(1.032);
}
.feature-grid img {
  width: 38px;
  height: 38px;
  margin-bottom: 10px;
  filter: sepia(0.30) saturate(0.75) hue-rotate(-10deg);
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.card {
  background: var(--retro-cream);
  margin-bottom: 20px;
  border-radius: 20px;
  border: 2.5px solid var(--accent);
  box-shadow: 3px 6px 0 var(--retro-orange), 0 1px 7px var(--shadow);
  position: relative;
  padding: 28px 16px 14px 20px;
  min-width: 180px;
  flex: 1 1 240px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover {
  box-shadow: 6px 15px 0 var(--retro-orange), 0 5px 24px var(--shadow);
  transform: translateY(-6px) scale(1.037);
}
.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;
  margin-bottom: 20px;
}

/* --- TESTIMONIALS --- */
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 24px 0 12px 0;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: var(--white);
  border: 2.5px solid var(--retro-teal);
  border-radius: 20px;
  box-shadow: 2px 4px 0 var(--retro-red), 0 1px 7px var(--shadow);
  padding: 20px;
  color: var(--retro-dark);
  margin-bottom: 20px;
  min-width: 220px;
  max-width: 360px;
  flex: 1 1 250px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.testimonial-card p {
  font-size: 1.04rem;
  color: var(--retro-dark);
}
.testimonial-card strong {
  font-size: 1.09rem;
  color: var(--retro-brown);
  margin-bottom: 4px;
}
.testimonial-card span {
  font-family: 'Montserrat', 'Lora', serif;
  color: var(--accent);
  font-size: 1.17rem;
  text-shadow: 1.5px 2px 0 var(--retro-red);
}
.testimonial-card:hover {
  box-shadow: 5px 9px 0 var(--retro-teal), 0 5px 19px var(--shadow);
  transform: translateY(-4px) scale(1.03);
}
.ratings-summary {
  margin-top: 6px;
  background: var(--retro-cream);
  padding: 12px 20px;
  border-radius: 12px;
  border: 2px dashed var(--accent);
  font-size: 1.05rem;
  color: var(--retro-teal);
  text-align: left;
}

/* --- FAQ ACCORDION (PLAIN STYLE) --- */
.faq-accordion h3 {
  background: var(--retro-orange);
  color: var(--white);
  padding: 12px 18px;
  margin-bottom: 0;
  border-radius: 16px 16px 0 0;
  border: 2px solid var(--accent);
  font-size: 1.13rem;
  font-family: 'Montserrat', 'Lora', serif;
  font-weight: 900;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}
.faq-accordion h3:hover {
  background: var(--accent);
  color: var(--retro-brown);
}
.faq-accordion p {
  background: var(--retro-cream);
  padding: 16px 20px;
  border-radius: 0 0 16px 16px;
  border: 2px solid var(--accent);
  border-top: none;
  margin-bottom: 12px;
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--retro-orange);
  color: var(--white);
  z-index: 5000;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 22px 12px 26px 12px;
  box-shadow: 0 -2px 20px -8px var(--shadow);
  transition: transform 0.27s, opacity 0.18s;
  font-size: 1.04rem;
}
.cookie-banner.hide {
  opacity: 0;
  transform: translateY(110%);
  pointer-events: none;
}
.cookie-buttons {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.cookie-banner button {
  border-radius: 30px;
  padding: 8px 26px;
  font-family: 'Montserrat', 'Roboto', sans-serif;
  font-weight: bold;
  font-size: 1rem;
  box-shadow: 2px 4px 0 var(--retro-brown);
  border: 2px solid var(--retro-brown);
  margin-top: 0;
  margin-bottom: 0;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
}
.cookie-banner .accept {
  background: var(--retro-teal);
  color: var(--white);
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: var(--accent);
  color: var(--retro-brown);
}
.cookie-banner .reject {
  background: var(--retro-red);
  color: var(--white);
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: var(--white);
  color: var(--retro-red);
}
.cookie-banner .settings {
  background: var(--accent);
  color: var(--retro-dark);
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: var(--retro-blue);
  color: var(--white);
}

/* --- COOKIE MODAL --- */
.cookie-modal {
  position: fixed;
  z-index: 5010;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(33,41,58,0.86);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal-content {
  background: var(--offwhite);
  border-radius: 24px;
  border: 2.5px solid var(--retro-brown);
  box-shadow: 0 6px 34px -8px var(--shadow);
  padding: 38px 28px 28px 28px;
  min-width: 270px;
  max-width: 98vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
}
.cookie-modal-content h2 {
  margin-bottom: 8px;
  color: var(--retro-brown);
}
.cookie-modal-close {
  position: absolute;
  right: 18px;
  top: 14px;
  font-size: 2rem;
  color: var(--retro-brown);
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px 6px;
  border-radius: 50%;
  transition: background var(--transition), color var(--transition);
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: var(--retro-brown);
  color: var(--accent);
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  margin-bottom: 8px;
}
.cookie-category label {
  font-family: 'Montserrat', 'Roboto', sans-serif;
  font-size: 1.03rem;
  font-weight: 700;
}
.cookie-switch {
  width: 50px;
  height: 28px;
  background: var(--retro-red);
  border-radius: 16px;
  position: relative;
  transition: background var(--transition);
}
.cookie-switch input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}
.cookie-switch .slider {
  position: absolute;
  cursor: pointer;
  top: 3px; left: 3px;
  height: 22px;
  width: 22px;
  border-radius: 50%;
  background: var(--white);
  transition: transform var(--transition), background var(--transition);
}
.cookie-switch input:checked + .slider {
  transform: translateX(22px);
  background: var(--accent);
}
.cookie-switch input:checked ~ .cookie-switch {
  background: var(--retro-teal);
}
.cookie-category.essential {
  opacity: 0.7;
}
.cookie-category.essential:after {
  content: 'Zawsze włączone';
  font-size: 0.93rem;
  color: var(--retro-brown);
  margin-left: 14px;
}

/* --- BUTTONS --- */
button, .btn {
  font-family: 'Montserrat', 'Roboto', sans-serif;
  padding: 10px 26px;
  border-radius: 40px;
  font-weight: bold;
  background: var(--accent);
  color: var(--retro-dark);
  border: 2px solid var(--retro-brown);
  box-shadow: 2px 4px 0 var(--retro-red);
  font-size: 1.08rem;
  margin-right: 12px;
  margin-bottom: 4px;
  margin-top: 4px;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition), transform var(--transition);
  cursor: pointer;
}
button:hover, .btn:hover, button:focus, .btn:focus {
  background: var(--retro-brown);
  color: var(--accent);
  transform: translateY(-2.5px) scale(1.043);
  box-shadow: 6px 10px 0 var(--retro-orange);
}

/* --- UTILITY STYLES --- */
ul, ol {
  margin-bottom: 18px;
  margin-left: 18px;
}
ul li, ol li {
  margin-bottom: 8px;
  padding-left: 6px;
}
ul li:before {
  content: '\2022';
  color: var(--retro-red);
  margin-right: 8px;
  font-weight: bold;
  font-size: 1.25em;
  vertical-align: middle;
}

/* --- FOOTER --- */
footer {
  background: var(--retro-cream);
  border-top: 3px dotted var(--accent);
  padding: 24px 0 16px 0;
  box-shadow: 0 -4px 18px -10px var(--shadow);
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
  justify-content: space-between;
  padding: 0 20px;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
footer nav a {
  font-family: 'Montserrat', 'Lora', serif;
  color: var(--retro-brown);
  text-decoration: underline dotted var(--accent);
  font-size: 1.04rem;
  margin-bottom: 3px;
  transition: color var(--transition);
  letter-spacing: 0.2px;
}
footer nav a:hover, footer nav a:focus {
  color: var(--retro-red);
  background: var(--accent);
}
footer .contact-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.99rem;
}
footer .contact-info p {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--retro-dark);
  margin-bottom: 3px;
  font-size: 1.01rem;
}
footer .contact-info img {
  width: 22px;
  height: 22px;
  filter: sepia(0.35) saturate(0.88);
}

/* --- PROJECTS/PROGRAM SECTIONS --- */
.project-previews {
  background: var(--retro-teal);
  color: var(--white);
  padding: 18px 22px 22px 22px;
  border-radius: 16px;
  margin-top: 22px;
  margin-bottom: 12px;
  box-shadow: 1.5px 6px 0 var(--retro-blue);
  border: 2.5px dashed var(--accent);
}
.project-previews h3 {
  color: var(--accent);
  margin-bottom: 10px;
}

/* --- MISC RETRO DETAILS, BORDERS --- */
hr {
  border: none;
  height: 2px;
  background: repeating-linear-gradient(to right, var(--accent), var(--accent) 10px, var(--retro-orange) 20px, var(--accent) 30px);
  margin: 38px 0 18px 0;
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 1024px) {
  .feature-grid {
    gap: 18px;
  }
  .container {
    padding: 0 12px;
  }
  .testimonial-card, .card {
    min-width: 160px;
    max-width: 95vw;
  }
  header nav {
    gap: 14px;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  header .container {
    flex-direction: row;
    align-items: center;
    padding-top: 8px;
    padding-bottom: 8px;
  }
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .hero, .cta {
    padding: 34px 0 34px 0;
    border-radius: 0 0 30px 30px;
  }
  .feature-grid {
    flex-direction: column;
    gap: 16px;
  }
  .feature-grid > div {
    min-width: 0;
    max-width: 100vw;
    width: 100%;
  }
  .testimonial-slider {
    flex-direction: column;
    gap: 14px;
  }
  .testimonial-card, .card {
    min-width: 0;
    width: 100%;
    max-width: 98vw;
  }
  .content-wrapper {
    gap: 13px;
    margin-bottom: 24px;
    padding-left: 0;
    padding-right: 0;
  }
  .content-grid {
    flex-direction: column;
    gap: 12px;
  }
  .card-container {
    flex-direction: column;
    gap: 12px;
  }
  .section {
    margin-bottom: 34px;
    padding: 22px 4px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
  footer .container {
    flex-direction: column;
    gap: 26px;
    align-items: flex-start;
    padding: 0 4px;
  }
  .project-previews {
    padding: 12px 6px 14px 6px;
  }
}
@media (max-width: 480px) {
  html {
    font-size: 14px;
  }
  .hero, .cta {
    padding: 24px 0 24px 0;
    border-radius: 0 0 18px 18px;
    min-height: unset;
  }
  .feature-grid, .testimonial-slider, .content-wrapper {
    gap: 8px;
  }
  h1 {
    font-size: 1.38rem;
  }
  h2 {
    font-size: 1.13rem;
  }
  nav a {
    font-size: 0.98rem;
  }
  footer .contact-info {
    font-size: 0.92rem;
  }
}

/* --- ANIMATIONS --- */
@keyframes retro-in {
  from {transform: translateY(40px); opacity:0;}
  to {transform: translateY(0); opacity:1;}
}
.section, .hero, .cta, .testimonial-card, .feature-grid > div, .card {
  animation: retro-in 0.7s cubic-bezier(.68,-0.26,.33,1.26) both;
}

/* --- Z-INDEX SAFETY --- */
header, .mobile-menu, .cookie-banner, .cookie-modal {
  z-index: 10000;
}

/* --- A11Y FOCUS STATE --- */
a:focus, button:focus, .cta-btn:focus {
  outline: 2.5px dashed var(--accent);
  outline-offset: 2px;
}

/* --- DEDICATED FLEXBOX ALIGNMENT (MANDATORY SPACING) --- */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
}
.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 --- */
