/* === 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 {
  font-size: 100%;
  box-sizing: border-box;
}
body {
  line-height: 1.5;
  font-family: 'Roboto', Arial, sans-serif;
  color: #1c222b;
  background: #fafbfc;
  min-height: 100vh;
}
img, picture, video, canvas, svg {
  display: inline-block;
  max-width: 100%;
}
ul,ol {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus {
  outline: 2px solid #e1ad01;
  outline-offset: 2px;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

/* === ROOT COLORS & VARIABLE FALLBACK === */
:root {
  --brand-primary: #14324d;
  --brand-secondary: #d9e4ee;
  --brand-accent: #e1ad01;
  --brand-bg: #fafbfc;
  --text-main: #1c222b;
  --text-light: #f6f8fa;
  --focus: #e1ad01;
}

/* === TYPOGRAPHY === */
h1,h2,h3,h4 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  color: var(--brand-primary);
  letter-spacing: 0.01em;
}
h1 { font-size: 2.5rem; line-height: 1.12; margin-bottom: 16px; }
h2 { font-size: 2rem; line-height: 1.19; margin-bottom: 14px; }
h3 { font-size: 1.38rem; line-height: 1.28; margin-bottom: 10px; }
h4 { font-size: 1.15rem; margin-bottom: 8px; }

body, p, li, dd, dt {
  font-size: 1rem;
  line-height: 1.7;
  font-family: 'Roboto', Arial, sans-serif;
}
.subheadline {
  font-family: 'Montserrat', 'Roboto', sans-serif;
  font-size: 1.3rem;
  color: var(--brand-primary);
}

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

blockquote {
  font-style: italic;
  font-size: 1.24rem;
  color: var(--brand-primary);
  position: relative;
  padding-left: 20px;
  line-height: 1.5;
}
blockquote:before {
  content: '“';
  position: absolute;
  left: 0;
  top: 0;
  font-size: 2.5rem;
  color: var(--brand-accent);
  line-height: 1;
}

/* === CONTAINER & SPACING === */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.section { 
  margin-bottom: 60px; 
  padding: 40px 20px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  flex: 1 1 240px;
  min-width: 220px;
  max-width: 430px;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 6px 22px rgba(35,47,74,0.12);
  padding: 28px 22px 22px 22px;
  display: flex;
  flex-direction: column;
  transition: transform 0.18s, box-shadow 0.22s;
}
.card:hover {
  transform: translateY(-4px) scale(1.011);
  box-shadow: 0 8px 28px 2px rgba(35,47,74,0.23);
}
.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;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px 28px 22px 28px;
  margin-bottom: 32px;
  background: #fff;
  border-radius: 22px;
  border-left: 8px solid var(--brand-accent);
  box-shadow: 0 4px 20px rgba(31,51,83,0.10);
  color: var(--brand-primary);
  min-width: 220px;
  max-width: 600px;
}
.testimonial-card .by {
  font-weight: 700;
  color: var(--brand-primary);
  font-family: "Montserrat", 'Roboto', sans-serif;
  font-size: 1rem;
  opacity: 0.82;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  background: #fff;
  border-radius: 18px;
  padding: 18px 16px;
  box-shadow: 0 2px 8px rgba(20,50,77,0.10);
}

/* === HEADER & NAVIGATION === */
header {
  background: linear-gradient(85deg, #fff 78%, var(--brand-secondary) 100%);
  box-shadow: 0 4px 20px rgba(20,50,77,0.03);
  z-index: 900;
  position: relative;
  width: 100%;
}

header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 80px;
}
.logo img {
  height: 44px;
  min-width: 110px;
}

.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 500;
  font-size: 1.1rem;
  padding: 8px 4px;
  transition: color 0.17s;
  color: var(--brand-primary);
  border-bottom: 2px solid transparent;
}
.main-nav a:hover, .main-nav a.active {
  color: var(--brand-accent);
  border-bottom-color: var(--brand-accent);
}

.cta.primary {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  background: var(--brand-accent);
  color: #fff;
  border: none;
  border-radius: 34px;
  padding: 11px 30px;
  margin-left: 20px;
  font-size: 1.13rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  box-shadow: 0 2px 8px rgba(225,173,1,0.10);
  transition: background 0.23s, transform 0.18s, box-shadow 0.22s;
  cursor: pointer;
}
.cta.primary:hover {
  background: #cc9a01;
  transform: scale(1.04);
}

/* === MOBILE NAVIGATION === */
.mobile-menu-toggle {
  display: none;
  background: var(--brand-accent);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 2rem;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.17s;
  z-index: 1001;
}
.mobile-menu-toggle:focus {
  outline: 3px solid var(--focus);
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(20,50,77,0.97);
  z-index: 2001;
  transform: translateX(-100vw);
  transition: transform 0.36s cubic-bezier(.71,-0.25,.46,1.21);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 36px 26px 10px 26px;
  color: #fff;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2.4rem;
  color: #fff;
  background: transparent;
  border: none;
  margin-bottom: 30px;
  align-self: flex-end;
  cursor: pointer;
  transition: color 0.2s;
}
.mobile-menu-close:hover {
  color: var(--brand-accent);
}
.mobile-nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 600;
  padding: 10px 0;
  border-radius: 8px;
  background: none;
  transition: color 0.2s, background 0.18s;
}
.mobile-nav a:hover {
  color: var(--brand-accent);
  background: rgba(255,211,30, 0.09);
  padding-left: 14px;
}

@media (max-width: 1100px) {
  .main-nav {
    gap: 16px;
  }
}
@media (max-width: 950px) {
  .container {
    max-width: 97vw;
  }
  header .container {
    height: initial;
    min-height: 66px;
  }
  .logo img {
    height: 38px;
  }
  .main-nav a {
    font-size: 1rem;
  }
}
@media (max-width: 810px) {
  .main-nav, .cta.primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (max-width: 500px) {
  .logo img { height: 33px; }
}

/* === HERO / PAGE TOP === */
.hero {
  background: linear-gradient(100deg, var(--brand-secondary) 66%, #fff 100%);
  padding: 50px 0 30px 0;
  min-height: 285px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.hero .container {
  align-items: flex-start;
  justify-content: flex-end;
  flex-direction: column;
}
.hero h1 {
  font-size: 2.7rem;
  line-height: 1.15;
  margin-bottom: 8px;
  color: var(--brand-primary);
}
.hero p {
  color: var(--brand-primary);
  opacity: 0.96;
  font-size: 1.17rem;
  margin-bottom: 22px;
  max-width: 520px;
}
.hero .cta.primary {
  margin-left: 0;
  margin-top: 10px;
}

/* === FEATURES / ICON LISTS === */
.features {
  background: #fff;
  border-radius: 36px;
  margin-top: 38px;
}
.features .content-wrapper > h2 {
  margin-bottom: 26px;
}
.features ul, .features .feature-grid {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 32px 28px;
  justify-content: space-between;
}
.features ul li, .feature-grid li {
  flex: 1 1 210px;
  min-width: 222px;
  max-width: 350px;
  background: var(--brand-secondary);
  border-radius: 20px;
  box-shadow: 0 2px 20px rgba(20,50,77,0.08);
  padding: 28px 18px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 20px;
  gap: 14px;
  border-left: 5px solid var(--brand-accent);
  position: relative;
}
.features ul li img, .feature-grid li img {
  width: 42px;
  height: 42px;
  margin-bottom: 4px;
}
.features ul li h3 {
  color: var(--brand-primary);
  font-size: 1.18rem;
  margin-bottom: 4px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}
.features ul li p {
  color: var(--brand-primary);
  font-size: 1rem;
  opacity: 0.98;
}

/* === ABOUT & INFO LISTS === */
.about {
  background: linear-gradient(80deg, #fff 72%, var(--brand-secondary) 100%);
  border-radius: 28px;
}
.about h2, .about h1 {
  margin-bottom: 24px;
}
.about .text-section {
  display: flex;
  flex-direction: column;
  gap: 18px 0;
  margin-bottom: 8px;
}
.about .text-section ul {
  padding-left: 18px;
}
.about .text-section ul li {
  position: relative;
  margin-bottom: 13px;
  font-size: 1rem;
}
.about .text-section ul li:before {
  content: '•';
  color: var(--brand-accent);
  font-weight: bold;
  position: absolute;
  left: -12px;
  top: 0;
}

/* === FAQ === */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 26px;
}
.faq-list dt {
  font-family: "Montserrat", serif;
  color: var(--brand-primary);
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 7px;
}
.faq-list dd {
  font-size: 1rem;
  font-style: italic;
  margin-bottom: 14px;
  color: #2c3c54;
  margin-left: 10px;
}

/* === TESTIMONIALS === */
.testimonials .content-wrapper>h2 {
  margin-bottom: 28px;
}
.testimonials .testimonial-card {
  background: #fff;
  z-index: 1;
  box-shadow: 0 6px 22px rgba(35,47,74,0.10);
  border-left: 8px solid var(--brand-accent);
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 32px;
  font-family: 'Roboto', sans-serif;
}
.testimonials .testimonial-card:last-child {
  margin-bottom: 0;
}

/* === CONTACT SECTION === */
.contact .content-wrapper>h2 {
  margin-bottom: 22px;
}
.contact .text-section ul {
  width: 100%;
  margin-bottom: 18px;
}
.contact .text-section ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  font-size: 1.07rem;
}
.contact .text-section ul li img {
  height: 25px;
  width: 25px;
  margin-right: 2px;
}

/* === CARDS, SHADOWS & EFFECTS === */
.card, .testimonial-card, .feature-item {
  box-shadow: 0 4px 18px 1px rgba(31,51,83,0.10),0px 1.5px 8px 0px rgba(50,90,150,0.08);
  border-radius: 20px;
}

/* === FOOTER === */
footer {
  background: linear-gradient(92deg, #fff 68%, var(--brand-secondary) 100%);
  border-top: 4px solid var(--brand-secondary);
  margin-top: 70px;
  width: 100%;
  color: var(--brand-primary);
}
footer .container {
  flex-direction: column;
  align-items: center;
  padding: 0 16px 26px;
}
footer .content-wrapper {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.footer-nav a {
  color: var(--brand-primary);
  font-size: 1rem;
  font-family: 'Montserrat',sans-serif;
  opacity: 0.84;
  transition: color 0.17s, border-bottom 0.2s;
  border-bottom: 2px solid transparent;
  padding: 3px 0;
}
.footer-nav a:hover {
  color: var(--brand-accent);
  border-bottom: 2px solid var(--brand-accent);
}
.brand-footer img {
  height: 38px;
  margin: 8px 2px 14px 0;
}
.contact-footer {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 1rem;
  color: #213242;
  margin-top: 12px;
  opacity: 0.94;
}
.contact-footer div {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
}
.contact-footer img {
  width: 1.2em; height: 1.2em;
  margin-right: 3px;
}

@media (max-width: 1100px) {
  footer .content-wrapper {
    gap: 24px;
  }
}
@media (max-width: 900px) {
  footer .content-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    padding: 0;
  }
  .footer-nav {
    margin-bottom: 12px;
  }
}

/* === RESPONSIVE LAYOUTS === */
@media (max-width: 768px) {
  .hero, .section, .features, .about, .testimonials, .contact {
    padding-left: 0;
    padding-right: 0;
    border-radius: 0;
  }

  .features ul, .features .feature-grid, .content-grid {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
  .card-container, .content-grid {
    flex-direction: column;
    gap: 20px;
  }
  .section, .about, .features {
    margin-bottom: 40px;
    padding: 28px 7vw;
  }
  .testimonial-card {
    max-width: 99vw;
    padding: 14px 7vw 15px 7vw;
  }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }
  .features ul li, .feature-grid li {
    min-width: 0;
    max-width: 100%;
    border-left-width: 4px;
    padding: 24px 12px 16px;
  }
}
@media (max-width: 600px) {
  h1 { font-size: 1.56rem; }
  h2 { font-size: 1.18rem; }
  .hero h1 {
    font-size: 1.49rem;
    margin-bottom: 7px;
  }
  .hero p { font-size: 1.05rem; }
  .main-nav a, .mobile-nav a {
    font-size: 1rem;
  }
  .about, .features, .testimonials, .contact, .section, .hero {
    padding-left: 4vw;
    padding-right: 4vw;
  }
  .footer-nav a { font-size: .97rem; padding: 2px 0; }
}

/* === BUTTON STYLES & MICRO-INTERACTIONS === */
.cta, button {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  border: none;
  cursor: pointer;
  transition: background 0.21s, color 0.18s, box-shadow 0.18s, transform 0.16s;
  outline: none;
  font-weight: 700;
}
.cta.primary, button.primary {
  background: var(--brand-accent);
  color: #fff;
  border-radius: 30px;
  padding: 10px 28px;
  font-size: 1.13rem;
  box-shadow: 0 1.5px 8px 0px rgba(225,173,1,0.12);
  margin-top: 10px;
  margin-bottom: 10px;
}
.cta.primary:hover, button.primary:hover {
  background: #b89206;
  transform: scale(1.04) translateY(-1px);
}
.cta.secondary, button.secondary {
  background: #fff;
  color: var(--brand-primary);
  border: 2px solid var(--brand-accent);
  border-radius: 30px;
  padding: 10px 26px;
  font-size: 1.09rem;
  box-shadow: 0 2px 8px 0px rgba(225,173,1,0.05);
}
.cta.secondary:hover, button.secondary:hover {
  background: var(--brand-accent);
  color: #fff;
}

/* === COOKIE BANNER === */
.cookie-banner {
  position: fixed;
  z-index: 9000;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #fffbe8;
  color: #222;
  box-shadow: 0 -2px 18px rgba(31,51,83,.13);
  padding: 20px 24px 15px 24px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 32px;
  justify-content: space-between;
  transition: transform 0.28s cubic-bezier(.71,-0.25,.46,1.21);
}
.cookie-banner.hide {
  transform: translateY(100%);
}
.cookie-banner .cookie-text {
  max-width: 540px;
  font-size: 1.05rem;
  color: var(--brand-primary);
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
}
.cookie-banner button {
  min-width: 125px;
  padding: 9px 18px;
  border-radius: 18px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  box-shadow: 0 1.5px 8px 0px rgba(225,173,1,0.03);
  transition: background 0.21s, color 0.17s;
}
.cookie-banner button.accept {
  background: var(--brand-accent);
  color: #fff;
  border: none;
}
.cookie-banner button.accept:hover {
  background: #b89206;
}
.cookie-banner button.reject {
  background: #ededed;
  color: var(--brand-primary);
  border: 1.5px solid #ddd;
}
.cookie-banner button.reject:hover {
  background: #ffe;
  color: #b89206;
}
.cookie-banner button.settings {
  background: #fff;
  color: var(--brand-primary);
  border: 1.5px solid var(--brand-accent);
}
.cookie-banner button.settings:hover {
  background: var(--brand-accent);
  color: #fff;
}

@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
    padding: 16px 10px 11px 10px;
  }
  .cookie-banner .cookie-text {
    max-width: 100%;
  }
  .cookie-banner .cookie-actions {
    width: 100%;
    gap: 10px;
    justify-content: flex-end;
  }
}

/* COOKIE MODAL PREFERENCES */
.cookie-modal {
  position: fixed;
  z-index: 9999;
  left: 0; right: 0; top: 0; bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10,30,45,0.52);
  transition: opacity 0.3s;
  opacity: 1;
  pointer-events: all;
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal-content {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 8px 44px rgba(39,53,80,0.18);
  max-width: 99vw;
  width: 350px;
  padding: 32px 28px 28px 28px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 18px;
}
.cookie-modal-content h2 {
  font-size: 1.25rem;
  color: var(--brand-primary);
  margin-bottom: 8px;
}
.cookie-modal-close {
  position: absolute;
  right: 22px;
  top: 19px;
  background: transparent;
  border: none;
  font-size: 1.6rem;
  color: var(--brand-accent);
  cursor: pointer;
  z-index: 10100;
}
.cookie-modal-category {
  background: #f3f6fa;
  padding: 12px 16px;
  border-radius: 12px;
  margin-bottom: 13px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
.cookie-modal-category.essential {
  background: #eaeaea;
  color: #5a5a5a;
}
.cookie-modal-category label {
  font-size: 1.07rem;
}
.cookie-modal-category input[type="checkbox"] {
  accent-color: var(--brand-accent);
  width: 22px;
  height: 22px;
  margin-left: 6px;
}
.cookie-modal-footer {
  margin-top: 22px;
  display: flex;
  flex-direction: row;
  gap: 18px;
  justify-content: flex-end;
}
.cookie-modal-footer button {
  min-width: 94px;
  border-radius: 16px;
  font-size: 1.03rem;
  padding: 9px 14px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  border: none;
  transition: background 0.18s, color 0.17s;
}
.cookie-modal-footer .save {
  background: var(--brand-accent);
  color: #fff;
}
.cookie-modal-footer .save:hover {
  background: #b89206;
}
.cookie-modal-footer .cancel {
  background: #ededed;
  color: var(--brand-primary);
}
.cookie-modal-footer .cancel:hover {
  background: #fffbe8;
}

@media (max-width: 430px) {
  .cookie-modal-content {
    padding: 13px 7vw 9px 7vw;
    min-width: 0;
    width: 95vw;
    box-sizing: border-box;
  }
}

/* === ANIMATIONS & MICROINTERACTIONS === */
.cta, .cookie-banner button, .mobile-menu-toggle, .main-nav a, .footer-nav a, .mobile-menu-close, .mobile-nav a {
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, border-bottom 0.2s, padding 0.2s, transform 0.17s;
}
.card, .testimonial-card, .feature-item {
  transition: box-shadow 0.17s, transform 0.14s;
}
.card:hover, .feature-item:hover {
  box-shadow: 0 8px 22px 3px rgba(31,51,83,0.18);
  transform: translateY(-4px) scale(1.017);
}

/* === MISC / UTILITY === */
::-webkit-scrollbar {
  width: 9px;
  background: #e3e8ee;
}
::-webkit-scrollbar-thumb {
  background: var(--brand-secondary);
  border-radius: 7px;
}

/* === UNIQUE ARTISTIC ELEMENTS === */
.hero h1, .about h1, .about h2, .features h2, .testimonials h2, .contact h2, .faq-list dt {
  position: relative;
}
.hero h1:after, .about h2:after, .features h2:after, .testimonials h2:after, .contact h2:after, .faq-list dt:after {
  content: '';
  display: inline-block;
  margin-left: 10px;
  width: 18px;
  height: 7px;
  background: var(--brand-accent);
  border-radius: 12px 12px 5px 5px;
  vertical-align: middle;
  opacity: 0.55;
}

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 STYLE.CSS === */
