/* === 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 {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #F5F7FA;
}
body {
  min-height: 100vh;
  color: #223A5E;
  background: #F5F7FA;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}
ul, ol {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
}

/* === Brand Pallette === */
:root {
  --primary: #223A5E;
  --secondary: #F5F7FA;
  --accent: #F5B900;
  --danger: #ff3a55;
  --success: #20d89b;
  --info: #1eaaf1;
  --card-bg: #fff;
  --hero-bg: #ffe066;
  --feature-bg: #eaf3fb;
  --shadow: 0 4px 32px rgba(34,58,94,0.13);
  --radius: 18px;
}

/* === Typography === */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  color: #223A5E;
  line-height: 1.13;
}
h1 {
  font-size: 2.7rem;
  margin-bottom: 20px;
  letter-spacing: -2px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
}
h4 {
  font-size: 1.12rem;
  margin-bottom: 10px;
}
p, ul li, ol li, table, label, .button-primary, .button-secondary {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #223A5E;
  line-height: 1.6;
}
strong {
  font-weight: 700;
  color: #223A5E;
}
.text-section ul {
  list-style: disc inside;
  padding-left: 18px;
  margin-bottom: 18px;
}
.text-section h3 {
  color: var(--accent);
  font-size: 1.2rem;
  margin-top: 24px;
  margin-bottom: 10px;
  font-family: 'Montserrat', cursive, Arial, sans-serif;
}

/* === Container and Layout Utility === */
.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 {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}

/* === Playful Dynamic / Section Styles === */
.hero {
  background: var(--hero-bg);
  border-bottom-right-radius: 70px;
  border-bottom-left-radius: 24px;
  box-shadow: var(--shadow);
  padding-bottom: 80px;
  position: relative;
  animation: heroFadeIn 1s 0.1s both;
}
@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(35px); }
  to { opacity: 1; transform: translateY(0); }
}
.features {
  background: var(--feature-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding-bottom: 26px;
  margin-bottom: 40px;
  animation: popIn 0.8s 0.1s both;
}
@keyframes popIn {
  from { opacity: 0; transform: scale(0.97) translateY(25px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.services, .about, .contact, .cta, .legal, .testimonials {
  background: var(--secondary);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 40px;
}

.cta {
  background: #ffe066;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-bottom: 6px solid var(--accent);
}
.cta .button-primary {
  margin-top: 24px;
}

/* --- Card Layouts --- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 26px 24px 22px 24px;
  margin-bottom: 20px;
  position: relative;
  min-width: 230px;
  flex: 1 1 280px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}

.feature-grid, .feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fffbe6;
  border-radius: 18px;
  box-shadow: 0 2px 10px rgba(245,185,0,0.09);
  padding: 22px 20px 18px 20px;
  flex: 1 1 240px;
  min-width: 210px;
  transition: transform 0.2s, box-shadow 0.2s;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.feature-item:hover {
  transform: translateY(-6px) scale(1.04) rotate(-1deg);
  box-shadow: 0 8px 32px rgba(245,185,0,0.16);
}
.feature-item img {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #fff;
  padding: 5px;
  margin-bottom: 7px;
  box-shadow: 0 2px 11px rgba(245,185,0,0.09);
  animation: iconWiggle 3s infinite ease-in-out;
}
@keyframes iconWiggle {
  0%,100% { transform: rotate(-7deg); }
  15%,85% { transform: rotate(7deg); }
  30%,70% { transform: rotate(-3deg); }
  50% { transform: rotate(1deg); }
}

/* --- Pricing Table --- */
.pricing-table {
  width: 100%;
  background: #fff;
  border-radius: calc(var(--radius) * 0.8);
  box-shadow: 0 2px 14px rgba(34,58,94,0.08);
  margin-bottom: 28px;
  overflow: auto;
}
.pricing-table table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
}
.pricing-table th,
.pricing-table td {
  padding: 16px 12px;
  text-align: left;
}
.pricing-table th {
  background: var(--accent);
  color: #223A5E;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  font-size: 1.1rem;
}
.pricing-table tbody tr {
  background: var(--secondary);
  border-bottom: 1px solid #ececec;
}
.pricing-table td {
  color: #223A5E;
  font-size: 1rem;
}

/* --- Testimonial Cards --- */
.testimonial-list,
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 24px;
  margin-bottom: 16px;
  justify-content: flex-start;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  background: #fff;
  padding: 20px 24px;
  border-radius: 18px;
  box-shadow: 0 3px 18px rgba(34,58,94,0.08);
  margin-bottom: 20px;
  min-width: 260px;
  max-width: 390px;
  flex: 1 1 300px;
  transition: box-shadow 0.19s, transform 0.19s;
  border-left: 7px solid var(--accent);
  z-index: 1;
}
.testimonial-card:hover {
  box-shadow: 0 8px 28px rgba(245,185,0,0.19);
  transform: translateY(-4px) scale(1.035) rotate(1deg);
}
.testimonial-card p {
  font-family: 'Montserrat', cursive, Arial, sans-serif;
  font-size: 1.11rem;
  font-weight: 500;
  color: #223A5E;
  letter-spacing: -0.1px;
}
.testimonial-card strong {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 0.99rem;
  color: #61688a;
  font-weight: 700;
}
.star-rating {
  margin-bottom: 4px;
  display: flex;
  gap: 2px;
}
.star-rating img {
  width: 22px;
  height: 22px;
  filter: drop-shadow(0 1px 3px rgba(245, 185, 0, 0.09));
  animation: hopInStar 1s both;
}
@keyframes hopInStar {
  from { transform: scale(0.5) translateY(30px); opacity: 0; }
  to { transform: scale(1) translateY(0); opacity: 1; }
}

/* --- Content Grid (Fallback for Lists) --- */
.content-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 20px;
  justify-content: space-between;
  margin-bottom: 24px;
}

/* --- Text-Image Section --- */
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

/* --- Lists in Services/About --- */
.services ul, .about ul, .about ol, .feature-list ul, .feature-list ol, .process-steps ol {
  list-style: disc inside;
  color: #223a5e;
  margin-top: 12px;
  margin-bottom: 16px;
  padding-left: 18px;
}
.services ul li, .about ul li {
  margin-bottom: 7px;
  font-family: 'Roboto', sans-serif;
}
.process-steps ol {
  list-style-type: decimal;
}


/* === CTA and Feature Icons === */
.feature-icons, .option-icons {
  display: flex;
  gap: 18px;
  align-items: center;
  margin: 18px 0;
}
.feature-icons img, .option-icons img {
  width: 40px;
  height: 40px;
  background: #ffe066;
  border-radius: 12px;
  padding: 6px;
  transition: transform 0.3s;
  border: 2px solid var(--accent);
  box-shadow: 0 1px 5px rgba(245,185,0,0.14);
}
.feature-icons img:hover, .option-icons img:hover {
  transform: scale(1.1) rotate(-8deg);
}


/* --- Footer Styling --- */
footer {
  width: 100%;
  background: #fffbe6;
  padding: 33px 0 18px 0;
  border-top: 7px solid var(--accent);
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  padding: 0 20px;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
footer nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #223A5E;
  font-weight: 500;
  font-size: 1rem;
  padding: 2px 10px;
  border-radius: 12px;
  transition: background 0.2s, color 0.2s;
}
footer nav a:hover {
  background: var(--accent);
  color: #fff;
}
footer p {
  font-family: 'Roboto', sans-serif;
  font-size: 0.98rem;
  color: #9f9f9f;
}
.logo-footer img {
  height: 44px;
  width: auto;
}

/* === Header & Main Navigation === */
header {
  background: #fff;
  box-shadow: 0 4px 32px rgba(34,58,94,0.05);
  padding: 0;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  gap: 0;
}
.logo img {
  height: 48px;
  width: auto;
  margin-right: 14px;
  display: inline-block;
}
header nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.09rem;
  color: #223A5E;
  padding: 4px 14px;
  border-radius: 13px;
  transition: background 0.17s, color 0.17s;
}
header nav a:hover, header nav a.active {
  background: var(--accent);
  color: #fff;
}
.button-primary {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  letter-spacing: 0.02em;
  font-size: 1.05rem;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 17px;
  padding: 13px 28px;
  margin-left: 16px;
  cursor: pointer;
  transition: background 0.14s, transform 0.15s, box-shadow 0.17s;
  box-shadow: 0 2px 8px rgba(34,58,94,0.09);
  position: relative;
  z-index: 2;
  text-shadow: 0 2px 7px rgba(34,58,94,0.09);
}
.button-primary:hover, .button-primary:focus {
  background: var(--accent);
  color: #223a5e;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 8px 23px rgba(245,185,0,0.13);
}
.button-secondary {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  background: #fff;
  color: var(--primary);
  border: 2px solid var(--primary);
  border-radius: 16px;
  padding: 12px 22px;
  cursor: pointer;
  margin-top: 18px;
  transition: background 0.15s, color 0.15s, transform 0.15s;
}
.button-secondary:hover, .button-secondary:focus {
  background: var(--accent);
  color: #fff;
  transform: scale(1.06);
}
/* --- Quick Info Section --- */
.quick-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 18px 0 18px 0;
}
.quick-info p {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #223A5E;
  font-size: 1rem;
  font-weight: 500;
}
.quick-info img {
  width: 22px;
  height: 22px;
}


/* === LEGAL & Text Sections === */
.legal {
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 40px 20px;
  margin-bottom: 48px;
}
.text-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.text-section p, .text-section li {
  color: #223A5E;
}

/* === Accordion FAQ === */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 18px;
}
.faq-item {
  background: #fff;
  border-left: 6px solid var(--accent);
  border-radius: 13px;
  padding: 15px 22px;
  box-shadow: 0 2px 12px rgba(245,185,0,0.07);
}
.faq-item strong {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #223A5E;
}

/* === Mobile Navigation === */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--primary);
  font-size: 2.2rem;
  cursor: pointer;
  margin-left: 20px;
  z-index: 1800;
  line-height: 1;
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(255, 224, 102, 0.97);
  z-index: 2000;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(.45,1.18,.48,1);
  overflow-y: auto;
  padding-top: 22px;
  padding-left: 0;
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: var(--primary);
  font-size: 2.4rem;
  font-weight: bold;
  position: absolute;
  right: 32px;
  top: 24px;
  z-index: 2100;
  cursor: pointer;
  border-radius: 10px;
  padding: 5px 9px;
  transition: background 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #ffe066;
}
.mobile-nav {
  margin-top: 52px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  width: 100vw;
  align-items: flex-start;
  padding-left: 38px;
}
.mobile-nav a {
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.3rem;
  font-weight: bold;
  letter-spacing: 0.02em;
  padding: 9px 14px 9px 0;
  border-radius: 10px;
  transition: background 0.17s, color 0.17s, padding-left 0.22s;
  min-width: 160px;
}
.mobile-nav a:hover {
  background: var(--accent);
  color: #fff;
  padding-left: 9px;
}

/* --- Show-Hide Navigation for Mobile --- */
@media (max-width: 968px) {
  .button-primary {
    margin-left: 0;
  }
  header .container {
    flex-wrap: wrap;
    gap: 0;
  }
  header nav {
    display: none;
  }
  .button-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (max-width: 580px) {
  .mobile-nav a {
    font-size: 1.08rem;
    padding: 7px 8px 7px 0;
    min-width: 120px;
  }
  .mobile-menu-close {
    top: 13px;
    right: 12px;
  }
}

/* === Cookie Consent Banner === */
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 4444;
  background: #fffbe6;
  box-shadow: 0 -4px 32px rgba(34,58,94,0.16);
  color: #223A5E;
  padding: 24px 18px 20px 18px;
  border-top-left-radius: 28px;
  border-top-right-radius: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  animation: slideInUp 0.7s both;
}
@keyframes slideInUp {
  from { transform: translateY(75px); opacity:0; }
  to { transform: translateY(0); opacity:1; }
}
.cookie-content {
  flex: 1 1 300px;
  font-size: 1.01rem;
  font-family: 'Roboto', sans-serif;
}
.cookie-buttons {
  display: flex;
  flex-direction: row;
  gap: 15px;
}
.cookie-buttons button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  border: none;
  border-radius: 13px;
  padding: 9px 17px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.17s, color 0.17s;
}
.cookie-buttons .cookie-accept {
  background: var(--success);
  color: #fff;
}
.cookie-buttons .cookie-accept:hover, .cookie-buttons .cookie-accept:focus {
  background: var(--primary);
  color: #fff;
}
.cookie-buttons .cookie-reject {
  background: var(--danger);
  color: #fff;
}
.cookie-buttons .cookie-reject:hover, .cookie-buttons .cookie-reject:focus {
  background: var(--primary);
  color: #fff;
}
.cookie-buttons .cookie-settings {
  background: #ffe066;
  color: #223A5E;
}
.cookie-buttons .cookie-settings:hover, .cookie-buttons .cookie-settings:focus {
  background: var(--accent);
  color: #fff;
}
@media (max-width: 700px) {
  .cookie-consent-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 19px;
    padding: 23px 7px 20px 7px;
  }
  .cookie-content {
    font-size: 0.98rem;
  }
}

/* --- Cookie Settings Modal --- */
.cookie-modal {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 5555;
  background: rgba(34,58,94,0.40);
  align-items: center;
  justify-content: center;
  animation: fadeInModal 0.4s both;
}
@keyframes fadeInModal {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal.open {
  display: flex;
}
.cookie-modal .modal-content {
  background: #fffbe6;
  border-radius: 23px;
  box-shadow: 0 9px 48px rgba(34,58,94,0.22);
  padding: 38px 32px 28px 32px;
  min-width: 320px;
  max-width: 95vw;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: popIn 0.38s both;
}
.cookie-modal .modal-content h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.37rem;
  margin-bottom: 12px;
}
.cookie-switches {
  display: flex;
  flex-direction: column;
  gap: 17px;
}
.cookie-switch {
  display: flex;
  align-items: center;
  gap: 15px;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
}
.cookie-switch label {
  font-weight: 500;
  cursor: pointer;
}
.cookie-switch input[type='checkbox'] {
  appearance: none;
  width: 36px;
  height: 21px;
  background: #e8e8e8;
  border-radius: 19px;
  position: relative;
  outline: none;
  cursor: pointer;
  transition: background 0.16s;
}
.cookie-switch input[type='checkbox']:checked {
  background: var(--accent);
}
.cookie-switch input[type='checkbox']::before {
  content: '';
  display: block;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  top: 2px;
  left: 3px;
  transition: left 0.19s;
  box-shadow: 0 1px 4px rgba(34,58,94,0.06);
}
.cookie-switch input[type='checkbox']:checked::before {
  left: 15px;
}
.cookie-modal .modal-actions {
  display: flex;
  flex-direction: row;
  gap: 17px;
  margin-top: 18px;
  justify-content: flex-end;
}
.cookie-modal .modal-actions button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 13px;
  border: none;
  padding: 8px 18px;
  cursor: pointer;
  background: var(--primary);
  color: #fff;
  transition: background 0.15s, color 0.15s;
}
.cookie-modal .modal-actions .close-modal {
  background: transparent;
  color: #223A5E;
  border: 1px solid #223A5E;
}
.cookie-modal .modal-actions .close-modal:hover {
  background: #ffe066;
  color: #223A5E;
}

/* --- Responsive Layout & Flexbox Patterns & Mobile Optimizations --- */
@media (max-width: 1020px) {
  .container {
    max-width: 96vw;
    padding-left: 6vw;
    padding-right: 6vw;
  }
}
@media (max-width: 900px) {
  .feature-grid, .card-container, .testimonial-list {
    flex-direction: column;
    gap: 16px;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 2.15rem; }
  h2 { font-size: 1.42rem; }
  h3 { font-size: 1.08rem; }
  .container, .section {
    padding-left: 10px;
    padding-right: 10px;
  }
  .section {
    padding: 26px 8px;
    margin-bottom: 40px;
  }
  .card-container {
    flex-direction: column;
    gap: 18px;
  }
  .card {
    min-width: 160px;
    padding: 19px 10px;
  }
  .feature-grid, .feature-list {
    flex-direction: column;
    gap: 12px;
  }
  .feature-item {
    padding: 16px 9px 13px 11px;
    min-width: 128px;
  }
  .content-grid {
    flex-direction: column;
    gap: 13px;
  }
  .testimonials .testimonial-list, .testimonials .testimonial-slider {
    flex-direction: column;
    gap: 13px;
  }
  .testimonial-card {
    min-width: 99px;
    padding: 13px 8px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
}

@media (max-width: 500px) {
  h1 { font-size: 1.34rem; }
  h2 { font-size: 1.07rem; }
  .cta, .hero, .features, .services, .about, .contact, .legal, .testimonials {
    border-radius: 12px;
    padding-left: 4px; padding-right: 4px;
  }
  .logo img { height: 34px; }
  .logo-footer img { height: 32px; }
}

/* --- Utility for spacing between elements (fallback) --- */
.section:not(:last-child) {
  margin-bottom: 60px;
}
.card:not(:last-child) {
  margin-bottom: 20px;
}
.feature-item:not(:last-child) {
  margin-bottom: 20px;
}

/* --- Animations for call-to-action and hover --- */
.cta .button-primary, .cta .button-secondary {
  animation: ctaPulse 3s infinite alternate;
}
@keyframes ctaPulse {
  0% { box-shadow: 0 0 0 0 #F5B90044; }
  100% { box-shadow: 0 0 18px 4px #F5B90022; }
}

/* --- Transitions for micro-interactions --- */
.button-primary, .button-secondary, .feature-item, .testimonial-card {
  transition: background 0.15s, box-shadow 0.13s, transform 0.12s;
}
.cookie-buttons button {
  transition: background 0.13s, color 0.13s, transform 0.13s;
}
.cookie-buttons button:active {
  transform: scale(0.95);
}

/* COLOR CONTRAST --- ENFORCE DARK TEXT ON LIGHT BG FOR TESTIMONIALS */
.testimonial-card, .testimonials {
  color: #223a5e;
  background-color: #fff;
}

/* === END OF STYLE.CSS === */
