/* ===== 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 for all */
*, *:before, *:after { box-sizing: border-box; }
html {
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  background: #F3F6FA; /* soft pastel bg from brand secondary */
  font-family: 'Open Sans', Arial, sans-serif;
  color: #174E80;
  line-height: 1.66;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: #17728E; transition: color 0.2s; }
a:hover, a:focus { color: #37A1C4; outline: none; }
ul, ol { list-style: none; margin: 0; padding: 0; }
button { font: inherit; cursor: pointer; background: none; border: none; outline: none; }
input, textarea { font: inherit; border: 1px solid #dde3ee; border-radius: 8px; padding: 10px 14px; background: #fff; transition: border 0.2s; }
input:focus, textarea:focus { outline: 2px solid #37A1C4; border-color: #37A1C4; }

/* ===== BRAND FONTS ===== */
@import url('https://fonts.googleapis.com/css?family=Montserrat:600,700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600,700&display=swap');
h1, h2, h3, h4, h5 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #174E80;
}
h1 { font-size: 2.25rem; margin-bottom: 24px; }
h2 { font-size: 1.6rem; margin-bottom: 18px; }
h3 { font-size: 1.25rem; margin-bottom: 12px; font-weight: 600; }
h4, h5, h6 { font-size: 1.05rem; margin-bottom: 6px; }
p, ul, ol, li, input, textarea {
  font-family: 'Open Sans', Arial, sans-serif;
  color: #2c4966;
  font-size: 1rem;
}

/* ===== CONTAINER LAYOUT ===== */
.container {
  width: 100%;
  max-width: 1190px;
  margin: 0 auto;
  padding: 0 18px;
}
.content-wrapper {
  width: 100%;
  margin: 0 auto;
}

/* ====== SOFT PASTEL COLOR PALETTE ===== */
:root {
  --primary: #174E80;
  --primary-dark: #123961;
  --secondary: #F3F6FA;
  --secondary-light: #fbfdff;
  --accent: #37A1C4;
  --brand-accent: #17728E;
  --pastel-blue: #e5f0fc;
  --pastel-pink: #fdeaf6;
  --pastel-mint: #e8fcf8;
  --pastel-yellow: #fff7df;
  --pastel-lavender: #f7f3fa;
  --card-shadow: 0 2px 24px 0 rgba(23,78,128,0.07);
  --radius-card: 22px;
  --radius-btn: 18px;
}

/* ===== MAIN NAVIGATION ===== */
header {
  background: #fff;
  box-shadow: 0 2px 24px 0 rgba(23,78,128,0.04);
  position: relative;
  z-index: 300;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 18px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}
.main-nav a {
  font-size: 1rem;
  padding: 8px 14px;
  border-radius: 12px;
  color: #174E80;
  transition: background 0.18s, color 0.16s;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--pastel-blue);
  color: #17728E;
}
.cta-button {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.12rem;
  letter-spacing: 0.01em;
  background: linear-gradient(90deg, #e8fcf8 0%, #fff7df 100%);
  color: #17728E;
  padding: 12px 30px;
  border-radius: var(--radius-btn);
  box-shadow: 0 2px 14px 0 rgba(55,161,196,0.06);
  text-align: center;
  border: 2px solid #e8fcf8;
  transition: background 0.18s, color 0.15s, box-shadow 0.21s, border 0.16s;
}
.cta-button:hover, .cta-button:focus {
  background: #e5f0fc;
  color: #174E80;
  border-color: #37A1C4;
  box-shadow: 0 4px 32px 0 rgba(55,161,196,0.10);
}
.link-secondary {
  margin-left: 16px;
  color: #37A1C4;
  font-weight: 600;
  text-decoration: underline;
  transition: color 0.2s;
}
.link-secondary:hover, .link-secondary:focus { color: #174E80; }

/* ===== Mobile MENU ===== */
.mobile-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  font-size: 2rem;
  color: #174E80;
  background: #e5f0fc;
  border-radius: 50%;
  border: none;
  margin-left: 10px;
  transition: background 0.16s, color 0.18s;
  z-index: 401;
}
.mobile-menu-toggle:active, .mobile-menu-toggle:focus {
  background: #dde3ee;
  color: #17728E;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(180deg, #e5f0fc 60%, #fdeaf6 100%);
  box-shadow: 0 6px 60px 0 rgba(23,78,128,0.11);
  padding: 32px 0 0 0;
  z-index: 400;
  transform: translateX(-100%);
  transition: transform 0.36s cubic-bezier(.31,1.22,.79,1);
  visibility: hidden;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}
.mobile-menu-close {
  font-size: 2.3rem;
  color: #17728E;
  background: none;
  border: none;
  align-self: flex-end;
  margin: 0 26px 20px 0;
  cursor: pointer;
  transition: color 0.19s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus { color: #174E80; }
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding-left: 32px;
  padding-top: 16px;
}
.mobile-nav a {
  font-size: 1.2rem;
  padding: 12px 0;
  color: #174E80;
  border-radius: 16px;
  transition: background 0.15s, color 0.16s;
}
.mobile-nav a:hover, .mobile-nav a:focus { background: #e8fcf8; color: #17728E; }

@media (max-width:1060px) {
  .main-nav { gap: 10px; }
  header .container { gap: 7px; }
}
@media (max-width:880px) {
  .main-nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* ======== SECTIONS, SPACING, FLEX ======== */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
  border-radius: 26px;
  box-shadow: none;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--secondary-light);
  border-radius: var(--radius-card);
  box-shadow: var(--card-shadow);
  padding: 28px 22px;
  flex: 1 1 280px;
  min-width: 240px;
  transition: box-shadow 0.21s, transform 0.19s;
}
.card:hover { box-shadow: 0 4px 25px 3px rgba(23,78,128,0.12); transform: translateY(-7px) scale(1.03); }
.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-list,
.testimonial-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-bottom: 28px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 24px;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 2px 20px 0 rgba(23,78,128,0.06);
  flex: 1 1 300px;
  min-width: 250px;
  max-width: 380px;
  border: 1.5px solid #e5f0fc;
  font-size: 1.07rem;
  transition: box-shadow 0.18s, border 0.16s;
}
.testimonial-card:hover { border: 1.5px solid #37A1C4; box-shadow: 0 6px 34px 0 rgba(55,161,196,0.10); }
.testimonial-card blockquote {
  margin: 0 0 6px 0;
  color: #13406b;
  font-weight: 500;
  font-style: italic;
  font-size: 1.1rem;
}
.testimonial-meta {
  font-size: 1rem;
  color: #17728E;
  opacity: 0.75;
}
.customer-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 25px;
  margin-top: 12px;
}
.feature-grid, .feature-list, .service-steps, .pricing-table, .template-grid, .blog-posts, .faq-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 22px 0 8px 0;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #e8fcf8;
  border-radius: 18px;
  padding: 26px 22px 18px 22px;
  box-shadow: 0 2px 14px 0 rgba(23,78,128,0.03);
  flex: 1 1 220px;
  min-width: 195px;
  transition: box-shadow 0.18s, background 0.18s;
}
.feature-item img { width: 42px; height: 42px; margin-bottom: 10px; }
.feature-item:hover { box-shadow: 0 5px 25px 0 rgba(55,161,196,0.12); background: #fbfdff; }
.service-step {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #f7f3fa;
  border-radius: 18px;
  padding: 24px 20px 16px 20px;
  box-shadow: 0 1px 12px 0 rgba(55,161,196,0.02);
  flex: 1 1 220px;
  min-width: 185px;
  transition: box-shadow 0.18s;
}
.service-step img { width: 38px; height: 38px; margin-bottom: 8px; }
.service-step:hover { box-shadow: 0 3px 18px 0 rgba(55,161,196,0.07); }


/* ====== SPECIAL ELEMENTS & CARDS ======= */
.pricing-table {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 32px;
}
.pricing-plan {
  flex: 1 1 260px;
  min-width: 220px;
  padding: 32px 26px 28px 26px;
  background: #e5f0fc;
  border-radius: 22px;
  box-shadow: 0 2px 22px 0 rgba(23,78,128,0.08);
  position: relative;
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
  align-items: flex-start;
  transition: box-shadow 0.18s, background 0.18s;
}
.pricing-plan h3 { font-size: 1.3rem; margin-bottom: 11px; }
.pricing-plan p { font-size: 1.15rem; color: #17728E; margin-bottom: 11px; font-weight: 600; }
.pricing-plan ul { margin-bottom: 15px; }
.pricing-plan ul li { margin-bottom: 7px; font-size: 0.97rem; }
.pricing-plan .cta-button { margin-top: auto; width: 100%; }
.pricing-plan:hover { background: #fff7df; box-shadow: 0 4px 32px 0 rgba(55,161,196,0.09); }
.plan-comparison h3 { margin-bottom: 12px; }

.template-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}
.template-card {
  flex: 1 1 250px;
  min-width: 200px;
  background: #fdeaf6;
  border-radius: 18px;
  box-shadow: 0 2px 12px 0 rgba(55,161,196,0.04);
  padding: 21px 17px 14px 20px;
  margin-bottom: 20px;
  transition: box-shadow 0.16s, background 0.14s;
}
.template-card h3 { margin-bottom: 10px; }
.template-card:hover { background: #e5f0fc; box-shadow: 0 7px 26px 0 rgba(23,78,128,0.06); }

.blog-posts {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 15px;
}
.blog-post {
  flex: 1 1 300px;
  min-width: 230px;
  background: #e8fcf8;
  border-radius: 18px;
  box-shadow: 0 1px 8px 0 rgba(55,161,196,0.03);
  padding: 20px 16px 13px 22px;
  margin-bottom: 20px;
  transition: box-shadow 0.16s;
}
.blog-post h3 { margin-bottom: 11px; font-size: 1.1rem; }
.blog-post a.link-secondary { margin-left: 0; }
.blog-post:hover { box-shadow: 0 5px 25px 0 rgba(55,161,196,0.08); }

.faq-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.faq-item {
  flex: 1 1 320px;
  min-width: 240px;
  padding: 18px 18px 11px 16px;
  background: #f7f3fa;
  border-radius: 14px;
  margin-bottom: 20px;
  box-shadow: 0 1px 8px 0 rgba(55,161,196,0.03);
}
.faq-item h3 { font-size: 1.05rem; }

/* Table styles */
.comparison-table {
  overflow-x: auto;
  width: 100%;
  margin-bottom: 26px;
}
.comparison-table table {
  border-collapse: separate;
  border-spacing: 0;
  width: 100%;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 1px 12px 0 rgba(55,161,196,0.04);
  margin-bottom: 0;
}
.comparison-table th, .comparison-table td {
  padding: 13px 16px;
  border-bottom: 1px solid #e8fcf8;
  font-size: 1rem;
}
.comparison-table th {
  background: #e8fcf8;
  color: #174E80;
  text-align: left;
  font-size: 1.07rem;
}
.comparison-table tr:last-child td { border-bottom: none; }

/* ===== Input/Forms ===== */
.search-bar {
  display: flex;
  align-items: center;
  background: #e5f0fc;
  border-radius: 16px;
  padding: 6px 10px;
  margin-bottom: 24px;
  max-width: 380px;
  box-shadow: 0 1px 5px 0 rgba(23,78,128,0.03);
  gap: 6px;
}
.search-bar input {
  border: none;
  background: transparent;
  flex: 1;
  font-size: 1rem;
  color: #174E80;
  padding: 0 6px;
}
.search-bar button {
  background: #37A1C4;
  color: #fff;
  border-radius: 12px;
  border: none;
  font-size: 1.2rem;
  padding: 5px 10px;
  transition: background 0.16s;
}
.search-bar button:hover, .search-bar button:focus { background: #17728E; }

.newsletter-signup {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
  justify-content: center;
  margin: 22px 0 0 0;
}
.newsletter-signup p { font-size: 1rem; }

/* ===== FOOTER ===== */
footer {
  background: #fff;
  border-top: 3px solid #e5f0fc;
  padding: 34px 0 28px 0;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  align-items: flex-start;
  justify-content: space-between;
  padding-left: 18px;
  padding-right: 18px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 180px;
}
.footer-nav a {
  color: #17728E;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  transition: color 0.19s, text-decoration 0.18s;
  margin-bottom: 2px;
}
.footer-nav a:hover, .footer-nav a:focus { color: #174E80; text-decoration: underline; }
.contact-details {
  font-size: 1rem;
  color: #174E80;
  opacity: 0.85;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.footer-brand img {
  width: 42px;
  height: 42px;
  display: block;
  opacity: 0.8;
}
@media (max-width: 700px) {
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}

/* ===== LISTS, CATEGORIES ===== */
.template-categories ul, .blog-categories ul {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-bottom: 24px;
}
.template-categories li, .blog-categories li {
  background: #e5f0fc;
  border-radius: 12px;
  color: #174E80;
  padding: 6px 17px;
  font-size: 0.98rem;
  font-weight: 500;
  margin-bottom: 6px;
}
.template-features ul, .template-features li {
  list-style: disc inside;
  color: #174E80;
  margin-bottom: 5px;
}

/* ===== CONTACT/SUPPORT ===== */
.map-location {
  background: #fbfdff;
  border-radius: 10px;
  padding: 19px 12px 14px 16px;
  margin-top: 17px;
  box-shadow: 0 2px 12px 0 rgba(23,78,128,0.03);
}
.support-channels ul {
  margin: 13px 0;
}
.support-channels li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
  font-size: 1rem;
}
.support-channels img { width: 21px; opacity: 0.8; }

/* ==== TEXT SECTIONS, UL/OL==== */
.text-section {
  background: #fbfdff;
  border-radius: 14px;
  padding: 14px 17px 7px 20px;
  margin-bottom: 15px;
  box-shadow: 0 1px 8px 0 rgba(55,161,196,0.02);
}
.text-section ul, .faq-list ul {
  margin-left: 23px;
  margin-top: 7px;
}
.text-section li, .faq-list li {
  list-style: disc;
  margin-bottom: 6px;
  font-size: 1.01rem;
}

/* ======= SPACING SYSTEM ======= */
section:not(:last-child) { margin-bottom: 60px; }
section .feature-grid,
section .feature-list,
section .template-grid,
section .blog-posts { margin-bottom: 26px; }

/* ====== COOKIE CONSENT BANNER ====== */
.cookie-consent-banner {
  position: fixed;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 97vw;
  max-width: 540px;
  background: linear-gradient(90deg, #e5f0fc 80%, #fdeaf6 100%);
  color: #174E80;
  border-radius: 16px 16px 0 0;
  box-shadow: 0 8px 48px 0 rgba(23,78,128,0.11);
  z-index: 998;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 22px 20px 18px 24px;
  gap: 23px;
  font-size: 1rem;
  animation: cookieSlideIn 0.55s cubic-bezier(.31,1.22,.79,1);
}
@keyframes cookieSlideIn { from { transform: translateX(-50%) translateY(80px); opacity: 0;} to { transform: translateX(-50%) translateY(0); opacity: 1; } }
.cookie-consent-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 4px;
}
.cookie-btn {
  padding: 10px 28px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  border-radius: 13px;
  border: 2px solid #37A1C4;
  background: #fff;
  color: #174E80;
  font-weight: 600;
  margin-top: 1px;
  transition: background 0.18s, color 0.16s, border 0.18s;
}
.cookie-btn.accept {
  background: #37A1C4;
  color: #fff;
  border-color: #17728E;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #17728E;
  color: #fff;
  border-color: #174E80;
}
.cookie-btn.reject {
  background: #fdeaf6;
  color: #17728E;
  border-color: #fdeaf6;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #fff7df;
  color: #174E80;
  border-color: #e5f0fc;
}
.cookie-btn.settings {
  background: transparent;
  color: #37A1C4;
  border-color: #37A1C4;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #e5f0fc;
  color: #17728E;
}

/* Cookie modal */
.cookie-modal-overlay {
  position: fixed;
  z-index: 1001;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(25,30,45,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInOverlay 0.4s;
}
@keyframes fadeInOverlay { from {opacity:0;} to {opacity:1;} }
.cookie-modal {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 15px 56px 0 rgba(23,78,128,0.19);
  padding: 34px 38px 28px 38px;
  width: 95vw;
  max-width: 420px;
  color: #174E80;
  display: flex;
  flex-direction: column;
  gap: 19px;
  animation: modalSlideIn 0.36s cubic-bezier(.31,1.22,.79,1);
}
@keyframes modalSlideIn { from { transform: translateY(110px); opacity: 0;} to { transform: translateY(0); opacity: 1; } }
.cookie-modal h3 {
  font-size: 1.22rem;
  margin-bottom: 14px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 11px;
}
.cookie-modal label {
  font-size: 1rem;
  color: #17728E;
  cursor: pointer;
}
.cookie-modal input[type='checkbox'] { margin-right: 3px; transform: scale(1.18); }
.cookie-modal .cookie-btn { margin-top: 9px; width: 100%; }
.cookie-modal .cookie-btn.reject { background: #fdeaf6; }
.cookie-modal .cookie-btn.accept { background: #37A1C4; color: #fff; border-color: #17728E; }
.cookie-modal .cookie-btn.settings { background: #e5f0fc; color: #17728E; border-color: #e5f0fc; }

/* ===== ANIMATIONS & MICRO-INTERACTIONS ===== */
.cta-button, .template-card, .feature-item, .card, .pricing-plan, .testimonial-card, .blog-post, .faq-item {
  transition: box-shadow 0.22s, background 0.19s, transform 0.14s, border-color 0.16s;
}
.cta-button:active { transform: scale(0.99); }
.blog-post:hover, .template-card:hover, .feature-item:hover, .pricing-plan:hover, .testimonial-card:hover {
  transform: translateY(-2px) scale(1.018);
}

/* ======== RESPONSIVE DESIGN ======== */
@media (max-width: 1100px) {
  .container { max-width: 97vw; }
  .pricing-table, .feature-list, .template-grid, .blog-posts, .faq-list { gap: 18px; }
}
@media (max-width: 880px) {
  .feature-grid, .feature-list, .service-steps, .pricing-table, .template-grid, .blog-posts, .faq-list {
    flex-direction: column;
    gap: 18px;
  }
  .card-container, .content-grid {
    flex-direction: column;
    gap: 15px;
  }
}
@media (max-width: 700px) {
  section { padding: 28px 5px; }
  .container, .content-wrapper { padding-left: 6px; padding-right: 6px; }
  .testimonial-list, .customer-logos { gap: 10px; }
  .cookie-consent-banner { padding: 12px 5px 10px 10px; font-size: 0.96rem; }
  .cookie-consent-buttons { gap: 11px; flex-direction: column; align-items: flex-start; }
}
@media (max-width:540px) {
  .section, section { padding: 18px 0 18px 0; border-radius: 0; margin-bottom: 34px; }
  h1 { font-size: 1.45rem; margin-bottom: 11px; }
  h2 { font-size: 1.14rem; margin-bottom: 9px; }
  h3 { font-size: 1rem; margin-bottom: 7px; }
  .cta-button { padding: 10px 18px; font-size: 0.98rem; border-radius: 10px; }
  .blog-post, .faq-item, .testimonial-card, .template-card {
    min-width: 70vw !important;
    max-width: 97vw;
    padding: 12px 6px 7px 13px;
  }
  .pricing-plan { padding: 20px 10px 15px 13px; border-radius: 12px; }
  .feature-item, .service-step { padding: 13px 7px 7px 12px; border-radius: 10px; }
}
@media (max-width: 768px) {
  .content-grid, .card-container, .testimonial-list, .feature-grid,
  .feature-list, .service-steps, .template-grid, .blog-posts, .faq-list {
    flex-direction: column;
    gap: 13px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  header .container {
    padding: 12px 7px 12px 8px;
  }
  .main-nav { gap: 6px; }
  .footer-nav { gap: 6px; min-width: 130px; }
  .footer-brand img { width: 34px; height: 34px; }
}

/* ======= Miscellaneous: Accessibility & Helper ======= */
[tabindex]:focus, a:focus, button:focus, input:focus, .cta-button:focus {
  outline: 2px dashed #37A1C4;
  outline-offset: 2px;
}
::-webkit-selection { background: #e5f0fc; color: #174E80; }
::selection { background: #e5f0fc; color: #174E80; }

/* === Hide outline on mouse, keep for keyboard === */
body:not(.user-is-tabbing) :focus { outline: none; }

/* ===== END OF STYLE ===== */
