/* ============================================================
   CSS RESET & NORMALIZER (Modern, Responsive, Soft Pastel Aesthetic)
   ============================================================ */
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-size: 16px;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  background: #fbfdff;
  font-family: 'Roboto', Arial, sans-serif;
  color: #213047;
  min-height: 100vh;
  line-height: 1.7;
  overflow-x: hidden;
}

article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}

ol, ul {
  list-style: none;
}
a {
  text-decoration: none;
  color: #00A9C6;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #4086c6;
}
img {
  border-style: none;
  max-width: 100%;
  display: block;
}
button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  background: none;
  border: none;
  outline: none;
  color: inherit;
  box-sizing: border-box;
}
button { cursor: pointer; }
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #213047;
  line-height: 1.18;
  font-weight: 700;
  letter-spacing: -0.01em;
}
h1 { font-size: 2.5rem; margin-bottom: 20px; }
h2 { font-size: 2rem; margin-bottom: 20px; }
h3 { font-size: 1.375rem; margin-bottom: 12px; }
h4 { font-size: 1.125rem; }


/* =============================
   SOFT PASTEL DESIGN PALETTE
   ============================= */
:root {
  --primary: #213047;
  --secondary: #00A9C6;
  --accent: #F5F8FA;
  --pastel-blue: #e3f1fb;
  --pastel-mint: #d7f7f6;
  --pastel-pink: #ffe6f3;
  --pastel-purple: #f3eafd;
  --pastel-yellow: #fef8e3;
  --text-main: #213047;
  --text-muted: #415673;
  --border-soft: #e3e7ef;
  --shadow-soft: 0 2px 12px 0 rgba(18,52,106,0.07);
  --radius: 18px;
  --transition: 0.3s cubic-bezier(.45,.09,.38,1.06);
}


/* =========================================================
   BASIC LAYOUT UTILITIES
   ========================================================= */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  position: relative;
  margin-bottom: 20px;
  background: var(--pastel-blue);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 32px 28px;
  min-width: 260px;
  flex: 1 1 300px;
}
.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;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  margin-bottom: 20px;
  max-width: 700px;
}

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

.text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}


/* =========================================================
   HEADER & NAVIGATION
   ========================================================= */
header {
  background: linear-gradient(90deg, var(--pastel-mint) 0%, var(--pastel-blue) 60%);
  box-shadow: 0 2px 10px 0 rgba(33, 48, 71, 0.07);
  position: relative;
  z-index: 1005;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
  min-height: 70px;
  padding: 8px 0;
}
.main-nav a {
  font-family: 'Montserrat', Arial,sans-serif;
  font-size: 1rem;
  color: var(--primary);
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 10px 14px;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}
.main-nav a:hover, .main-nav a.active {
  background: var(--pastel-yellow);
  color: var(--secondary);
}
.main-nav img {
  height: 40px; width: auto; margin-right: 20px;
}
.mobile-menu-toggle {
  display: none;
  position: absolute;
  top: 22px;
  right: 28px;
  background: var(--secondary);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 2rem;
  z-index: 1101;
  transition: background var(--transition);
}
.mobile-menu-toggle:hover {
  background: #12c6e6;
}

/* Mobile menu overlay */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(220,236,255,0.94);
  box-shadow: 0 0 40px rgba(33, 48, 71, 0.09);
  transform: translateX(100vw);
  transition: transform 0.35s cubic-bezier(.36,.9,.46,.98);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 0 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 26px 30px 14px 0;
  font-size: 2rem;
  color: var(--primary);
  background: var(--pastel-purple);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  border: none;
  transition: background var(--transition);
}
.mobile-menu-close:hover {
  background: var(--secondary);
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 0 36px;
}
.mobile-nav a {
  font-size: 1.15rem;
  color: var(--primary);
  font-weight: 600;
  padding: 14px 0;
  letter-spacing: 0.01em;
  border-radius: 8px;
  transition: background 0.15s;
}
.mobile-nav a:hover, .mobile-nav a.active {
  background: var(--pastel-yellow);
  color: var(--secondary);
}

@media (max-width: 990px) {
  .main-nav {
    gap: 12px;
  }
  .main-nav a {
    padding: 8px 9px;
    font-size: .98rem;
  }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* =========================================================
   HERO SECTION & HEADINGS
   ========================================================= */
.hero {
  background: linear-gradient(120deg, var(--pastel-blue) 50%, var(--pastel-mint) 100%);
  padding: 50px 0 80px 0;
  margin-bottom: 48px;
  min-height: 320px;
  display: flex;
  align-items: center;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 18px;
}
.hero h1 {
  font-size: 2.5rem;
  background: linear-gradient(90deg, #64d6e8 20%, #cfc7f5 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  margin-bottom: 10px;
}
.subheadline {
  font-size: 1.15rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 14px;
  font-family: 'Roboto', Arial, sans-serif;
}


/* =========================================================
   BUTTONS & LINKS
   ========================================================= */
.cta-btn, .hero .cta-btn, form button[type="submit"], button.cta-btn {
  background: linear-gradient(90deg, var(--secondary) 80%, #64d6e8 100%);
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  border: none;
  border-radius: 32px;
  padding: 15px 38px;
  margin-top: 12px;
  margin-bottom: 0;
  box-shadow: 0 2px 16px 0 rgba(33,48,71,0.07);
  transition: background 0.18s, box-shadow 0.2s, transform 0.18s;
  letter-spacing: 0.01em;
  display: inline-block;
}
.cta-btn:hover, .hero .cta-btn:hover, form button[type="submit"]:hover, button.cta-btn:hover {
  background: linear-gradient(90deg, #3ecae6 70%, #a0daf5 100%);
  box-shadow: 0 6px 28px 0 rgba(145,186,232,.18);
  transform: translateY(-2px) scale(1.025);
}
.read-more {
  color: var(--secondary);
  font-weight: 600;
  margin-top: 10px;
  display: inline-block;
  border-bottom: 1px dashed var(--secondary);
  background: none;
  padding: 0 1px;
  transition: color 0.2s, border-color 0.2s;
}
.read-more:hover {
  color: #197e91;
  border-color: #197e91;
}

/* =========================================================
   FEATURES LISTING, CARD GRIDS
   ========================================================= */
.features {
  background: var(--pastel-purple);
  border-radius: var(--radius);
  margin-bottom: 60px;
  padding: 36px 0;
}
.features .feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.features .feature-list li {
  background: var(--pastel-blue);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 26px 22px 22px 22px;
  flex: 1 1 260px;
  min-width: 220px;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
  transition: box-shadow 0.25s, transform 0.16s;
  border: 2px solid #e3e7ef;
}
.features .feature-list li:hover {
  box-shadow: 0 8px 30px 0 rgba(33,48,71,0.13);
  transform: translateY(-3px) scale(1.025);
}
.features .feature-list img {
  height: 44px;
  width: 44px;
  margin-bottom: 8px;
}
.features h3 {
  margin-bottom: 6px;
  font-size: 1.12rem;
  font-family: 'Montserrat', Arial, sans-serif;
}
.features p {
  font-size: .98rem;
  color: #375378;
}
.features strong {
  font-weight: 700;
  color: var(--secondary);
}
.features ul + ul {
  margin-top: 18px;
}

/* Service List for services.html */
.services .service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 26px;
  margin-bottom: 20px;
}
.services .service-list li {
  background: var(--pastel-pink);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 28px 26px 20px 26px;
  flex: 1 1 260px;
  min-width: 220px;
  margin-bottom: 20px;
  transition: box-shadow 0.24s, transform 0.18s;
  border: 2px solid #f6e1f0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.services .service-list li:hover {
  box-shadow: 0 6px 18px 0 rgba(244,173,211,0.13);
  transform: translateY(-2px) scale(1.018);
}
.services h3 {
  font-size: 1.16rem;
  margin-bottom: 8px;
  font-family: 'Montserrat', Arial, sans-serif;
}
.services p {
  font-size: .98rem;
  color: #48396a;
}
.services strong {
  color: #e873b7;
  font-weight: 700;
}


/* Blog Card */
.blog-list {
  padding: 40px 0;
  background: var(--pastel-yellow);
  border-radius: var(--radius);
}
.blog-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 24px 18px 22px 22px;
  margin-bottom: 24px;
  transition: box-shadow 0.23s, transform 0.13s;
  border: 1.8px solid #ffe8b3;
}
.blog-card:hover {
  box-shadow: 0 4px 32px 0 rgba(245,200,140,0.12);
  transform: scale(1.015);
}

/* Category & Popular Posts */
.categories-list, .popular-posts {
  background: var(--pastel-blue);
  border-radius: 14px;
  padding: 14px 20px;
  margin-bottom: 18px;
  box-shadow: 0 1px 4px 0 rgba(33,48,71,0.04);
  font-size: 1rem;
}
.categories-list ul, .popular-posts ul {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 6px;
}
.categories-list li, .popular-posts li {
  padding: 5px 12px;
  background: var(--pastel-mint);
  border-radius: 32px;
  color: var(--primary);
  font-weight: 600;
  font-size: .96rem;
}
.popular-posts a {
  color: var(--secondary);
  font-weight: 600;
}
.popular-posts a:hover { text-decoration: underline; }

/* Search Block */
.search-block {
  width: 100%;
  margin-top: 10px;
  display: flex;
  justify-content: flex-start;
}
.search-block input[type="search"] {
  background: var(--pastel-mint);
  border: 1.5px solid #d1eff2;
  border-radius: 25px;
  padding: 11px 18px;
  font-size: 1rem;
  width: 270px;
  color: var(--primary);
  transition: border-color 0.2s, box-shadow 0.2s;
  margin-bottom: 0;
}
.search-block input[type="search"]:focus {
  border-color: var(--secondary);
  box-shadow: 0 2px 12px 0 rgba(0,169,198,0.08);
}

/* =========================================================
   TESTIMONIALS & CASE STUDIES
   ========================================================= */
.testimonials {
  background: var(--pastel-mint);
  border-radius: var(--radius);
  margin-bottom: 60px;
  padding: 40px 0;
}
.testimonials h2 {
  margin-bottom: 36px;
}
.testimonial-card {
  font-size: 1.12rem;
  color: var(--primary);
  background: #fff;
  box-shadow: var(--shadow-soft);
  border-radius: var(--radius);
  border: 2px solid #d3efef;
  padding: 24px 28px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 22px;
  max-width: 680px;
}
.testimonial-card blockquote {
  font-size: 1rem;
  font-style: italic;
  color: #1e334c;
  margin: 0 0 0 0;
  line-height: 1.6;
  letter-spacing: 0.01em;
}
.testimonial-card strong {
  color: var(--secondary);
}

.case-list {
  background: var(--pastel-purple);
  border-radius: var(--radius);
  padding: 38px 0;
  margin-bottom: 54px;
}
.case-card {
  background: var(--pastel-yellow);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 26px 23px 24px 24px;
  margin-bottom: 24px;
  border: 2px solid #fbeada;
}
.case-card h3 {
  margin-bottom: 10px;
  font-size: 1.08rem;
}
.case-card p {
  color: #5b5387;
  font-size: .99rem;
}

/* =========================================================
   FORMS AND CONTACT INFO
   ========================================================= */
.contact-info {
  background: var(--pastel-mint);
  border-radius: var(--radius);
  box-shadow: 0 2px 8px rgba(189,238,231,0.07);
  padding: 24px 25px 20px 25px;
  margin-bottom: 24px;
  font-size: 1rem;
}
.contact-info a {
  color: var(--secondary);
  word-break: break-all;
}
.contact-form {
  background: var(--pastel-purple);
  border-radius: var(--radius);
  padding: 36px 0;
  margin-bottom: 60px;
}
.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 26px;
  max-width: 420px;
}
.contact-form .text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-form label {
  font-size: 1rem;
  color: var(--primary);
  font-weight: 500;
  margin-bottom: 3px;
}
.contact-form input, .contact-form textarea {
  background: #fff;
  border: 1.8px solid #d1cff3;
  border-radius: 14px;
  padding: 12px 16px;
  font-size: 1rem;
  transition: border-color 0.2s, box-shadow 0.19s;
  margin-bottom: 6px;
}
.contact-form input:focus, .contact-form textarea:focus {
  border-color: var(--secondary);
  box-shadow: 0 2px 10px 0 rgba(109,192,205,0.08);
}
.contact-form button[type="submit"] {
  margin-top: 8px;
}

form label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  letter-spacing: 0.01em;
}
form input[type="email"] {
  background: #fffdfc;
  border: 1.8px solid #ffe2f2;
  border-radius: 13px;
  padding: 11px 16px;
  font-size: 1rem;
  margin-bottom: 8px;
  color: var(--primary);
  transition: border-color 0.2s, box-shadow 0.14s;
}
form input[type="email"]:focus {
  border-color: #ffa0cc;
  box-shadow: 0 2px 8px 0 rgba(255,160,204,0.08);
}

.confirmation {
  background: var(--pastel-mint);
  border-radius: var(--radius);
  padding: 40px 0;
  margin-bottom: 60px;
  text-align: center;
}
.success-message {
  font-size: 1.15rem;
  color: #10667c;
  font-weight: 600;
  margin-bottom: 16px;
  font-style: italic;
}
.next-steps {
  color: #415673;
  font-size: 1.01rem;
  margin-bottom: 18px;
}

/* =========================================================
   FOOTER
   ========================================================= */
footer {
  background: linear-gradient(90deg, var(--pastel-blue) 20%, var(--pastel-mint) 70%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 28px 0 20px 0;
  border-radius: 25px 25px 0 0;
  box-shadow: 0 -1px 18px 0 rgba(33, 48, 71, 0.06);
  margin-top: 44px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-bottom: 9px;
}
.footer-nav a {
  color: var(--primary);
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.17s;
  border-radius: 6px;
  padding: 4px 9px;
}
.footer-nav a:hover {
  color: var(--secondary);
  background: #e0fbff;
}
footer div:last-child {
  color: #566989;
  font-size: .96rem;
}

/* =========================================================
   MODALS, BANNERS, RESPONSIVE LAYOUTS
   ========================================================= */

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  left: 0; bottom: 0;
  width: 100vw;
  background: rgba(251, 233, 255, 0.98);
  box-shadow: 0 -2px 22px 0 rgba(87,125,180,0.07);
  padding: 22px 20px 18px 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 24px;
  z-index: 3000;
  font-size: 1.04rem;
  animation: fadeinbottom 0.7s;
}
@keyframes fadeinbottom {
  0% { opacity: 0; transform: translateY(60px); }
  100% { opacity: 1; transform: translateY(0); }
}
.cookie-banner .btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 25px;
  padding: 9px 22px;
  margin: 8px 4px;
  min-width: 120px;
  box-shadow: 0 2px 16px 0 rgba(130,129,129,0.09);
  border: none;
  transition: background 0.14s, color 0.13s;
}
.cookie-banner .btn-accept {
  background: var(--secondary);
  color: #fff;
}
.cookie-banner .btn-accept:hover {
  background: #0fc7ea;
  color: #fff;
}
.cookie-banner .btn-reject {
  background: #ffe6f3;
  color: #c10047;
}
.cookie-banner .btn-reject:hover {
  background: #fae2ec;
  color: #7d2458;
}
.cookie-banner .btn-settings {
  background: #fffbe3;
  color: #987b17;
}
.cookie-banner .btn-settings:hover {
  background: #fdfbeb;
  color: #665919;
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%) scale(0.98);
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 14px 60px 0 rgba(67,57,112,0.19);
  padding: 38px 32px 22px 32px;
  z-index: 4000;
  min-width: 350px;
  max-width: 95vw;
  display: flex;
  flex-direction: column;
  gap: 22px;
  animation: fadeinmodal 0.35s;
}
@keyframes fadeinmodal {
  from { opacity: 0; transform: translate(-50%,-40%) scale(0.92); }
  to { opacity: 1; transform: translate(-50%,-50%) scale(1); }
}
.cookie-modal h2 {
  margin-bottom: 12px;
}
.cookie-modal .cookie-category {
  margin-bottom: 12px;
  font-size: 1.04rem;
  display: flex;
  align-items: center;
  gap: 14px;
}
.cookie-modal .cookie-toggle {
  width: 34px;
  height: 19px;
  display: inline-flex;
  align-items: center;
}
.cookie-modal .cookie-switch {
  appearance: none;
  width: 32px;
  height: 17px;
  background: #e2e7f3;
  border-radius: 21px;
  position: relative;
  outline: none;
  transition: background 0.21s;
  cursor: pointer;
}
.cookie-modal .cookie-switch:checked {
  background: #00A9C6;
}
.cookie-modal .cookie-switch:before {
  content: '';
  display: block;
  position: absolute;
  left: 2px; top: 2px;
  width: 13px; height: 13px;
  background: #fff;
  border-radius: 50%;
  transition: left 0.22s;
}
.cookie-modal .cookie-switch:checked:before {
  left: 17px;
}
.cookie-modal .modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
}
.cookie-modal .btn {
  font-size: 1rem;
  font-weight: 700;
  border-radius: 22px;
  padding: 8px 20px;
  box-shadow: 0 1.5px 8px 0 rgba(115,115,168,0.06);
  border: none;
  cursor: pointer;
}

.cookie-modal-bg {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: rgba(117, 123, 184, 0.25);
  z-index: 3900;
}

/* =========================================================
   MISCELLANEOUS (TEXT, BLOCKQUOTES, LISTS, ETC)
   ========================================================= */
::-webkit-scrollbar { width: 9px; background: var(--pastel-blue); }
::-webkit-scrollbar-thumb { background: #bceae8; border-radius: 10px; }
::-webkit-scrollbar-track { background: #f6fafd; }

blockquote {
  font-style: italic;
  color: var(--primary);
  background: #e9f8fd;
  border-left: 5px solid #a8e7f1;
  padding: 13px 12px 11px 18px;
  border-radius: 8px;
  margin: 0 0 12px 0;
  font-size: 1.08rem;
}
ul, ol {
  font-size: 1rem;
  color: #426097;
  margin-bottom: 6px;
  padding-left: 27px;
  line-height: 1.7;
}
ul li, ol li {
  margin-bottom: 7px;
  list-style-type: disc;
}
ul li strong, ol li strong { color: var(--secondary); }

strong {
  font-weight: 700;
  letter-spacing: 0.01em;
}

.text-section ul li {
  list-style-type: disc;
  margin-left: 11px;
  font-size: .97rem;
  margin-bottom: 5px;
}

.text-section p {
  font-size: 1.01rem;
  color: #334158;
  margin-bottom: 6px;
}

.privacy-policy, .gdpr-policy, .cookies-policy, .terms-of-use {
  background: var(--pastel-mint);
  border-radius: var(--radius);
  margin-bottom: 54px;
  padding: 38px 0 38px 0;
}

.privacy-policy h1, .gdpr-policy h1, .cookies-policy h1, .terms-of-use h1 { margin-bottom: 22px; }
.privacy-policy h2, .cookies-policy h2, .gdpr-policy h2, .terms-of-use h2 {
  margin-top: 24px;
  margin-bottom: 8px;
  font-size: 1.15rem;
}
.text-section em {
  color: #ab6ee0;
}

/* Miscellaneous Utility */
.mt-20 { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }
.pt-20 { padding-top: 20px; }
.pb-20 { padding-bottom: 20px; }

/* =========================================================
   RESPONSIVE, MOBILE-FIRST
   ========================================================= */
@media (max-width: 1200px) {
  .container {
    max-width: 970px;
  }
  .card-container, .content-grid, .features .feature-list, .services .service-list {
    gap: 16px;
  }
}
@media (max-width: 900px) {
  .container {
    max-width: 700px;
  }
  .features .feature-list li, .services .service-list li {
    flex: 1 1 48%;
    min-width: 160px;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.19rem; }
  .hero {
    padding: 32px 0 46px 0;
    min-height: 180px;
    margin-bottom: 28px;
  }
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }
  .footer-nav { gap: 12px; }
  .footer-nav a {
    font-size: .97rem;
    padding: 6px 6px;
  }
  .card-container, .content-grid, .features .feature-list, .services .service-list {
    flex-direction: column;
    gap: 13px;
  }
  .card, .features .feature-list li, .services .service-list li, .case-card, .testimonial-card {
    min-width: unset;
    width: 100%;
    padding: 18px 13px;
  }
  .testimonials, .features, .case-list, .contact-form, .confirmation {
    padding: 24px 0;
    border-radius: 14px;
  }
  .testimonial-card, .case-card, .blog-card {
    flex-direction: column;
    gap: 10px;
    max-width: 100%;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .cookie-modal { min-width: 98vw; padding: 20px 7px 16px 7px; }
}
@media (max-width: 500px) {
  .hero { padding: 15px 0 28px 0; }
  .cookie-banner {
    flex-direction: column;
    padding: 13px 8px;
    gap: 16px;
    font-size: .98rem;
  }
}

/* ======================= END: SOFT PASTEL DESIGN ======================= */