/* --- CSS Reset & Normalize --- */
html {
  box-sizing: border-box;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
  outline: none;
}
body {
  background: #F5F5F5;
  color: #222;
  font-family: 'Roboto', Arial, sans-serif;
  line-height: 1.6;
  min-height: 100vh;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #205375;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover,
a:focus {
  color: #FFD447;
}
ul {
  list-style: none;
}

/* --- Font Import (Embed in <head> in production) --- */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,800&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');

/* --- Brand Variables --- */
:root {
  --brand-primary: #205375;
  --brand-secondary: #FFD447;
  --brand-accent: #F5F5F5;
  --brand-gray: #ECECEC;
  --brand-dark: #182C3A;
  --brand-error: #e66161;
  --heading-font: 'Montserrat', Arial, sans-serif;
  --body-font: 'Roboto', Arial, sans-serif;
  --shadow-lg: 0 6px 24px 0 rgba(32,83,117,0.13);
  --shadow-card: 0 3px 12px 0 rgba(32,83,117,0.08);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 30px;
}

/* --- Container --- */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* --- Header & Navigation --- */
header {
  background: var(--brand-primary);
  color: #fff;
  width: 100%;
  position: relative;
  box-shadow: var(--shadow-lg);
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
  position: relative;
}
.main-nav a img {
  max-height: 46px;
  margin-right: 6px;
}
.main-nav ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
  margin: 0 18px;
}
.main-nav ul li a {
  font-family: var(--heading-font);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: .025em;
  transition: color 0.18s;
  border-radius: var(--radius-sm);
  padding: 7px 12px;
}
.main-nav ul li a:hover,
.main-nav ul li a:focus {
  background: var(--brand-secondary);
  color: var(--brand-primary);
}

.cta-btn {
  font-family: var(--heading-font);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--brand-primary);
  background: var(--brand-secondary);
  border: none;
  border-radius: var(--radius-md);
  padding: 12px 32px;
  box-shadow: 0 2px 10px 0 rgba(255, 212, 71, 0.18);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.18s;
  display: inline-block;
  margin-top: 14px;
  letter-spacing: .025em;
}
.cta-btn:hover,
.cta-btn:focus {
  color: #fff;
  background: var(--brand-primary);
  box-shadow: 0 2px 24px 0 rgba(32, 83, 117, 0.12);
  transform: translateY(-2px) scale(1.04) rotate(-2deg);
}

/* --- Mobile Menu --- */
.mobile-menu-toggle {
  background: var(--brand-secondary);
  color: var(--brand-primary);
  font-size: 2rem;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  cursor: pointer;
  box-shadow: 0 1px 6px 0 rgba(32,83,117,0.10);
  display: none;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 14px;
  top: 18px;
  z-index: 150;
  transition: background 0.18s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #ffe48f;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: #fff;
  box-shadow: 0 0 32px 0 rgba(32,83,117,0.13);
  transform: translateX(100vw);
  transition: transform 0.38s cubic-bezier(.77,0,.175,1);
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  position: absolute;
  top: 22px;
  right: 20px;
  background: var(--brand-primary);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  font-size: 2.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1001;
  transition: background 0.2s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: var(--brand-secondary);
  color: var(--brand-primary);
}
.mobile-nav {
  margin-top: 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
}
.mobile-nav a {
  font-family: var(--heading-font);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--brand-primary);
  padding: 18px 0;
  width: 100vw;
  text-align: center;
  letter-spacing: 0.01em;
  border-radius: var(--radius-sm);
  transition: background 0.2s, color 0.18s;
  position: relative;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: var(--brand-secondary);
  color: var(--brand-dark);
}

/* --- Hero Section --- */
.hero {
  background: linear-gradient(120deg,#FFD447 75%, #F5F5F5 100%);
  border-bottom-left-radius: var(--radius-lg);
  border-bottom-right-radius: var(--radius-lg);
  box-shadow: 0 16px 42px 0 rgba(32,83,117,0.08);
  min-height: 300px;
  padding-bottom: 36px;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  max-width: 700px;
  margin: 0 auto;
}
.hero h1 {
  font-family: var(--heading-font);
  font-size: 2.3rem;
  color: var(--brand-primary);
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}
.hero p {
  font-size: 1.125rem;
  color: #222;
  margin-bottom: 10px;
}

/* --- Section / Card / Content Layouts --- */
.section, main section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: flex-start;
  align-items: flex-start;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.text-section ul {
  padding-left: 20px;
  margin-top: 8px;
}
.text-section li {
  position: relative;
  margin-bottom: 8px;
  padding-left: 18px;
  font-size: 1rem;
}
.text-section li:before {
  content: '\2022';
  color: var(--brand-primary);
  position: absolute;
  left: 0;
  font-size: 1.25em;
  top: 0.1em;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
}
.card {
  margin-bottom: 20px;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: 28px 26px 22px 26px;
  transition: box-shadow 0.21s, transform 0.18s;
  position: relative;
  flex: 1 0 280px;
  min-width: 260px;
}
.card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 8px 36px 0 rgba(32,83,117,0.13);
}

/* --- Custom Grids --- */
.content-grid, .feature-grid, .service-list, .team-member-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.feature-grid > div, .service-list > div, .team-member-list > div {
  background: var(--brand-accent);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: 26px 18px 20px 18px;
  flex: 1 1 260px;
  min-width: 210px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.18s, transform 0.14s;
  border-left: 8px solid var(--brand-secondary);
}
.feature-grid > div:hover,
.service-list > div:hover,
.team-member-list > div:hover {
  transform: translateY(-4px) scale(1.015) rotate(-1.5deg);
  box-shadow: 0 8px 24px 0 rgba(32,83,117,0.16);
}
.feature-grid img,
.service-list img,
.team-member-list img {
  width: 44px;
  height: 44px;
  margin-bottom: 12px;
}
.feature-grid h3,
.service-list h3,
.team-member-list h3 {
  font-family: var(--heading-font);
  color: var(--brand-primary);
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 10px;
  margin-top: 2px;
}

.service-card {
  background: var(--brand-accent);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: 28px 22px;
  flex: 1 1 260px;
  min-width: 220px;
  margin-bottom: 20px;
  transition: box-shadow 0.17s, transform 0.13s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-left: 7px solid var(--brand-primary);
}
.service-card:hover {
  transform: scale(1.025) translateY(-3px) rotate(0.9deg);
  box-shadow: 0 9px 31px 0 rgba(32,83,117,0.10);
}
.service-card h3 {
  font-family: var(--heading-font);
  font-size: 1.11rem;
  font-weight: 800;
  color: var(--brand-primary);
  margin-bottom: 8px;
}
.service-card p {
  font-size: 1rem;
  margin-bottom: 12px;
}
.service-card strong {
  color: var(--brand-secondary);
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 1.04em;
}

.bio-card {
  background: #fffdfa;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: 24px 22px 15px 22px;
  min-width: 220px;
  margin-bottom: 20px;
  transition: box-shadow 0.15s, transform 0.12s;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.bio-card h3 {
  font-family: var(--heading-font);
  color: var(--brand-primary);
  font-size: 1.07rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.team-member-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

/********* Lists with Icons *********/
.feature-bullets, .feature-icons, .skills-list, .resource-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.feature-bullets li, .feature-icons li, .skills-list li, .resource-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
  font-size: 1rem;
  box-shadow: 0 2px 8px 0 rgba(32,83,117,0.08);
  border-left: 5px solid var(--brand-secondary);
  font-family: var(--body-font);
}
.feature-bullets img, .feature-icons img, .skills-list img, .resource-list img {
  width: 32px;
  height: 32px;
}
.resource-list li {
  flex-direction: row;
  justify-content: flex-start;
}
.resource-list li strong {
  color: var(--brand-primary);
  margin-right: 2px;
}
.resource-list li a {
  display: inline-block;
  margin-left: 12px;
  font-size: .98em;
  color: var(--brand-primary);
  font-weight: 700;
  border-bottom: 1.5px dashed var(--brand-secondary);
  transition: color .18s, border-bottom-color .15s;
}
.resource-list li a:hover {
  color: var(--brand-secondary);
  border-bottom: 1.5px solid var(--brand-primary);
}

/********* Newsletter Section *********/
.newsletter-section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #FFD447;
  border-radius: var(--radius-lg);
  box-shadow: 0 3px 18px 0 rgba(32,83,117,0.11);
  color: var(--brand-primary);
}
.newsletter-section h2 {
  font-family: var(--heading-font);
  font-size: 1.6rem;
  color: var(--brand-primary);
}
.newsletter-info {
  font-size: 1.02em;
  font-style: italic;
  margin-top: 8px;
  color: #5b5b5b;
}

/* --- Footer --- */
footer {
  background: var(--brand-primary);
  color: #fff;
  width: 100%;
  font-size: 1rem;
  border-top-left-radius: var(--radius-lg);
  border-top-right-radius: var(--radius-lg);
  margin-top: 66px;
  box-shadow: 0 -8px 22px 0 rgba(32,83,117,0.10);
}
.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  align-items: flex-start;
  padding: 32px 0 18px 0;
}
.footer-logo img {
  max-width: 84px;
  margin-bottom: 8px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer-links a {
  color: #fff;
  font-weight: 500;
  letter-spacing: .02em;
  font-size: 1em;
  border-bottom: 1px dotted #FFD447;
  transition: color .16s;
}
.footer-links a:hover {
  color: var(--brand-secondary);
}
.footer-contact {
  font-size: 0.98em;
  line-height: 1.5;
  color: #dbe3e9;
  margin-bottom: 10px;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  background: #fff;
  border-radius: 50%;
  padding: 7px;
  transition: box-shadow .19s;
  box-shadow: 0 2px 6px 0 rgba(32,83,117,0.13);
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-social a:hover {
  box-shadow: 0 4px 18px 0 rgba(255,212,71,0.2);
}
.footer-social img {
  width: 26px;
  height: 26px;
}

/* --- Typography & Headings --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-font);
  line-height: 1.15;
  color: var(--brand-primary);
  font-weight: 800;
}
h1 { font-size: 2.3rem; margin-bottom: 16px; }
h2 { font-size: 1.7rem; margin-bottom: 10px; }
h3 { font-size: 1.15rem; margin-bottom: 7px; }
.main-nav ul li a, .cta-btn, .footer-links a {
  font-family: var(--heading-font);
}
strong {
  font-weight: 700;
  font-family: var(--heading-font);
}
em {
  font-style: italic;
  color: #425366;
}
p {
  margin-bottom: 10px;
}

/* --- Testimonial Card --- */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #fff;
  color: #13253A;
  border-radius: 22px;
  box-shadow: 0 2px 14px 0 rgba(32,83,117,0.10);
  padding: 20px;
  margin-bottom: 20px;
  font-family: var(--body-font);
  position: relative;
  min-width: 220px;
}
.testimonial-card p {
  font-size: 1.09em;
  color: #222;
  font-style: italic;
}
.testimonial-card strong {
  color: var(--brand-primary);
}
.testimonial-card:before {
  content: '\201C';
  position: absolute;
  left: 18px;
  top: 8px;
  font-size: 2.4em;
  color: #FFD44755;
  z-index: 1;
  font-family: Georgia, Times, serif;
  pointer-events: none;
}
.testimonial-card > * {
  position: relative;
  z-index: 2;
}

/* --- Special Section Styles --- */
.cta-section {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-top: 14px;
}
.pricing-table {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 18px 24px;
  box-shadow: var(--shadow-card);
  margin-top: 12px;
  min-width: 230px;
}
.pricing-table h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: var(--brand-primary);
}
.pricing-table ul {
  line-height: 1.45;
  padding-left: 15px;
}
.pricing-table li {
  margin-bottom: 8px;
  list-style-type: disc;
  color: #3b4357;
}

/* --- Cookie Consent Banner --- */
.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0; right: 0;
  width: 100vw;
  background: #FFD447;
  color: var(--brand-primary);
  z-index: 2000;
  box-shadow: 0 -2px 16px 0 rgba(32,83,117,0.10);
  padding: 19px 22px 19px 22px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
  font-size: 1rem;
  transition: transform .33s, opacity .22s;
}
.cookie-consent-banner.hide {
  transform: translateY(160%);
  opacity: 0;
  pointer-events: none;
}
.cookie-consent-banner .cookie-buttons {
  display: flex;
  flex-direction: row;
  gap: 14px;
  margin-left: auto;
}
.cookie-btn {
  padding: 8px 22px;
  font-family: var(--heading-font);
  font-weight: 700;
  background: var(--brand-primary);
  color: #FFD447;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  font-size: 1em;
  transition: background .18s, color .18s, transform .12s;
}
.cookie-btn.cookie-reject {
  background: var(--brand-error);
  color: #fff;
}
.cookie-btn.cookie-settings {
  background: #fff;
  color: var(--brand-primary);
  border: 1.5px solid var(--brand-primary);
}
.cookie-btn:hover, .cookie-btn:focus {
  background: var(--brand-secondary);
  color: var(--brand-primary);
  outline: none;
  transform: translateY(-2px) scale(1.04) rotate(-1deg);
}

/***** Cookie Consent Modal *****/
.cookie-modal-overlay {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(32,83,117, 0.16);
  z-index: 2500;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .22s;
}
.cookie-modal {
  background: #fff;
  border-radius: 24px;
  padding: 35px 32px 28px 32px;
  max-width: 440px;
  box-shadow: 0 6px 36px 0 rgba(32,83,117,0.19);
  position: relative;
  font-size: 1rem;
  display: flex;
  flex-direction: column;
  gap: 18px;
  color: var(--brand-primary);
}
.cookie-modal .cookie-cat {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.cookie-modal .cookie-cat label {
  font-weight: 700;
  font-family: var(--heading-font);
  font-size: 1.05em;
}
.cookie-modal .cookie-toggle {
  margin-left: auto;
}
.cookie-modal .cookie-switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 23px;
}
.cookie-modal .cookie-switch input {
  opacity: 0; width: 0; height: 0;
}
.cookie-modal .cookie-slider {
  position: absolute;
  cursor: pointer;
  background-color: #E6E6E6;
  top: 0; left: 0; right: 0; bottom: 0;
  border-radius: 14px;
  transition: background .2s;
}
.cookie-modal .cookie-switch input:checked + .cookie-slider {
  background-color: var(--brand-primary);
}
.cookie-modal .cookie-slider:before {
  position: absolute;
  content: "";
  left: 3.5px;
  top: 2px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  transition: transform .18s;
}
.cookie-modal .cookie-switch input:checked + .cookie-slider:before {
  transform: translateX(19px);
}
.cookie-modal .cookie-close {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 1.75em;
  background: #FFD447;
  color: var(--brand-primary);
  border: none;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .15s;
}
.cookie-modal .cookie-close:hover {
  background: #ffe48f;
}
.cookie-modal .cookie-modal-title {
  font-size: 1.26em;
  font-weight: 800;
  font-family: var(--heading-font);
  margin-bottom: 12px;
}

/**** Map Placeholder ****/
.map-placeholder {
  background: #ECECEC;
  border-radius: var(--radius-md);
  padding: 20px 14px;
  font-size: 1.01rem;
  box-shadow: 0 1px 8px 0 rgba(32,83,117,0.07);
  margin-bottom: 20px;
  color: var(--brand-dark);
  font-family: var(--body-font);
}

/***** Section Spacing Patterns *****/
.section, main section { margin-bottom: 60px; padding: 40px 20px; }
.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card { margin-bottom: 20px; position: relative; }
.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; }
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }

/***** Responsive Breakpoints *****/
@media (max-width: 1100px) {
  .container {
    max-width: 95vw;
    padding: 0 10px;
  }
}
@media (max-width: 900px) {
  .main-nav ul { gap: 15px; }
  .footer-content { gap: 24px; }
}
@media (max-width: 768px) {
  .main-nav ul,
  .main-nav .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .footer-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .hero .content-wrapper { padding-top: 18px; }
  .section, main section {
    margin-bottom: 38px;
    padding: 24px 7px;
    border-radius: 18px;
  }
  .feature-grid, .service-list, .content-grid, .team-member-list {
    flex-direction: column;
    gap: 16px;
  }
  .feature-bullets, .feature-icons, .skills-list, .resource-list {
    gap: 13px;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 13px;
    padding: 15px;
  }
  .hero h1 { font-size: 1.55rem; }
  h1 { font-size: 1.44rem; }
  h2 { font-size: 1.19rem; }
}
@media (max-width: 600px) {
  .feature-grid > div, .service-list > div, .bio-card { min-width: 100%; }
  .footer-logo img { max-width: 62px; }
  .footer-content { padding: 18px 0 9px 0; gap: 13px; }
  .newsletter-section { padding: 22px 7px; border-radius: 14px; }
  .cta-btn { padding: 10px 16px; font-size: .98rem; }
  .cookie-modal { padding: 16px 7px 15px 12px; }
}

/**** Artistic, Unique Touches ****/
.hero,
.section,
.bio-card,
.service-card,
.feature-grid > div,
.testimonial-card {
  position: relative;
  overflow: visible;
}
.hero:after,
.section:after,
.bio-card:after,
.service-card:after,
.feature-grid > div:after,
.testimonial-card:after {
  content: '';
  display: block;
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  background: #FFD44722;
  z-index: 0;
  opacity: .55;
}
.hero:after {
  width: 96px; height: 96px; right: -28px; top: -31px;
  background: #FFD44744;
}
.section:after {
  width: 44px; height: 44px;
  left: -18px; top: 20px;
}
.bio-card:after {
  width: 36px; height: 36px;
  right: 18px; top: 8px;
}
.service-card:after {
  width: 28px; height: 28px;
  left: -13px; top: 7px;
}
.feature-grid > div:after {
  width: 22px; height: 22px;
  right: -11px; bottom: 6px;
}
.testimonial-card:after {
  width: 28px; height: 28px;
  left: -13px; bottom: 8px;
  background: #FFD44744;
}

/***** Transition Animations *****/
.cta-btn,
.card,
.service-card,
.feature-grid > div,
.bio-card,
.footer-social a,
.cookie-btn,
.testimonial-card {
  transition: box-shadow .19s, transform .18s, background .17s, color .16s;
}

/**** Hide Cookie Modal/Overlay (when not active) ****/
.cookie-modal-overlay {
  display: none;
}
.cookie-modal-overlay.open {
  display: flex;
  animation: fadeIn .19s linear;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}


/***** Additional Spacing *****/
main section:last-child {
  margin-bottom: 0;
}

/***** Other Interactions *****/
.card:hover, .service-card:hover, .feature-grid > div:hover, .bio-card:hover {
  box-shadow: 0 8px 24px 0 rgba(255,212,71,0.22);
}
.footer-links a:focus, .footer-links a:hover {
  color: var(--brand-secondary);
}
main a:focus {
  outline: 1.5px dotted #FFD447;
  outline-offset: 3px;
}

/***** Print Styles (for resource PDFs) *****/
@media print {
  header, footer, .cookie-consent-banner, .mobile-menu { display: none !important; }
  body { background: #fff; color: #222; }
  .section, main section { box-shadow: none; border-radius: 0; }
}
