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

html {
  scroll-behavior: smooth;
}
body {
  line-height: 1.55;
  font-family: 'Open Sans', Arial, sans-serif;
  color: #1F3556;
  background: #FFFFFF;
  background-color: #FFFFFF;
}

*, *:before, *:after {
  box-sizing: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #F46A0E;
  text-decoration: none;
  transition: color 0.18s;
}
a:hover, a:focus {
  color: #f57d27;
  outline: none;
}

/* --- TYPOGRAPHY SCALE --- */
h1 {
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 900;
  font-size: 2.5rem;
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
  color: #1F3556;
}
@media (max-width: 480px) {
  h1 {
    font-size: 2rem;
  }
}
h2 {
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 900;
  font-size: 2rem;
  line-height: 1.23;
  letter-spacing: -0.3px;
  margin-bottom: 12px;
  color: #1F3556;
}
h3 {
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.35rem;
  line-height: 1.2;
  margin-bottom: 8px;
  color: #1F3556;
}
h4, h5, h6 {
  font-weight: 700;
  color: #1F3556;
}
p, ul, ol {
  margin-bottom: 1em;
  color: #223854;
}
strong {
  font-weight: bold;
  color: #1F3556;
}
subheadline,
.subheadline {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1.18rem;
  letter-spacing: 0.1px;
  color: #F46A0E;
  font-weight: 700;
  margin-bottom: 20px;
}

/* --- MAIN LAYOUT CONTAINER --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

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

@media (max-width: 768px) {
  .section {
    margin-bottom: 36px;
    padding: 20px 6px;
  }
  .container {
    padding-left: 8px;
    padding-right: 8px;
  }
}

/* --- HEADER & NAVIGATION --- */
header {
  width: 100%;
  background: #1F3556;
  box-shadow: 0 6px 16px rgba(31,53,86,0.05);
  position: sticky;
  top: 0;
  z-index: 1001;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 16px;
}
nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
nav a {
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: #EDEDED;
  padding: 8px 2px;
  transition: color 0.2s, border-bottom 0.2s;
  border-bottom: 2px solid transparent;
}
nav a:hover, nav a:focus {
  color: #F46A0E;
  border-bottom: 2px solid #F46A0E;
  background: rgba(244,106,14,0.05);
}
.cta-button {
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: bold;
  font-size: 1.06rem;
  background: #F46A0E;
  color: #fff;
  border: none;
  border-radius: 32px;
  padding: 12px 32px;
  margin-left: 8px;
  box-shadow: 0 2px 12px rgba(244,106,14,0.13);
  transition: background 0.17s, box-shadow 0.17s, transform 0.13s;
  cursor: pointer;
  outline: none;
  display: inline-block;
}
.cta-button:hover, .cta-button:focus {
  background: #f57d27;
  color: #fff;
  transform: translateY(-2px) scale(1.025);
  box-shadow: 0 6px 22px rgba(244,106,14,0.13);
}

/* --- MOBILE MENU --- */
.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  background: none;
  color: #F46A0E;
  border: none;
  margin-left: 12px;
  cursor: pointer;
  transition: color 0.18s, transform 0.17s;
  outline: none;
}
.mobile-menu-toggle:active {
  transform: scale(0.92);
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background: #1F3556;
  z-index: 2002;
  transform: translateX(-100%);
  transition: transform 0.34s cubic-bezier(.73,.32,.29,.96);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0;
  gap: 0;
}
.mobile-menu.open {
  transform: translateX(0%);
}
.mobile-menu-close {
  font-size: 2.4rem;
  background: none;
  border: none;
  color: #fff;
  padding: 18px 24px 6px 18px;
  cursor: pointer;
  align-self: flex-end;
  transition: color 0.19s, transform 0.14s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #F46A0E;
  transform: scale(1.09);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 36px 28px;
}
.mobile-nav a {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
  padding: 11px 2px;
  border-radius: 7px;
  transition: background 0.17s, color 0.17s;
  outline: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #F46A0E;
  background: rgba(244,106,14,0.10);
}
@media (max-width: 992px) {
  nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 993px) {
  .mobile-menu {
    display: none !important;
  }
}

/* --- HERO & CTA SECTIONS --- */
.hero-section {
  background: #EDEDED;
  background-color: #EDEDED;
  display: flex;
  align-items: center;
  min-height: 290px;
  padding: 60px 0 40px 0;
  margin-bottom: 44px;
  box-shadow: 0 12px 28px -14px rgba(31,53,86,0.09);
  border-radius: 0 0 30px 30px;
}
@media (max-width: 768px) {
  .hero-section {
    min-height: 180px;
    padding: 36px 0 24px 0;
    margin-bottom: 24px;
    border-radius: 0 0 12px 12px;
  }
}
.cta {
  background: #1F3556;
  color: #fff;
  text-align: center;
  padding: 32px 0;
  border-radius: 22px;
  box-shadow: 0 10px 33px -15px rgba(31,53,86,0.17);
}
.cta h2,
.cta p {
  color: #fff;
}
.cta .cta-button {
  background: #F46A0E;
  color: #fff;
  margin: 20px 0 0 0;
}
.cta .cta-button:hover, .cta .cta-button:focus {
  background: #f57d27;
}

/* --- FEATURES & CARDS FLEX LAYOUTS --- */
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: flex-start;
  margin-top: 16px;
  margin-bottom: 16px;
}
.feature {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 4px 18px -6px rgba(244,106,14,0.09), 0 1.5px 5px -1.5px rgba(31,53,86,.07);
  padding: 28px 22px;
  width: 234px;
  min-width: 216px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
  transition: box-shadow 0.2s, transform 0.15s;
  margin-bottom: 20px;
  position: relative;
}
.feature img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  margin-bottom: 5px;
}
.feature:hover, .feature:focus {
  box-shadow: 0 8px 32px -10px rgba(244,106,14,.19), 0 2.5px 11px -2.18px rgba(31,53,86,.13);
  transform: translateY(-3px) scale(1.028);
}
@media (max-width: 992px) {
  .features-grid {
    gap: 20px;
  }
  .feature {
    width: 48%;
    min-width: 0;
    padding: 20px 10px;
    font-size: 0.98rem;
  }
}
@media (max-width: 600px) {
  .features-grid {
    flex-direction: column;
    gap: 14px;
  }
  .feature {
    width: 100%;
    padding: 16px 7px;
    font-size: 0.96rem;
  }
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 18px -6px rgba(31,53,86,0.10);
  padding: 20px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.14s, box-shadow 0.15s;
}
.card:hover, .card:focus {
  box-shadow: 0 8px 28px -8px rgba(244,106,14,0.13), 0 7px 24px -5px rgba(31,53,86,0.10);
  transform: translateY(-3px) scale(1.017);
}

/* --- CONTENT FLEX LAYOUTS & SPACING --- */
.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) {
  .content-grid, .text-image-section {
    flex-direction: column;
    gap: 17px;
  }
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* --- SERVICE LIST STYLES --- */
.service-list li,
.usp-list li {
  list-style: none;
  padding: 0 0 0 24px;
  margin-bottom: 11px;
  position: relative;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1.06rem;
  color: #29395A;
}
.service-list li:before,
.usp-list li:before {
  content: '';
  display: inline-block;
  width: 13px;
  height: 13px;
  background: #F46A0E;
  border-radius: 60%;
  position: absolute;
  top: 6px;
  left: 0;
}
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 40px;
  padding: 0;
  margin-bottom: 14px;
}
@media (max-width: 700px) {
  .service-list {
    gap: 2px 0px;
    flex-direction: column;
  }
}

.service-detail-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  list-style: none;
}
.service-detail-list li {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 3px 16px -7px rgba(244,106,14,.09);
  padding: 22px 15px 16px 15px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 0;
  position: relative;
  min-height: 84px;
  font-size: 1.08rem;
}
.service-detail-list li div {
  width: 36px;
  min-width: 36px;
  align-self: flex-start;
}
.service-detail-list li strong {
  font-size: 1.11rem;
}
@media (max-width: 600px) {
  .service-detail-list li {
    flex-direction: column;
    gap: 8px;
    padding: 13px 7px 9px 7px;
  }
  .service-detail-list {
    gap: 12px;
  }
}

/* --- TABLE STYLES FOR PRICING PAGE --- */
table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 1rem;
  background: #fff;
  border-radius: 11px;
  overflow: hidden;
  box-shadow: 0 3px 18px -9px rgba(31,53,86,0.08);
  margin-bottom: 18px;
}
table th, table td {
  padding: 16px 10px;
  border-bottom: 1px solid #EDEDED;
}
table th {
  background: #F46A0E;
  color: #fff;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: bold;
  letter-spacing: 0.5px;
}
table tr:last-child td {
  border-bottom: none;
}
tbody td {
  color: #1F3556;
  font-weight: 500;
}

/* --- TESTIMONIALS --- */
.testimonials,
.testimonials .container {
  width: 100%;
}
.testimonial-card {
  background: #F7F9FB;
  color: #1F3556;
  border-radius: 17px;
  box-shadow: 0 4px 16px -8px rgba(244,106,14,0.10);
  margin-bottom: 20px;
  margin-top: 10px;
  font-size: 1.14rem;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
  min-height: 64px;
  transition: box-shadow 0.16s, transform 0.12s;
}
.testimonial-card p {
  flex: 1 1 0%;
  margin-bottom: 0.5em;
}
.testimonial-card strong {
  color: #F46A0E;
  margin-left: 15px;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 900;
  font-size: 1.1rem;
}
.testimonial-card:hover, .testimonial-card:focus {
  box-shadow: 0 8px 26px -10px rgba(31,53,86,0.20);
  transform: scale(1.013);
}
.testimonial-rating-summary {
  margin: 10px 0 0 0;
  font-size: 1.14rem;
  font-weight: 700;
  color: #1F3556;
  background: #fff;
  border-radius: 12px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 9px;
  box-shadow: 0 2px 13px -8px rgba(244,106,14,0.11);
  min-height: 38px;
}

@media (max-width: 700px) {
  .testimonial-card, .testimonial-rating-summary {
    font-size: 1.01rem;
    padding: 14px 10px;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    min-width: 0;
  }
}

/* --- TEXT SECTION, UL/OL --- */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.text-section ul, .text-section ol {
  margin-top: 4px;
  margin-bottom: 6px;
  padding-left: 25px;
}
.text-section ul li, .text-section ol li {
  list-style-type: disc;
  margin-bottom: 7px;
  color: #1F3556;
  position: relative;
}
@media (max-width: 700px) {
  .text-section {
    gap: 4px;
  }
}

/* --- FOOTER --- */
footer {
  background: #1F3556;
  color: #EFEBE6;
  padding: 35px 0 0 0;
  border-top-left-radius: 22px;
  border-top-right-radius: 22px;
  margin-top: 50px;
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  gap: 40px;
  padding-bottom: 30px;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 9px;
  align-items: flex-start;
}
footer nav a {
  color: #fff;
  font-size: 1rem;
  border-bottom: 2px solid transparent;
  transition: color 0.16s, border-bottom 0.17s;
}
footer nav a:hover,
footer nav a:focus {
  color: #F46A0E;
  border-bottom: 2px solid #F46A0E;
}
.contact-footer {
  margin-top: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 0.95rem;
  line-height: 1.35;
}
.contact-footer div {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #EDEDED;
}
.contact-footer img {
  width: 17px;
  height: 17px;
  object-fit: contain;
}
@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}
@media (max-width: 600px) {
  footer {
    padding: 20px 0 0 0;
    border-radius: 0;
  }
}

/* --- THANK YOU PAGE ACTIONS --- */
.thankyou-actions {
  display: flex;
  gap: 24px;
  margin-top: 18px;
}
.thankyou-actions a {
  font-weight: 700;
  color: #F46A0E;
  border-radius: 8px;
  padding: 8px 18px;
  background: #F7F9FB;
  transition: background 0.14s, color 0.16s;
  text-decoration: underline;
}
.thankyou-actions .cta-button {
  text-decoration: none;
  margin: 0;
}
.thankyou-actions a:hover, .thankyou-actions a:focus {
  background: #F46A0E;
  color: #fff;
}
@media (max-width: 600px) {
  .thankyou-actions { flex-direction: column; gap: 9px;}
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  background: #fff;
  color: #1F3556;
  padding: 20px 18px 17px 18px;
  box-shadow: 0 -8px 26px -12px rgba(244,106,14,0.17), 0 -1.5px 5px -1.5px rgba(31,53,86,.13);
  z-index: 9999;
  display: flex;
  flex-direction: row;
  gap: 23px;
  align-items: center;
  justify-content: space-between;
  font-size: 1rem;
  transition: transform 0.33s cubic-bezier(.71,.07,.29,.98);
  border-top-right-radius: 22px;
  border-top-left-radius: 22px;
}
.cookie-banner.hide {
  transform: translateY(120%);
}
.cookie-banner__content {
  flex: 1 1 0%;
  margin-right: 22px;
}
.cookie-banner__buttons {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: center;
}
.cookie-banner button,
.cookie-banner .cookie-settings-btn {
  font-family: 'Roboto', Arial, sans-serif;
  background: #F46A0E;
  color: #fff;
  border: none;
  border-radius: 19px;
  padding: 8px 22px;
  font-weight: 700;
  margin: 0;
  box-shadow: 0 2px 9px -5px rgba(244,106,14,0.14);
  transition: background 0.19s, color 0.17s, transform 0.12s;
  cursor: pointer;
}
.cookie-banner button:focus,
.cookie-banner button:hover {
  background: #1F3556;
}
.cookie-settings-btn {
  background: #fff;
  color: #F46A0E;
  border: 1px solid #F46A0E;
}
.cookie-settings-btn:hover, .cookie-settings-btn:focus {
  background: #F46A0E;
  color: #fff;
}
@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    gap: 11px;
    padding: 12px 2px 8px 2px;
  }
  .cookie-banner__content {
    margin-right: 0;
  }
}

/* --- COOKIE CONSENT MODAL --- */
.cookie-modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 99999;
  background: rgba(31,53,86,0.49);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal.hidden {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal__window {
  background: #fff;
  border-radius: 22px;
  padding: 38px 25px 24px 25px;
  width: 98vw;
  max-width: 375px;
  box-shadow: 0 8px 44px -13px rgba(244,106,14,0.22);
  display: flex;
  flex-direction: column;
  gap: 15px;
  position: relative;
}
.cookie-modal__header {
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 900;
  color: #1F3556;
  margin-bottom: 7px;
  font-size: 1.25rem;
}
.cookie-modal__close {
  position: absolute;
  right: 15px;
  top: 15px;
  background: none;
  border: none;
  color: #F46A0E;
  font-size: 1.45rem;
  cursor: pointer;
  transition: color 0.15s;
  border-radius: 50%;
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
}
.cookie-modal__close:hover, .cookie-modal__close:focus {
  color: #1F3556;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  font-size: 1.04rem;
  margin-bottom: 9px;
  color: #223854;
}
.cookie-category label {
  font-size: 1rem;
  font-family: 'Open Sans', Arial, sans-serif;
}
.cookie-modal__actions {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  justify-content: flex-end;
  margin-top: 13px;
}
.cookie-modal__actions button {
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 700;
  border-radius: 15px;
  padding: 9px 21px;
  border: none;
  cursor: pointer;
}
.cookie-modal__actions .save {
  background: #1F3556;
  color: #fff;
  transition: background 0.13s;
}
.cookie-modal__actions .save:hover, .cookie-modal__actions .save:focus {
  background: #F46A0E;
}
.cookie-toggle {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 22px;
}
.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}
.cookie-toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #EDEDED;
  border-radius: 22px;
  transition: background 0.16s;
}
.cookie-toggle input:checked + .cookie-toggle-slider {
  background: #F46A0E;
}
.cookie-toggle-slider:before {
  content: "";
  position: absolute;
  left: 3px;
  top: 4px;
  width: 15px;
  height: 13px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1.5px 7px -2.8px #aaa3;
  transition: transform 0.18s;
}
.cookie-toggle input:checked + .cookie-toggle-slider:before {
  transform: translateX(20px);
}

/* --- RESPONSIVE ADAPTATIONS --- */
@media (max-width: 992px) {
  .container { max-width: 99vw; }
}
@media (max-width: 600px) {
  body { font-size: 0.97rem; }
  .cta { padding: 17px 0; border-radius: 7px; }
}

/* --- SHADOWS & ENERGETIC ACCENTS --- */
/* Electric energetic underline for heading Decoration */
h2, h1 {
  position: relative;
}
h2::after, h1::after {
  content: '';
  display: block;
  margin: 8px 0 0 2px;
  width: 36px;
  height: 4px;
  border-radius: 8px;
  background: #F46A0E;
  opacity: 0.77;
}
@media (max-width:650px){
  h2::after, h1::after{
    width: 25px;height:2.8px;
  }
}

/* --- MISCELLANEOUS STYLES --- */
::-webkit-scrollbar {
  width: 10px;
  background: #EDEDED;
}
::-webkit-scrollbar-thumb {
  background: #F46A0E;
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:active {
  background: #1F3556;
}
:focus {
  outline: 2px solid #F46A0E;
  outline-offset: 2px;
}

/* --- UTILITY PADDING/MARGIN HELPERS FOR FLEX-GAPS --- */
.mb-20 { margin-bottom: 20px !important; }
.mt-20 { margin-top: 20px !important; }
.p-16 { padding: 16px !important; }

/* ENERGETIC ANIMATION ON HOVER (MICROINTERACTION) */
.card:hover img, .feature:hover img {
  filter: drop-shadow(0 4px 6px #F46A0E33);
  animation: wiggle 0.15s 1;
}
@keyframes wiggle {
  0% { transform: rotate(-6deg); }
  60% { transform: rotate(8deg); }
  100% { transform: rotate(0deg); }
}

/* BUTTON MICROINTERACTION */
.cta-button:active, .cookie-banner button:active, .cookie-modal__actions button:active {
  transform: translateY(2px) scale(0.98);
}

/* --- FOCUS ACCESSIBILITY --- */
.cta-button:focus, .mobile-menu-close:focus, .mobile-menu-toggle:focus, .cookie-banner button:focus, .cookie-modal__close:focus, .cookie-modal__actions button:focus {
  outline: 2px solid #F46A0E;
  outline-offset: 2px;
}

/* --- OVERRIDE AUTOFORMATTED LISTS IN FOOTER --- */
footer ul, footer ol { margin: 0; padding: 0; list-style: none; }

/* --- SPACING ENFORCEMENT FOR CARDS & SECTIONS --- */
.card, .feature, .testimonial-card {
  margin-bottom: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}