/* RESET & BASE STYLES */
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,main,menu,nav,section {
  display: block;
}
body {
  line-height: 1.5;
  background: #111723; /* Futuristic base bg */
  color: #F4F7FB;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
  border: none;
}
ul,ol {
  margin-left: 20px;
  margin-bottom: 1em;
}
a {
  color: #11A65E;
  text-decoration: none;
  transition: color 0.2s cubic-bezier(.4,1.6,.25,1);
}
a:hover,
a:focus {
  color: #F4F7FB;
  text-shadow: 0 0 6px #11A65E;
}

/* TYPOGRAPHY */
h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.5rem;
  color: #FAFAFE;
  font-weight: 700;
  letter-spacing: 0.01em;
  margin-bottom: 24px;
  line-height: 1.15;
}
h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2rem;
  color: #11A65E;
  font-weight: 600;
  margin-bottom: 18px;
}
h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  color: #F4F7FB;
  font-weight: 500;
  margin-bottom: 12px;
}
h4,h5,h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #11A65E;
  font-weight: 500;
  margin-bottom: 12px;
}
p,li,td,th {
  color: #D5E6F3;
  font-size: 1rem;
}
strong,b {
  font-weight: 700;
  color: #FAFAFE;
}

/* CONTAINER */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}
.content-wrapper {
  margin: 0 auto;
  padding: 0;
  width: 100%;
}

/* HEADER + NAVIGATION */
header {
  background: #183153;
  box-shadow: 0 2px 12px 0 rgba(7,30,55,0.14), 0 0 0 1px #203F67;
  position: sticky;
  top: 0;
  z-index: 100;
}
header .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}
header img {
  height: 44px;
  width: auto;
}
header nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  padding: 6px 14px;
  border-radius: 22px;
  color: #F4F7FB;
  transition: background 0.15s, color 0.15s;
}
header nav a.primary-cta {
  background: #11A65E;
  color: #FAFAFE;
  box-shadow: 0 2px 8px 0 rgba(17,166,94,0.15);
  border: none;
  font-weight: 700;
  margin-left: 8px;
  letter-spacing: 0.06em;
  transition: background 0.2s;
}
header nav a.primary-cta:hover,
header nav a.primary-cta:focus {
  background: #0EB56B;
  color: #FFF;
  box-shadow: 0 0 16px #11A65E;
}
header nav a:hover,
header nav a:focus {
  background: rgba(17,166,94,0.08);
  color: #11A65E;
}
.mobile-menu-toggle {
  display: inline-flex;
  align-items: center;
  font-size: 2rem;
  background: none;
  border: none;
  color: #11A65E;
  cursor: pointer;
  margin-left: 8px;
  padding: 8px 12px;
  border-radius: 8px;
  transition: background 0.2s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: rgba(17,166,94,0.12);
}

/* Hide nav on mobile */
@media (max-width: 950px) {
  header nav { display: none; }
  .mobile-menu-toggle { display: inline-flex; }
}
@media (min-width: 951px) {
  .mobile-menu-toggle { display: none; }
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(24,49,83, 0.97);
  z-index: 2000;
  transform: translateX(-100vw);
  transition: transform 0.35s cubic-bezier(.74,0,.36,1.08);
  display: flex;
  flex-direction: column;
  pointer-events: none;
}
.mobile-menu.active {
  transform: translateX(0vw);
  pointer-events: auto;
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 24px 22px 10px 0;
  font-size: 2.3rem;
  background: none;
  border: none;
  color: #11A65E;
  cursor: pointer;
  z-index: 2010;
  transition: color 0.2s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #F4F7FB;
  text-shadow: 0 0 12px #11A65E;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  margin: 40px 0 24px 32px;
}
.mobile-nav a {
  color: #FAFAFE;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.2rem;
  background: none;
  padding: 10px 8px;
  border-radius: 10px;
  width: auto;
  transition: background 0.17s, color 0.17s;
  min-width: 180px;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #11A65E;
  color: #111723;
}

@media (min-width: 951px) {
  .mobile-menu { display: none !important; }
}

/* HERO SECTION */
.hero-section {
  background: linear-gradient(90deg, #183153 60%, #11A65E 100%);
  background-size: 280% 280%;
  animation: bg-anim 11s ease-in-out infinite alternate;
  padding-top: 40px;
  padding-bottom: 56px;
}
@keyframes bg-anim {
  0% { background-position: 0% 20%; }
  100% { background-position: 80% 100%; }
}
.hero-section .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
}
.hero-section h1 {
  font-size: 2.3rem;
  margin-bottom: 18px;
  color: #F4F7FB;
  text-shadow: 0 2px 14px #183153, 0 0 2px #11A65E;
}
.hero-section p {
  font-size: 1.2rem;
  margin-bottom: 22px;
  color: #B8CCE0;
  max-width: 620px;
}
.cta-button {
  display: inline-flex;
  align-items: center;
  background: #11A65E;
  color: #111723;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  border: none;
  border-radius: 30px;
  padding: 15px 38px;
  text-align: center;
  letter-spacing: 0.06em;
  box-shadow: 0 4px 15px 0 rgba(55,255,178,0.19);
  margin-top: 18px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.28s cubic-bezier(.8,1.8,.25,1);
  text-decoration: none;
  outline: none !important;
}
.cta-button:hover,
.cta-button:focus {
  background: #18cf96;
  color: #111723;
  box-shadow: 0 0 32px 0 #11A65E;
}
.secondary-cta {
  display: inline-flex;
  color: #11A65E;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.04rem;
  border-radius: 22px;
  border: 2px solid #11A65E;
  padding: 12px 28px;
  margin-left: 18px;
  margin-top: 18px;
  font-weight: 500;
  background: transparent;
  transition: background 0.2s, color 0.2s, border 0.2s;
}
.secondary-cta:hover,
.secondary-cta:focus {
  background: #11A65E;
  color: #183153;
  border-color: #11A65E;
}

/* SECTIONS - PADDING & SPACING */
section, .section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
@media (max-width: 768px) {
  section, .section {
    padding: 22px 7px;
    margin-bottom: 35px;
  }
}

/* CARD & FLEX LAYOUTS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #183153;
  border-radius: 18px;
  box-shadow: 0 6px 28px 0 rgba(17,166,94,0.13), 0 1.5px 0 0 #11A65E;
  margin-bottom: 20px;
  position: relative;
  padding: 32px 28px;
  flex: 1 1 320px;
  min-width: 250px;
  transition: transform 0.19s cubic-bezier(.68,1.3,.12,1), box-shadow 0.19s;
}
.card:hover {
  transform: translateY(-5px) scale(1.01);
  box-shadow: 0 10px 36px 0 #11A65E,0 3px 6px 0 rgba(17,166,94,0.09);
}
.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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
  .content-grid {
    flex-direction: column;
    gap: 18px;
  }
}

/* FEATURES AND ICON LISTS */
.feature-grid, .service-list, .step-by-step, .pro-tip-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 32px 0 14px 0;
  padding: 0;
}
.feature-grid li, .service-list li, .step-by-step li, .pro-tip-list li {
  background: #111723;
  border-radius: 16px;
  box-shadow: 0 3px 20px #10234442, 0 0px 0 1px #11A65E55;
  padding: 28px 22px 21px 22px;
  flex: 1 1 225px;
  min-width: 210px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  transition: box-shadow 0.19s, transform 0.16s;
  margin-bottom: 20px;
  position: relative;
}
.feature-grid li:hover, .service-list li:hover, .step-by-step li:hover {
  box-shadow: 0 6px 20px #11A65EAA;
  transform: translateY(-4px) scale(1.022);
}
.feature-grid img, .service-list img, .step-by-step img {
  height: 40px;
  width: 40px;
  margin-bottom: 6px;
}

.step-by-step {
  counter-reset: stepnum;
  gap: 24px;
}
.step-by-step li {
  position: relative;
  padding-left: 50px;
  min-width: 250px;
}
.step-by-step li::before {
  counter-increment: stepnum;
  content: counter(stepnum);
  position: absolute;
  top: 20px; left: 12px;
  font-size: 1.4rem;
  width: 32px; height: 32px;
  background: #11A65E;
  color: #183153;
  font-weight: bold;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 8px #11A65E44;
}

@media (max-width: 900px) {
  .feature-grid, .service-list, .step-by-step {
    flex-direction: column;
    gap: 14px;
  }
  .feature-grid li, .service-list li, .step-by-step li {
    min-width: 0;
    width: 100%;
  }
}

/* TESTIMONIALS */
.testimonials {
  background: #F4F7FB;
  color: #183153;
  border-radius: 36px;
  padding-top: 50px;
  padding-bottom: 38px;
  margin-bottom: 60px;
}
.testimonials h2 { color: #183153; }
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin: 32px 0 18px 0;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 28px 24px 28px;
  background: #FFF;
  border-radius: 20px;
  box-shadow: 0 4px 24px #11A65E13, 0 0 0 1.5px #11A65E11;
  flex: 1 1 256px;
  min-width: 210px;
  margin-bottom: 20px;
  transition: box-shadow 0.2s, transform 0.21s;
}
.testimonial-card p {
  color: #183153;
  margin-bottom: 12px;
  font-size: 1.08rem;
}
.testimonial-info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 0.98rem;
  color: #183153;
}
.star-rating {
  color: #FFD700;
  font-size: 1.18em;
  margin-left: 4px;
}
.testimonials .trust-badges {
  color: #11A65E;
  font-weight: 600;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.05rem;
  margin-top: 18px;
  text-align: center;
  letter-spacing: 0.03em;
}
@media (max-width: 800px) {
  .testimonial-slider {
    flex-direction: column;
    gap: 18px;
  }
}

/* CTA BANNER */
.cta-banner {
  background: #183153;
  border-radius: 26px;
  box-shadow: 0 2px 20px #18315333;
  padding: 54px 24px 46px 24px;
  margin-bottom: 60px;
  text-align: center;
}
.cta-banner.accent {
  background: #11A65E;
  box-shadow: 0 0 18px 4px #11A65E38;
}
.cta-banner.accent h2 {
  color: #183153;
}
.cta-banner.accent p {
  color: #072144;
}
.cta-banner .cta-button,
.cta-banner .secondary-cta {
  margin: 18px 14px 0 0;
}

/* PRICING TABLE */
.pricing-table {
  width: 100%;
  margin: 28px 0 22px 0;
  border-spacing: 0;
  border-collapse: collapse;
  background: #101F35;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 1px 12px #101F3540;
}
.pricing-table th, .pricing-table td {
  padding: 18px 14px;
  text-align: left;
}
.pricing-table th {
  background: #11A65E;
  color: #111723;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.12rem;
}
.pricing-table td {
  border-top: 1px solid #11A65E30;
  color: #D5E6F3;
}
@media (max-width: 640px) {
  .pricing-table th, .pricing-table td {
    padding: 11px 4px;
    font-size: 0.96rem;
  }
}

/* ACCORDION FAQ */
.accordion-faq {
  margin: 32px 0 24px 0;
}
.accordion-faq h2 {
  color: #11A65E;
  font-size: 1.3rem;
  margin-bottom: 16px;
}
.faq-item {
  background: #1B2F4B;
  border-radius: 14px;
  box-shadow: 0 1px 12px #11A65E13;
  margin-bottom: 20px;
  padding: 18px 22px;
  transition: box-shadow 0.2s;
}
.faq-item h3 {
  margin-bottom: 9px;
  color: #11A65E;
  font-size: 1.09rem;
}
.faq-item p {
  color: #BBCFDA;
}

/* SUPPORT HINTS etc. */
.support-hint {
  background: #11A65E15;
  border-radius: 10px;
  margin-top: 18px;
  padding: 12px 18px;
  color: #11A65E;
}
.support-hint a { text-decoration: underline; }

/* FOOTER */
footer {
  background: #101F35;
  color: #F4F7FB;
  padding: 38px 0 16px 0;
  margin-top: 72px;
  border-top: 1.2px solid #183153;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 12px;
}
footer nav a {
  color: #11A65E;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
}
.footer-contact {
  font-size: 0.96rem;
  color: #BBCFDA;
  line-height: 1.6;
}
.footer-contact a { color: #11A65E; }
@media (max-width: 800px) {
  footer .container {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
}

/* COOKIE BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: #183153;
  color: #F4F7FB;
  box-shadow: 0 -4px 22px #18315338;
  padding: 24px 12px 22px 12px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
  justify-content: center;
  font-size: 1rem;
  transition: transform 0.3s;
  min-height: 82px;
  border-top: 4px solid #11A65E;
}
.cookie-banner.hide {
  transform: translateY(120%);
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  border-radius: 22px;
  border: none;
  margin: 0 2px;
  padding: 10px 24px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.cookie-banner .cookie-accept {
  background: #11A65E;
  color: #191F25;
}
.cookie-banner .cookie-accept:hover,
.cookie-banner .cookie-accept:focus {
  background: #13c97c;
}
.cookie-banner .cookie-reject {
  background: transparent;
  border: 2px solid #11A65E;
  color: #11A65E;
}
.cookie-banner .cookie-reject:hover,
.cookie-banner .cookie-reject:focus {
  background: #11A65E;
  color: #183153;
}
.cookie-banner .cookie-settings {
  background: #222E48;
  color: #F4F7FB;
  border: 2px solid #11A65E;
}
.cookie-banner .cookie-settings:hover,
.cookie-banner .cookie-settings:focus {
  background: #11A65E;
  color: #183153;
}
@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    gap: 12px;
    text-align: center;
    font-size: 0.97rem;
    padding: 18px 5px 17px 5px;
  }
  .cookie-banner .cookie-actions {
    gap: 9px;
  }
}

/* COOKIE MODAL */
.cookie-modal {
  display: none;
  position: fixed;
  z-index: 10001;
  left: 0; top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(24,49,83,0.96);
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
}
.cookie-modal.active {
  display: flex;
}
.cookie-modal .modal-dialog {
  background: #F4F7FB;
  color: #183153;
  border-radius: 18px;
  box-shadow: 0 8px 44px #18315355;
  padding: 34px 34px 30px 32px;
  width: 100%;
  max-width: 440px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}
.cookie-modal .modal-close {
  position: absolute;
  top: 12px; right: 18px;
  background: none;
  border: none;
  font-size: 2rem;
  color: #11A65E;
  cursor: pointer;
}
.cookie-modal .modal-close:hover,
.cookie-modal .modal-close:focus {
  color: #183153;
}
.cookie-modal h2 {
  color: #11A65E;
  font-size: 1.18rem;
  margin-bottom: 6px;
}
.cookie-modal .category {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 17px;
}
.cookie-modal .category label {
  font-size: 1rem;
  color: #183153;
  font-weight: 500;
}
.cookie-modal .toggle-switch {
  display: inline-flex;
  align-items: center;
  height: 24px;
}
.toggle-switch input[type='checkbox'] {
  display: none;
}
.toggle-switch .slider {
  width: 36px;
  height: 18px;
  background: #ccc;
  border-radius: 12px;
  position: relative;
  cursor: pointer;
  transition: background 0.2s;
}
.toggle-switch .slider::before {
  content: '';
  display: block;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #FFF;
  box-shadow: 0 1px 4px #18315344;
  position: absolute;
  left: 2px; top: 1.5px;
  transition: left 0.21s, background 0.2s;
}
.toggle-switch input:checked + .slider {
  background: #11A65E;
}
.toggle-switch input:checked + .slider::before {
  left: 19px;
  background: #FFF;
}
.cookie-modal .modal-btns {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 12px;
  flex-wrap: wrap;
}
.cookie-modal .modal-btns button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  border-radius: 22px;
  border: none;
  padding: 10px 24px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
}
.cookie-modal .modal-btns .cookie-accept {
  background: #11A65E;
  color: #191F25;
}
.cookie-modal .modal-btns .cookie-accept:hover {
  background: #13c97c;
}
.cookie-modal .modal-btns .cookie-reject {
  background: #F4F7FB;
  border: 2px solid #11A65E;
  color: #11A65E;
}
.cookie-modal .modal-btns .cookie-reject:hover {
  background: #11A65E;
  color: #F4F7FB;
}

@media (max-width: 520px) {
  .cookie-modal .modal-dialog {
    padding: 23px 9px 18px 9px;
    border-radius: 11px;
  }
}

/* TEXT BLOCKS / GENERIC */
.text-section, .privacy-policy-text, .gdpr-compliance-text, .terms-conditions-text, .cookie-policy-text {
  padding: 16px 0;
  margin-bottom: 11px;
}
.text-section ul, .privacy-policy-text ul, .gdpr-compliance-text ul, .terms-conditions-text ul, .cookie-policy-text ul {
  margin-left: 23px;
}

.opening-hours, .contact-details {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.opening-hours img, .contact-details img {
  height: 16px;
  width: 16px;
  margin-right: 7px;
  align-self: flex-start;
}

.map-section, .benefits, .delivery-tips {
  background: #111723;
  border-radius: 18px;
}
.confirmation-section, .thank-you-message, .next-steps {
  background: #183153;
  border-radius: 12px;
  box-shadow: 0 2px 16px #11A65E28;
  padding: 22px 18px;
  margin-bottom: 24px;
}
.thank-you-message p {
  color: #18cf96;
  font-size: 1.11em;
  margin-bottom: 16px;
  font-weight: 700;
}
.next-steps li {
  color: #B8CCE0;
}

/* Misc utility spacing */
.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 8px !important; }
.mb-2 { margin-bottom: 16px !important; }
.mr-1 { margin-right: 8px !important; }

/* NEON GLOW EFFECT */
.neon {
  color: #11A65E;
  text-shadow: 0 0 3px #11A65E, 0 0 5px #11A65E77;
}

/* ANIMATIONS & TRANSITIONS */
.card, .card-container, .feature-item, .testimonial-card, .cta-banner, .faq-item {
  transition: box-shadow 0.16s, background 0.15s, transform 0.15s;
}
.button,
.cta-button, .secondary-cta {
  transition: background 0.16s, color 0.16s, box-shadow 0.21s;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1130px) {
  .container { max-width: 97vw; }
}
@media (max-width: 768px) {
  h1 { font-size: 1.57rem; }
  h2 { font-size: 1.23rem; }
  .card, .testimonial-card {
    padding: 17px 11px;
  }
  .cta-banner {
    padding: 23px 8px 23px 8px;
    border-radius: 13px;
  }
}
@media (max-width: 640px) {
  header .container, footer .container {
    flex-direction: column;
    height: auto;
    gap: 10px;
  }
}

/* ACCESSIBILITY */
:focus {
  outline: 2px solid #11A65E;
  outline-offset: 1.5px;
}

/* CUSTOM SCROLLBAR */
::-webkit-scrollbar { width: 8px; background: #194064; }
::-webkit-scrollbar-thumb { background: #11A65E; border-radius: 6px; }

/* OVERRIDES FOR COLOR CONTRAST IN TESTIMONIALS */
.testimonial-card,
.testimonials, .testimonial-card p, .testimonial-card strong, .testimonial-card .testimonial-info, .testimonial-card .star-rating {
  color: #183153 !important;
  background: #F4F7FB !important;
}

/* SPACING RULES */
.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; }

/* OVERRIDES FOR LAYOUT SPACING */
.card, .testimonial-card, .feature-item {
  margin-bottom: 20px;
}
