/* RESET & BASE STYLES --------------------------------------------------- */
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,
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;
  scroll-behavior: smooth;
}

body {
  font-family: 'Roboto', Arial, sans-serif;
  color: #1A3556;
  background: #F7F6F2;
  min-height: 100vh;
  line-height: 1.6;
  font-size: 1rem;
  letter-spacing: 0.01em;
}

img, svg {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  list-style: none;
}
a {
  color: #1A3556;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #47946E;
  outline: none;
}

/* BRAND FONTS --------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #1A3556;
  margin-bottom: 16px;
}
h1 {
  font-size: 2.4rem;
  margin-bottom: 24px;
}
h2 {
  font-size: 1.7rem;
}
h3 {
  font-size: 1.2rem;
}

@media (min-width: 480px) {
  h1 { font-size: 2.9rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.1rem; }
}

@media (min-width: 1024px) {
  h1 { font-size: 3.2rem; }
  h2 { font-size: 2.4rem; }
  h3 { font-size: 1.3rem; }
}

strong, b {
  font-weight: bold;
  color: #276945;
}

/* COMMON CLASSES and LAYOUT ----------------------------------------------- */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #FFFFFF;
  border-radius: 20px;
}
/* vibrant energetic section bg */
.hero, .cta {
  background: #F7F6F2;
  border-radius: 0 0 44px 44px;
  box-shadow: 0 6px 32px -16px rgba(26,53,86,0.08);
  margin-bottom: 40px;
  padding: 48px 0 36px 0;
}

@media (max-width: 600px) {
  .section {
    margin-bottom: 36px;
    padding: 30px 8px;
  }
  .hero, .cta {
    padding: 28px 0 18px 0;
  }
  .container {
    padding: 0 8px;
  }
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #FFFFFF;
  border-radius: 18px;
  padding: 24px 18px;
  box-shadow: 0 2px 20px 0 rgba(39,148,110,0.07);
  transition: box-shadow 0.22s, transform 0.17s;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.card:hover, .card:focus-within {
  box-shadow: 0 6px 38px -10px rgba(39,148,110,0.18);
  transform: translateY(-6px) scale(1.018);
  z-index: 2;
}
.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: 20px;
    align-items: flex-start;
  }
}

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

/**** VIBRANT, ENERGETIC DESIGN COLORS & VARIATION ******/
:root {
 --primary: #1A3556;
 --secondary: #F7F6F2;
 --accent: #47946E;
 --vibrant-magenta: #EE367B;
 --vibrant-orange: #FF971D;
 --vibrant-yellow: #FFDD41;
 --white: #FFFFFF;
 --black: #10151E;
 --card-bg: #FFFFFF;
}

/* FEATURE GRID & ELEMENTS ----------------------------------------------- */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
  margin: 20px 0 0 0;
}
.feature-grid li {
  background: #FFFFFF;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(238,54,123, 0.07);
  padding: 28px 18px 26px 18px;
  transition: transform 0.17s, box-shadow 0.19s;
  flex: 1 1 225px;
  min-width: 220px;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
  border-left: 8px solid var(--vibrant-magenta);
  border-top: 3px solid var(--accent);
}
.feature-grid li img {
  width: 48px; height: 48px;
  margin-bottom: 18px;
}
.feature-grid li h3 {
  margin-bottom: 10px;
  font-size: 1.17rem;
  color: var(--vibrant-magenta);
  text-align: center;
}
.feature-grid li p {
  text-align: center;
  color: var(--primary);
  font-size: 1rem;
}
.feature-grid li:hover, .feature-grid li:focus-visible {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 10px 34px -8px var(--accent);
  border-left: 8px solid var(--vibrant-orange);
}

/* BUTTONS & CTAS -------------------------------------------------- */
.cta, .btn, button, input[type="submit"] {
  appearance: none;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 1.075rem;
  border-radius: 999px;
  padding: 15px 32px;
  line-height: 1;
  cursor: pointer;
  background: var(--accent);
  color: #FFFFFF;
  box-shadow: 0 3px 18px -2px rgba(238,54,123,0.11);
  transition: background 0.17s, box-shadow 0.18s, transform 0.16s;
  margin: 8px 10px 8px 0;
}
.cta.primary,
input[type="submit"].primary,
button.primary { background: var(--vibrant-magenta); }
.cta:hover, .cta:focus,
button:hover, button:focus,
.btn:hover, .btn:focus {
  background: var(--vibrant-orange);
  color: var(--primary);
  transform: scale(1.03);
  box-shadow: 0 8px 27px -3px var(--vibrant-magenta);
}
.cta.secondary {
  background: var(--vibrant-yellow);
  color: var(--primary);
}
.cta.secondary:hover, .cta.secondary:focus {
  background: var(--vibrant-magenta);
  color: #FFF;
}
a.cta {
  text-decoration: none;
}

button:disabled,
.cta:disabled {
  opacity: 0.35;
  pointer-events: none;
  background: #E1E2E6;
  color: #B7B9C2;
}

/* HEADER, NAV, LOGO ------------------------------------ */
header {
  background: var(--primary);
  color: #FFFFFF;
  width: 100%;
  position: sticky;
  top: 0; left: 0; z-index: 60;
  box-shadow: 0 9px 32px -18px #36847D20;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 11px 20px;
  position: relative;
}
.logo {
  display: flex;
  align-items: center;
  margin-right: 24px;
}
.logo img {
  width: 58px;
  height: auto;
  margin-right: 6px;
}

.main-nav {
  display: flex;
  gap: 18px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', sans-serif;
  color: #FFF;
  font-weight: 600;
  font-size: 1rem;
  padding: 8px 10px;
  border-radius: 7px;
  transition: background 0.15s, color 0.13s;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--vibrant-magenta);
  color: #FFF;
}
header .cta.primary {
  margin-left: 18px;
  font-size: 1rem;
}

.mobile-menu-toggle {
  display: none;
  background: var(--vibrant-orange);
  color: #1A3556;
  border-radius: 999px;
  border: none;
  font-size: 2rem;
  line-height: 1;
  padding: 7px 16px;
  cursor: pointer;
  margin-left: 14px;
  transition: background 0.16s, color 0.13s;
  z-index: 91;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--vibrant-magenta);
  color: #FFF;
}

@media (max-width: 1024px) {
  .main-nav { display: none; }
  header .cta.primary { display: none; }
  .mobile-menu-toggle { display: inline-flex; }
}
@media (min-width: 1025px) {
  .mobile-menu { display: none !important; }
}

/* MOBILE NAVIGATION ---------------------------------------- */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(26,53,86,0.96);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  z-index: 120;
  transform: translateX(-100vw);
  transition: transform 0.3s cubic-bezier(.7,.1,.45,1.17);
  padding-top: 20px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: var(--vibrant-magenta);
  color: #FFF;
  border: none;
  font-size: 2.2rem;
  border-radius: 999px;
  margin-left: 15px;
  margin-bottom: 8px;
  padding: 4px 13px;
  align-self: flex-start;
  transition: background 0.13s, color 0.13s;
  z-index:121;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--vibrant-yellow);
  color: #1A3556;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
  margin-top: 24px;
  padding-left: 24px;
}
.mobile-nav a {
  font-family: 'Montserrat', sans-serif;
  color: #FFFFFF;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: 12px 8px 12px 0;
  border-bottom: 1px solid #27694522;
  width: 95%;
  transition: color 0.13s, background 0.19s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--vibrant-yellow);
  background: #27694540;
  border-radius: 10px;
}

/* MAIN ----------------------------------------------------------- */
main {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
  min-height: 50vh;
}

@media (max-width: 768px) {
  main {
    gap: 18px;
  }
}

/* CARDS, ARTICLES PREVIEW, SERVICE LIST --------------------- */
.service-list li {
  background: #FFFFFF;
  border-radius: 14px;
  box-shadow: 0 3px 18px 0 #B7D9CD2b;
  color: #1A3556;
  font-size: 1.1rem;
  padding: 16px 24px 14px 18px;
  margin-bottom: 20px;
  border-left: 7px solid var(--vibrant-orange);
  margin-right: 0;
  line-height: 1.62;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.service-list li span {
  color: var(--vibrant-magenta);
  font-weight: 700;
}

.article-summary-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  justify-content: stretch;
  margin-top: 26px;
}
@media (max-width: 760px) {
  .article-summary-grid {
    flex-direction: column;
    gap: 14px;
  }
}
.article-summary-grid article {
  background: #FFF;
  border-radius: 13px;
  box-shadow: 0 2px 12px 0 #47946E15;
  padding: 18px 18px 14px 18px;
  min-width: 220px;
  max-width: 330px;
  flex: 1 1 230px;
  border-left: 6px solid var(--vibrant-magenta);
  transition: box-shadow 0.15s, transform 0.13s;
}
.article-summary-grid article:hover, .article-summary-grid article:focus-within {
  box-shadow: 0px 14px 32px -8px var(--vibrant-magenta);
  transform: translateY(-5px) scale(1.017);
}

.tags {
  margin: 16px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.tags span {
  display: inline-flex;
  background: var(--vibrant-yellow);
  color: #1A3556;
  font-size: 0.98rem;
  font-weight: 700;
  border-radius: 9px;
  padding: 2px 14px;
}

/* TESTIMONIALS ----------------------------------------------- */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #FFFFFF;
  border-radius: 18px;
  margin-bottom: 20px;
  box-shadow: 0 2px 18px -2px #27694530;
  border-left: 7px solid var(--vibrant-orange);
  max-width: 600px;
  transition: background 0.15s, box-shadow 0.13s;
}
.testimonial-card blockquote {
  color: #1A3556;
  font-size: 1.12rem;
  font-style: italic;
  font-family: 'Roboto', Arial, sans-serif;
  margin-bottom: 4px;
}
.testimonial-meta {
  color: var(--accent);
  font-weight: 600;
  font-size: 1rem;
}
.testimonial-meta span {
  color: var(--vibrant-magenta);
  font-size: 1.13rem;
  margin-left: 7px;
}

@media (max-width: 600px) {
  .testimonial-card {
    padding: 15px;
    font-size: 1.015rem;
    gap: 13px;
  }
}

/**** NEWSLETTER SIGN-UP & FORMS ----------------------------- */
.signup-form {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 8px 0 0 0;
}
.signup-form input[type="email"] {
  border: 2px solid #EEE;
  border-radius: 13px;
  padding: 12px 16px;
  font-size: 1.04rem;
  font-family: 'Roboto', Arial, sans-serif;
  min-width: 220px;
  max-width: 320px;
  background: #F3F3FC;
  color: #1A3556;
  transition: border 0.13s;
}
.signup-form input[type="email"]:focus {
  border: 2px solid var(--vibrant-magenta);
}
.signup-form button {
  background: var(--accent);
  color: #FFF;
  border-radius: 12px;
  font-weight: 700;
  padding: 12px 18px;
}
@media (max-width: 600px) {
  .signup-form {
    flex-direction: column;
    gap: 8px;
  }
}
.note {
  color: #EE367B;
  font-size: 1.01rem;
  margin-top: 8px;
}

/* MAP PLACEHOLDER ------------------------------------------------ */
.map-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #F7F9FC;
  border-radius: 18px;
  box-shadow: 0 2px 10px -2px #A6B5C940;
  padding: 22px 12px 12px 12px;
  margin: 10px 0 0 0;
  width: 100%;
}
.map-placeholder img {
  width: 96px; height: 96px;
  margin-bottom: 2px;
}
.map-placeholder p {
  font-size: .97rem;
  color: #276945;
  text-align: center;
  margin: 0;
}

/* FOOTER ---------------------------------------------------------- */
footer {
  background: var(--primary);
  color: #F7F6F2;
  width: 100%;
  margin-top: 54px;
  padding: 40px 0 18px 0;
}
footer .container {
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.footer-nav, .legal-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 7px;
  justify-content: center;
}
.footer-nav a, .legal-nav a {
  color: #FFF;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 7px;
  transition: background 0.13s;
}
.footer-nav a:hover, .legal-nav a:hover {
  background: var(--vibrant-magenta);
}
.footer-nav, .legal-nav {
  margin: 0 0 7px 0;
}
.social-icons {
  display: flex;
  gap: 12px;
  margin-bottom: 7px;
}
.social-icons img {
  width: 28px; height: 28px;
  filter: drop-shadow(0 0 5px #EE367B11);
  transition: filter 0.14s;
}
.social-icons img:hover {
  filter: drop-shadow(0 0 7px #EE367B);
}
footer small {
  display: inline-block;
  color: #F7F6F2A5;
  margin-top: 5px;
  font-size: 0.89rem;
}

/* ABOUT/TEAM ----------------------------------------------- */
.team-member {
  background: #FFFFFF;
  border-radius: 15px;
  box-shadow: 0 2px 16px -2px #1A355655;
  padding: 18px 22px 13px 19px;
  margin-bottom: 20px;
  border-left: 7px solid var(--vibrant-magenta);
  transition: box-shadow 0.13s, transform 0.13s;
}
.team-member h3 {
  color: var(--vibrant-magenta);
  margin-bottom: 7px;
}
.team-member:hover, .team-member:focus-within {
  box-shadow: 0 6px 22px -6px var(--vibrant-magenta);
  transform: scale(1.017);
}

/* ARTICLE-FILTER -------------------------------------------------- */
.article-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 12px;
}
.article-filter button {
  background: var(--vibrant-yellow);
  color: var(--primary);
  border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .97rem;
  padding: 8px 15px;
  border: none;
  outline: none;
  cursor: pointer;
  transition: background 0.13s, color 0.14s;
}
.article-filter button:hover, .article-filter button:focus {
  background: var(--vibrant-magenta);
  color: #FFF;
}

input[type="search"] {
  border: 2px solid #47946E55;
  border-radius: 11px;
  padding: 11px 14px;
  font-size: 1.02rem;
  width: 100%;
  max-width: 340px;
  background: #FFF;
  margin-bottom: 15px;
  color: #1A3556;
  transition: border 0.14s;
}
input[type="search"]:focus {
  border-color: var(--vibrant-magenta);
  outline: none;
}

/* ADDRESS & CONTACT DETAILS ---------------------------------------- */
address {
  color: #1A3556;
  font-style: normal;
  font-size: 1.04rem;
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.address strong {
  color: var(--accent);
}
.contact-details {
  background: #FFF;
  border-radius: 18px;
  box-shadow: 0 2px 12px -2px #47946E15;
  margin-bottom: 32px;
  padding: 28px 16px 16px 18px;
}
@media (max-width:600px){
  .contact-details {
    padding: 16px 9px 10px 10px;
  }
}
.location {
  margin-top: 8px;
}

/* CONFIRMATION SECTION (THANK-YOU) ------------------------ */
.confirmation {
  background: var(--vibrant-yellow);
  color: #1A3556;
  border-radius: 23px;
  padding: 38px 15px 20px 15px;
  margin-bottom: 32px;
  text-align: center;
  box-shadow: 0 2px 18px -2px #FFDD416A;
}
.confirmation h1 {
  color: var(--vibrant-magenta);
}

/********************** COOKIE CONSENT BANNER & MODAL *************************/
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: var(--vibrant-magenta);
  color: #FFF;
  font-family: 'Roboto', sans-serif;
  z-index: 1002;
  padding: 19px 16px 18px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 13px;
  box-shadow: 0 -8px 30px -10px #47946E77;
  animation: cookiebanner-dropin 0.57s cubic-bezier(.8,.1,.37,1.17);
}
.cookie-banner p {
  color: #FFF;
  font-size: 1.04rem;
  margin-bottom: 3px;
  text-align: center;
}
.cookie-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.cookie-actions button {
  padding: 10px 18px;
  border-radius: 7px;
  font-size: 0.97rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  font-family: 'Montserrat', 'Roboto', sans-serif;
  transition: background 0.14s, color 0.12s, box-shadow 0.14s;
}
.cookie-accept {
  background: var(--vibrant-yellow);
  color: var(--primary);
}
.cookie-accept:hover, .cookie-accept:focus { background: var(--accent); color: #FFF; }
.cookie-reject {
  background: #FFF;
  color: var(--vibrant-magenta);
  border: 2px solid var(--vibrant-magenta);
}
.cookie-reject:hover, .cookie-reject:focus { background: var(--vibrant-orange); color: #FFF; border-color: var(--vibrant-orange); }
.cookie-settings {
  background: var(--accent);
  color: #FFF;
}
.cookie-settings:hover, .cookie-settings:focus { background: var(--primary); color: #FFF; }

@media (max-width: 480px){
  .cookie-banner {
    padding: 17px 5px 15px 5px;
    gap: 8px;
  }
  .cookie-actions {
    gap: 9px;
  }
}

@keyframes cookiebanner-dropin {
  0% { transform: translateY(96px); opacity: 0; }
  80%{ transform: translateY(-3px); }
  100% { transform: translateY(0); opacity: 1; }
}

.cookie-modal {
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0.85);
  min-width: 308px; max-width: 94vw;
  background: #FFF;
  color: #1A3556;
  z-index: 1204;
  border-radius: 18px;
  box-shadow: 0 18px 56px -12px #27694577;
  padding: 34px 26px 28px 26px;
  display: none;
  flex-direction: column;
  gap: 22px;
  animation: cookiemodal-in 0.44s cubic-bezier(.56,.12,.35,1.18);
}
.cookie-modal.open { display: flex; }
.cookie-modal h2 {
  color: var(--vibrant-magenta);
  font-size: 1.38rem;
  margin-bottom: 10px;
}
.cookie-modal label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.06rem;
  margin-bottom: 7px;
}
.cookie-modal .essential {
  color: var(--accent);
  font-weight: 700;
  margin-right: 15px;
}
.cookie-modal input[type='checkbox'] {
  width: 22px; height: 22px;
  accent-color: var(--vibrant-magenta);
  margin-right: 4px;
}
.cookie-modal .cookie-modal-close {
  background: var(--vibrant-magenta);
  color: #FFF;
  border-radius: 999px;
  border: none;
  font-size: 1.5rem;
  line-height: 1;
  padding: 6px 15px;
  cursor: pointer;
  position: absolute;
  top: 17px; right: 19px;
  z-index: 1210;
  transition: background 0.14s, color 0.14s;
}
.cookie-modal .cookie-modal-close:hover,
.cookie-modal .cookie-modal-close:focus {
  background: var(--accent);
  color: #FFF;
}
.cookie-modal-footer {
  display: flex;
  gap: 15px;
  justify-content: flex-end;
}
.cookie-modal-footer button {
  padding: 10px 18px;
  border-radius: 7px;
  font-size: 0.99rem;
  font-weight: 700;
  border: none;
  font-family: 'Montserrat', 'Roboto', sans-serif;
}
.cookie-modal-footer .cookie-save {
  background: var(--vibrant-magenta);
  color: #FFF;
}
.cookie-modal-footer .cookie-cancel {
  background: var(--vibrant-yellow);
  color: var(--primary);
}
.cookie-modal-footer .cookie-save:hover,
.cookie-modal-footer .cookie-save:focus {
  background: var(--accent);
}
.cookie-modal-footer .cookie-cancel:hover,
.cookie-modal-footer .cookie-cancel:focus {
  background: var(--primary);
  color: #FFF;
}

/* Animations for modal */
@keyframes cookiemodal-in {
  0% { opacity: 0; transform: translate(-50%, -33%) scale(0.77); }
  60% { opacity: 0.87; }
  100% { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}

/************************ RESPONSIVE **************************/
@media (max-width: 768px) {
  .footer-nav, .legal-nav {
    gap: 9px;
    font-size: 0.96rem;
  }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.25rem; }
}
@media (max-width: 550px) {
  .footer-nav, .legal-nav {
    flex-direction: column;
    align-items: center;
  }
  .feature-grid,
  .article-summary-grid {
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }
}

/********************** MISC & ACCESSIBILITY ************************/
::selection {
  background: var(--vibrant-yellow);
  color: #1A3556;
}
a:focus, .cta:focus, button:focus, input:focus, .main-nav a:focus {
  outline: 2px solid var(--vibrant-magenta);
  outline-offset: 2px;
}

/********************** SCROLLBAR STYLING (optional, non-critical) ******/
::-webkit-scrollbar {
  width: 10px;
  background: #F7F6F2;
}
::-webkit-scrollbar-thumb {
  background: var(--vibrant-magenta);
  border-radius: 15px;
  border: 2px solid #F7F6F2;
}

/* END OF CSS */
