/* =====================
   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 {
  box-sizing: border-box;
  font-size: 16px;
  height: 100%;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  min-height: 100vh;
  font-family: 'Open Sans', Arial, sans-serif;
  background: #F4F5F7;
  color: #212945;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a {
  color: #0fa3ff;
  text-decoration: none;
  transition: color 0.2s cubic-bezier(.86,0,.07,1);
}
a:hover, a:focus {
  color: #E3B872;
}
ul, ol {
  margin-left: 24px;
  margin-bottom: 24px;
}
ul {
  list-style-type: disc;
}
ol {
  list-style-type: decimal;
}
img {
  max-width: 100%;
  display: block;
}
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* -- BRAND FONTS & COLORS -- */
:root {
  --primary: #212945;
  --secondary: #E3B872;
  --accent: #F4F5F7;
  --electric-pink: #FF2F80;
  --electric-blue: #0fa3ff;
  --electric-green: #18e39c;
  --electric-purple: #8855ff;
  --card-bg: #fff;
  --text-main: #212945;
  --text-dark: #171925;
  --text-light: #eeeeee;
  --shadow-main: 0 2px 16px 0 rgba(33, 41, 69, 0.13);
  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-sm: 6px;
  --font-display: 'Montserrat', 'Arial Black', Arial, sans-serif;
  --font-body: 'Open Sans', Arial, sans-serif;
}
/* =====================
   TYPOGRAPHY
   ===================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  color: var(--primary);
}
h1 {
  font-size: 2.75rem;
  margin-bottom: 16px;
  line-height: 1.1;
  color: var(--electric-pink);
  text-shadow: 0 3px 12px rgba(255,47,128,0.08);
}
h2 {
  font-size: 2rem;
  color: var(--electric-blue);
  margin-bottom: 12px;
}
h3 {
  font-size: 1.35rem;
  color: var(--electric-green);
  margin-bottom: 8px;
}
h4 {
  font-size: 1.12rem;
}
p,
li {
  font-family: var(--font-body);
  color: var(--text-main);
  font-size: 1rem;
  margin-bottom: 12px;
}
blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--electric-purple);
  margin: 10px 0 14px 0;
  padding-left: 1em;
  border-left: 3px solid var(--electric-pink);
}
strong, b {
  font-weight: 700;
}
.text-section ul,
.text-section ol {
  margin-bottom: 24px;
}
.text-section li {
  font-size: 1rem;
}

/* =====================
   HEADER & NAVIGATION
   ===================== */
header {
  background: var(--card-bg);
  box-shadow: 0 2px 14px 0 rgba(33,41,69,0.09);
  position: sticky;
  top: 0;
  z-index: 60;
  width: 100%;
}
header > .container {
  flex-direction: row;
  align-items: center;
  gap: 24px;
  min-height: 72px;
  justify-content: space-between;
}
header img {
  max-height: 52px;
  margin-right: 16px;
}
.main-nav {
  display: flex;
  gap: 18px;
  align-items: center;
}
.main-nav a {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.04rem;
  padding: 8px 0;
  color: var(--primary);
  transition: color 0.2s cubic-bezier(.86,0,.07,1);
  position: relative;
}
.main-nav a:hover,
.main-nav a:focus {
  color: var(--electric-pink);
}
.cta-button {
  font-family: var(--font-display);
  background: var(--electric-pink);
  color: #fff;
  border: none;
  border-radius: var(--radius-md);
  padding: 12px 28px;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  margin-left: 24px;
  box-shadow: 0 2px 12px 0 rgba(255,47,128,0.11);
  cursor: pointer;
  transition: background 0.19s cubic-bezier(.86,0,.07,1), transform 0.2s;
  outline: none;
  position: relative;
  z-index: 1;
}
.cta-button:hover, .cta-button:focus {
  background: var(--electric-blue);
  color: #fff;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 4px 28px 0 rgba(15,163,255,0.18);
}
.cta-button-secondary {
  font-family: var(--font-display);
  background: none;
  color: var(--electric-pink);
  border: 2.5px solid var(--electric-pink);
  border-radius: var(--radius-md);
  padding: 12px 28px;
  font-size: 1.07rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all 0.22s;
  margin-top: 8px;
  margin-bottom: 4px;
}
.cta-button-secondary:hover, .cta-button-secondary:focus {
  background: var(--electric-pink);
  color: #fff;
  border-color: var(--electric-pink);
  box-shadow: 0 3px 24px 0 rgba(255,47,128,0.14);
}

/* --- MOBILE BURGER MENU --- */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.25rem;
  line-height: 1;
  color: var(--electric-pink);
  cursor: pointer;
  z-index: 130;
  margin-left: 0;
}
.mobile-menu {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(33,41,69,0.98);
  flex-direction: column;
  align-items: flex-start;
  padding: 42px 24px 24px 24px;
  z-index: 128;
  transform: translateX(-100vw);
  transition: transform 0.32s cubic-bezier(.87,-0.03,.62,1.07);
  overflow-y: auto;
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
  box-shadow: 8px 0 34px 0 rgba(33,41,69, 0.23);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  position: absolute;
  right: 20px;
  top: 19px;
  z-index: 132;
  cursor: pointer;
  transition: color 0.15s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: var(--electric-pink);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 44px 0 0 0;
  gap: 16px;
  width: 100%;
}
.mobile-nav a {
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.28rem;
  font-weight: 700;
  padding: 10px 2px;
  width: 100%;
  border-radius: var(--radius-sm);
  transition: background 0.15s, color 0.2s;
  position: relative;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--electric-pink);
  color: #fff;
}

@media (max-width: 991px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

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

/* =====================
   HERO SECTION & CALLOUT
   ===================== */
.hero-section {
  background: linear-gradient(90deg, #FF2F80 0%, #0fa3ff 100%);
  color: #fff;
  border-bottom: 5px solid var(--electric-pink);
  padding: 38px 0 44px 0;
  margin-bottom: 60px;
}
.hero-section .container {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 0;
}
.hero-section .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  max-width: 630px;
}
.hero-section h1,
.hero-section h2,
.hero-section p {
  color: #fff !important;
  text-shadow: 0 2px 16px rgba(33,41,69,0.11);
}
.hero-section h1 {
  font-size: 2.05rem;
  letter-spacing: -0.06em;
}
.hero-section p {
  font-size: 1.16rem;
}

@media (min-width: 768px) {
  .hero-section .container {
    min-height: 320px;
    align-items: flex-start;
  }
  .hero-section h1 {
    font-size: 2.8rem;
  }
  .hero-section p {
    font-size: 1.21rem;
  }
}
@media (min-width: 1200px) {
  .hero-section h1 {
    font-size: 3.4rem;
  }
  .hero-section p {
    font-size: 1.29rem;
  }
}

.callout {
  margin-bottom: 60px;
  padding: 36px 0;
  background: var(--electric-green);
  color: #fff;
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 45px 0 rgba(24,227,156,0.13);
}
.callout .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.callout h2 {
  color: #fff;
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -0.01em;
}
@media (min-width: 768px) {
  .callout .content-wrapper {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .callout h2 {
    font-size: 2.4rem;
    margin-right: 36px;
    margin-bottom: 0;
  }
}

/* =====================
   SECTIONS, CARDS, FEATURES
   ===================== */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section:last-child {
  margin-bottom: 0;
}

.features-grid,
.services-cards,
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card-container {
  margin-bottom: 32px;
}
.card {
  background: var(--card-bg);
  box-shadow: var(--shadow-main);
  border-radius: var(--radius-md);
  padding: 32px 26px;
  margin-bottom: 20px;
  position: relative;
  flex: 1 1 270px;
  display: flex;
  flex-direction: column;
  transition: transform 0.17s, box-shadow 0.2s;
}
.card:hover {
  box-shadow: 0 6px 20px 0 rgba(33,41,69,0.16);
  transform: translateY(-4px) scale(1.022);
  z-index: 2;
}

.feature-item, .service-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: var(--card-bg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-main);
  padding: 24px 20px 18px 20px;
  gap: 15px;
  min-width: 240px;
  max-width: 324px;
  flex: 1 1 260px;
  margin-bottom: 20px;
  transition: box-shadow .20s, transform .18s;
  position: relative;
}
.feature-item img, .service-card img {
  width: 40px;
  height: 40px;
}
.feature-item:hover, .service-card:hover {
  box-shadow: 0 6px 30px 0 rgba(33,41,69,0.14);
  transform: translateY(-4px) scale(1.02);
  z-index: 2;
}
.service-card .price {
  font-size: 1.11rem;
  font-family: var(--font-display);
  color: var(--electric-pink);
  font-weight: 800;
  margin-top: 8px;
}

/* Quick advice highlight (Porady Modowe) */
.quick-advice {
  background: var(--electric-purple);
  color: #fff;
  border-radius: var(--radius-md);
  padding: 18px 20px;
  font-size: 1.03rem;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 18px;
  box-shadow: 0 2px 11px 0 rgba(136,85,255,0.06);
}

.how-to-guides ul {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  padding-left: 0;
  margin: 0 0 8px 0;
}
.how-to-guides li {
  list-style: none;
}
.how-to-guides a {
  display: inline-block;
  color: var(--electric-green);
  background: #fff;
  padding: 7px 19px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  transition: background .15s, color .15s;
  box-shadow: 0 1px 6px 0 rgba(24,227,156,0.11);
}
.how-to-guides a:hover {
  background: var(--electric-green);
  color: #fff;
}

/* === Text-image section pattern === */
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: stretch;
  }
}

.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

/* =====================
   TESTIMONIALS & RATINGS
   ===================== */
.testimonials {
  margin-bottom: 60px;
}
.testimonial-slider, .testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #fff;
  padding: 28px 32px 22px 32px;
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 18px 0 rgba(33,41,69,0.11);
  min-width: 260px;
  flex: 1 1 260px;
  max-width: 360px;
  margin-bottom: 20px;
  border-left: 6px solid var(--electric-pink);
  position: relative;
  transition: transform 0.19s, box-shadow .18s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 39px 0 rgba(15,163,255,0.15);
  transform: translateY(-4px) scale(1.018);
}
.star-rating {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--secondary);
  letter-spacing: 0.09em;
  margin-bottom: 0;
}
.testimonial-name {
  font-family: var(--font-display);
  color: var(--primary);
  font-weight: 700;
  font-size: 1rem;
  margin-top: -10px;
}
.testimonial-card blockquote {
  color: var(--text-main);
  font-size: 1.07rem;
  font-style: italic;
  background: none;
  border-left: none;
  padding-left: 0;
}

/* Ensure contrast for testimonial sections on white bg */
.testimonials h2, .testimonials p, .testimonials .testimonial-card {
  color: var(--primary);
}

/* =====================
   SECTION & CONTENT GRID PATTERNS
   ===================== */
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

/***** Feature/Info Section Pattern *****/
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/***** For tips in porady-modowe.html *****/
.tips-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0;
  margin-bottom: 24px;
}
.tips-list li {
  background: #fff;
  padding: 18px 20px 14px 20px;
  border-radius: var(--radius-md);
  box-shadow: 0 2px 11px 0 rgba(15,163,255,0.09);
  font-family: var(--font-body);
  color: var(--primary);
  font-weight: 500;
  position: relative;
}
.tips-list h3 {
  margin-bottom: 6px;
  font-size: 1.13rem;
  color: var(--electric-blue);
}

/***** Services pattern *****/
.services-cards {
  gap: 24px;
}
.service-card {
  min-width: 220px;
  max-width: 320px;
}

/***** Contact info pattern *****/
.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
}
.contact-item img {
  width: 31px;
  height: 31px;
}
.map-embed-placeholder {
  background: #e2e7fc;
  border-radius: var(--radius-md);
  padding: 24px;
  color: var(--primary);
  font-size: 1.03rem;
  margin-top: 12px;
  text-align: center;
}

/***** Legal Section (privacy etc) *****/
.legal-section {
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: 0 2px 18px 0 rgba(33,41,69,0.08);
  margin-bottom: 60px;
}

/***** Thank you Section *****/
.thankyou-section {
  margin-top: 45px;
  background: linear-gradient(90deg,#FF2F80 20%,#0fa3ff 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 36px 0 rgba(255,47,128,0.09);
}
.thankyou-section h1, .thankyou-section h2, .thankyou-section p, .thankyou-section li, .thankyou-section a {
  color: #fff !important;
}
.thankyou-section .cta-button {
  background: #fff;
  color: var(--electric-pink) !important;
  margin-top: 24px;
}
.thankyou-section .cta-button:hover {
  background: var(--electric-blue);
  color: #fff !important;
}

/* =====================
   FOOTER
   ===================== */
footer {
  background: #212945;
  color: #fff;
  padding: 38px 0 24px 0;
  margin-top: 40px;
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  gap: 40px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-right: 40px;
}
.footer-nav a {
  color: var(--secondary);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.02rem;
  transition: color 0.17s;
}
.footer-nav a:hover,
.footer-nav a:focus {
  color: var(--electric-pink);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 1.03rem;
}
.footer-contact img {
  width: 48px;
  height: 48px;
  margin-bottom: 8px;
}
.footer-contact a {
  color: #fff;
  text-decoration: underline;
  transition: color 0.17s;
}
.footer-contact a:hover,
.footer-contact a:focus {
  color: var(--secondary);
  text-decoration: underline;
}

@media (max-width: 991px) {
  footer .container {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  .footer-nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 18px;
    margin-right: 0;
    margin-bottom: 8px;
  }
}

/* ========================
   COOKIE CONSENT BANNER
   ======================== */
.cookie-consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  background: var(--card-bg);
  box-shadow: 0 -2px 25px 0 rgba(33,41,69,0.14);
  z-index: 5000;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 22px 12px 14px 12px;
  font-size: 1.01rem;
  animation: cookie-banner-in 0.46s cubic-bezier(.74,-0.11,.38,1.21) both;
}
@keyframes cookie-banner-in {
  from { transform: translateY(100%); opacity:0; }
  to { transform: translateY(0); opacity:1; }
}
.cookie-consent-banner .cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 2px;
}
.cookie-consent-banner button {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  border-radius: var(--radius-md);
  border: none;
  padding: 9px 19px;
  min-width: 120px;
  cursor: pointer;
  margin: 0;
  transition: background .19s, color .16s;
  outline: none;
}
.cookie-accept {
  background: var(--electric-green);
  color: #fff;
}
.cookie-accept:hover {
  background: var(--electric-blue);
}
.cookie-reject {
  background: #fff;
  color: var(--electric-pink);
  border: 2px solid var(--electric-pink);
}
.cookie-reject:hover {
  background: var(--electric-pink);
  color: #fff;
}
.cookie-settings {
  background: #fff;
  color: var(--secondary);
  border: 2px solid var(--secondary);
}
.cookie-settings:hover {
  background: var(--secondary);
  color: #fff;
}

/***** Cookie modal popup */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  z-index: 5001;
  left: 0; right: 0; top:0; bottom:0;
  width: 100vw; height: 100vh;
  background: rgba(33,41,69,0.60);
  align-items: center;
  justify-content: center;
}
.cookie-modal-overlay.open {
  display: flex;
}
.cookie-modal {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 44px 0 rgba(33,41,69,0.21);
  max-width: 410px;
  width: 95%;
  padding: 38px 28px 26px 28px;
  display: flex;
  flex-direction: column;
  gap: 23px;
  animation: cookie-modal-animate 0.36s cubic-bezier(.87,-0.03,.62,1.07) both;
  position: relative;
}
@keyframes cookie-modal-animate {
  from { transform: translateY(110px) scale(0.97); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-modal h2 {
  font-size: 1.45rem;
  margin-bottom: 14px;
  color: var(--electric-blue);
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  font-family: var(--font-display);
  font-size: 1.10rem;
  font-weight: 600;
}
.cookie-toggle {
  appearance: none;
  width: 38px;
  height: 22px;
  border-radius:11px;
  background: #d7dbe5;
  position: relative;
  outline: none;
  cursor: pointer;
  transition: background 0.20s;
}
.cookie-toggle:checked {
  background: var(--electric-pink);
}
.cookie-toggle:before {
  content: '';
  display: block;
  position: absolute;
  left: 3px;
  top: 3px;
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.20s cubic-bezier(.86,0,.07,1);
}
.cookie-toggle:checked:before {
  transform: translateX(16px);
}
.cookie-modal .modal-buttons {
  display: flex;
  gap: 16px;
  margin-top: 16px;
}
.cookie-modal .close-modal {
  display: block;
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.52rem;
  color: var(--electric-pink);
  cursor: pointer;
}
.cookie-modal .close-modal:hover {
  color: var(--electric-blue);
}

/* =====================
   RESPONSIVE DESIGN
   ===================== */
@media (max-width: 1200px) {
  .container {
    max-width: 1010px;
  }
}
@media (max-width: 991px) {
  .container {
    max-width: 800px;
  }
  .features-grid, .services-cards, .card-container, .testimonial-slider, .testimonial-list {
    gap: 16px;
  }
  .feature-item, .service-card, .testimonial-card, .card {
    padding: 18px 10px 16px 10px;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  .container {
    padding: 0 8px;
    max-width: 97vw;
  }
  section, .legal-section, .thankyou-section {
    padding: 32px 6px;
    margin-bottom: 42px;
  }
  .hero-section, .callout {
    padding: 26px 6px 32px 6px;
  }
  .card-container, .features-grid, .services-cards, .testimonial-slider, .testimonial-list {
    flex-direction: column;
    gap: 16px;
  }
  .testimonial-card, .feature-item, .service-card, .card {
    max-width: none;
    min-width: 0;
    margin-bottom: 14px;
  }
  .footer-nav {
    flex-direction: column;
    gap: 11px;
  }
}
@media (max-width: 520px) {
  html {
    font-size: 14px;
  }
  .cta-button, .cta-button-secondary, .cookie-consent-banner button {
    padding: 10px 12px !important;
    min-width: 75px;
  }
}

/* =====================
   ANIMATIONS & MICRO-INTERACTIONS
   ===================== */
.card,.feature-item,.service-card,.testimonial-card {
  transition: box-shadow .20s, transform .18s;
  will-change: transform, box-shadow;
}
a, .cta-button, .cta-button-secondary, .main-nav a, .mobile-nav a, .how-to-guides a {
  transition: background 0.15s, color 0.19s, box-shadow .16s, transform .17s;
}

/* =====================
   UTILITIES & OVERRIDES
   ===================== */
::-webkit-scrollbar {
  width: 10px;
  background: #e7eaf4;
}
::-webkit-scrollbar-thumb {
  background: var(--electric-blue);
  border-radius: 5px;
}

/***** Prevent overlap of any flex container *****/
.card-container > *, .features-grid > *, .services-cards > *, .testimonial-slider > *, .testimonial-list > * {
  margin-bottom: 20px;
}

/***** Hide unwanted focus outlines except for keyboard navigation *****/
a:focus, button:focus, .cta-button:focus, .cta-button-secondary:focus {
  outline: 2px solid var(--electric-pink) !important;
  outline-offset: 2px;
}

/* =====================
   ACCESSIBLE CONTRAST
   ===================== */
.testimonial-card, .testimonial-card * {
  color: #1d2239 !important;
  background: #fff !important;
}

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