/* ===================
   CSS RESET & BASE
   =================== */
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 {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  background: #F7F9FA;
  color: #1B263B;
  min-height: 100vh;
  line-height: 1.62;
}
img { max-width: 100%; height: auto; display: block; }
a {
  color: #265082;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus { color: #3A5A40; }
ul, ol { margin-left: 1.2em; }

/* ========================
   BRAND & TYPOGRAPHY SCALE
   ======================== */
:root {
  --primary: #1B263B;
  --secondary: #3A5A40;
  --accent: #FEFCFB;
  --surface: #fff;
  --gray-50: #F0F3F8;
  --gray-100: #D9E2EC;
  --gray-300: #B3B9C5;
  --gray-600: #495464;
  --error: #A61B1B;
  --shadow: 0 2px 12px rgba(27,38,59,0.07), 0 1.5px 4px rgba(27,38,59,0.09);
  --radius: 10px;
  --header-height: 72px;
  --nav-height: 60px;
}

h1, h2, h3, h4 {
  font-family: 'Montserrat', 'Roboto', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.01em;
  line-height: 1.18;
}
h1 { font-size: 2.75rem; margin-bottom: 16px; }
h2 { font-size: 2.125rem; margin-bottom: 16px; }
h3 { font-size: 1.25rem; margin-bottom: 10px; }
h4 { font-size: 1.125rem; margin-bottom: 6px; }
p, li, span, label, details, summary{
  font-size: 1rem;
  font-weight: 400;
  color: var(--gray-600);
}
.subheadline { font-size: 1.25rem; color: var(--primary); font-weight: 500; margin-bottom: 24px; }
strong { font-weight: 700; color: var(--secondary); }

/* ===================
   LAYOUT CONTAINERS
   =================== */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.text-section {
  align-items: flex-start;
  text-align: left;
}

/* ===============
   HEADER & NAV
   =============== */
header {
  background: var(--surface);
  box-shadow: 0 1.5px 8px rgba(27,38,59,0.035);
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 990;
  padding: 0;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: center;
}
header > a img {
  height: 50px;
  margin-right: 24px;
  vertical-align: middle;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.main-nav a {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: var(--primary);
  padding: 8px 10px;
  border-radius: 6px;
  transition: background 0.18s, color 0.18s;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--gray-50);
  color: var(--secondary);
}
.primary-cta {
  background: var(--secondary);
  color: var(--accent);
  padding: 10px 28px;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  border-radius: 24px;
  transition: background 0.18s, box-shadow 0.2s;
  margin-left: 12px;
  box-shadow: 0 2px 10px rgba(58,90,64,0.05);
  letter-spacing: 0.03em;
  font-size: 1rem;
  border: none;
  outline: none;
  display: inline-block;
}
.primary-cta:hover, .primary-cta:focus {
  background: #508a66;
  box-shadow: 0 4px 16px rgba(58,90,64,0.13);
  color: #fff;
}

/* ===============
   MOBILE NAV MENU
   =============== */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--primary);
  margin-left: auto;
  cursor: pointer;
  z-index: 1020;
  transition: color 0.2s;
  padding: 6px 12px;
}
.mobile-menu-toggle:focus {
  outline: 2px solid var(--secondary);
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(17, 34, 51, 0.91);
  transform: translateX(-100%);
  transition: transform 0.36s cubic-bezier(.79,.14,.15,.86);
  display: flex;
  z-index: 2000;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 28px;
  font-size: 2.2rem;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 2100;
  transition: color 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--accent);
}
.mobile-nav {
  margin: 80px auto 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  width: 100%;
  max-width: 420px;
}
.mobile-nav a {
  color: #fff;
  background: none;
  font-size: 1.3rem;
  letter-spacing: 0.02em;
  padding: 16px 40px;
  border-radius: 6px;
  width: 100%;
  text-align: center;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  transition: background 0.18s, color 0.2s;
  margin: 0 auto;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--secondary);
  color: var(--accent);
}
@media(max-width: 1024px) {
  .main-nav {
    gap: 18px;
  }
  .primary-cta {
    font-size: 0.95rem;
    padding: 9px 20px;
  }
  header > a img {
    height: 40px;
    margin-right: 12px;
  }
}
@media (max-width: 900px) {
  .main-nav a:not(.primary-cta) {
    font-size: 0.98rem;
    padding: 7px 6px;
  }
}
@media (max-width: 768px) {
  header {
    height: auto;
    min-height: var(--nav-height);
    padding: 0 12px;
    justify-content: flex-start;
  }
  .main-nav {
    display: none;
  }
  .primary-cta {
    margin-left: 0;
  }
  .mobile-menu-toggle {
    display: block;
    margin-left: auto;
  }
}

/* ===================
   GENERAL SECTIONS
   =================== */
section {
  margin-bottom: 60px;
  padding: 40px 0;
  background: transparent;
}
@media (max-width: 600px) {
  section, .section {
    margin-bottom: 36px;
    padding: 30px 0;
  }
  .container {
    padding: 0 10px;
  }
}

/* ===================
   CARDS & FLEX LAYOUTS
   =================== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 32px 28px 28px 28px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 260px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}
.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) {
  .text-image-section {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }
  .content-grid, .card-container {
    flex-direction: column;
    gap: 16px;
  }
}

/* ===========
   FEATURED
   =========== */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px 22px;
  min-width: 220px;
  max-width: 280px;
  flex: 1 1 200px;
  margin-bottom: 0;
  font-size: 1.02rem;
  transition: box-shadow 0.2s, transform 0.15s;
}
.feature-item img {
  height: 40px; width: 40px;
}
.feature-item:hover, .feature-item:focus-within {
  box-shadow: 0 4px 24px rgba(58,90,64,0.11);
  transform: translateY(-3px) scale(1.02);
  background: #F4F9F5;
}

/* =============
   SERVICE LIST
   ============= */
.service-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.service-list li {
  background: var(--surface);
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 22px;
  margin-bottom: 20px;
  min-width: 240px;
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: box-shadow 0.2s, background 0.14s;
  position: relative;
}
.service-list li a {
  color: var(--secondary);
  margin-top: 8px;
  font-weight: 600;
  font-family: 'Montserrat';
  transition: color 0.2s, margin-left 0.16s;
}
.service-list li a:hover, .service-list li a:focus { color: var(--primary); margin-left: 7px; }

/* ===================
   TESTIMONIALS
   =================== */
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 28px 28px 22px 28px;
  background: #F6FAFF;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  max-width: 390px;
  min-width: 220px;
  margin-bottom: 20px;
  border-left: 5px solid var(--secondary);
  color: var(--primary);
  font-size: 1.05rem;
  transition: box-shadow 0.15s, border-color 0.22s;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 4px 16px rgba(27,38,59,0.085);
  border-color: var(--primary);
}
.testimonial-card p {
  color: var(--primary);
  font-size: 1.08rem;
  font-family: 'Roboto', Arial, sans-serif;
}
.testimonial-card span {
  color: var(--gray-600);
  font-size: 0.99rem;
  font-weight: 500;
}

/* =============
   FOOTER
   ============= */
footer {
  background: var(--primary);
  color: var(--accent);
  padding: 0 0 0 0;
}
footer .container {
  padding: 0 20px;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 32px;
  align-items: flex-start;
  padding: 48px 0 33px 0;
}
.footer-brand {
  min-width: 210px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-brand img {
  width: 48px; height: 48px;
}
.footer-brand p {
  color: #AFC6DF;
  font-size: 1.02rem;
  font-weight: 500;
  margin-top: 10px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-links a {
  color: #C7D9F2;
  font-size: 1rem;
  margin-bottom: 2px;
  transition: color 0.17s;
}
.footer-links a:hover, .footer-links a:focus {
  color: var(--accent);
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: #B6C6D9;
  font-size: 0.99rem;
}
.footer-contact h4 { color: var(--accent); font-size: 1.1rem; }
.footer-contact img { vertical-align: middle; width: 20px; height: 20px; margin-right: 7px; }
.footer-social {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 15px;
}
.footer-social a img {
  width: 35px;
  height: 35px;
  filter: grayscale(20%);
  opacity: 0.92;
  transition: filter 0.15s, opacity 0.19s, transform 0.15s;
}
.footer-social a:hover img { filter: grayscale(0); opacity: 1; transform: scale(1.08); }
.footer-bottom {
  border-top: 1px solid #22416A;
  padding: 18px 0 10px 0;
  text-align: center;
}
.footer-bottom p {
  color: #AFC6DF; font-size: 0.97rem;
}
@media(max-width: 900px) {
  footer .content-wrapper {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  footer .content-wrapper {
    flex-direction: column;
    padding: 32px 0 24px 0;
    gap: 16px;
  }
  .footer-links, .footer-contact, .footer-brand { align-items: flex-start; }
}
@media (max-width: 500px) {
  footer .content-wrapper { padding: 20px 0 8px 0; }
}

/* =============================
   BLOG POSTS, FAQ, LEGAL, FORMS
   ============================= */
/* Blog post cards */
.blog-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.blog-post-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.blog-post-card {
  background: var(--surface);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  padding: 22px 20px 18px 20px;
  flex: 1 1 230px;
  min-width: 200px;
  max-width: 330px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, background 0.17s;
}
.blog-post-card:hover, .blog-post-card:focus-within {
  background: #f4f8fc;
  box-shadow: 0 4px 18px rgba(27,38,59,0.12);
}
.blog-categories {
  font-size: 0.98rem;
  color: var(--gray-600);
  margin-top: 23px;
}
.blog-categories a {
  color: var(--secondary);
  transition: color 0.2s;
}
.blog-categories a:hover { color: var(--primary); }

/* FAQ Section */
.faq-section {
  margin-bottom: 0;
}
.faq-accordion {
  width: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.faq-accordion details {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px 22px;
  font-size: 1rem;
  transition: box-shadow 0.17s, background 0.16s;
}
.faq-accordion summary {
  font-family: 'Montserrat';
  font-weight: 600;
  cursor: pointer;
  color: var(--primary);
  outline: none;
}
.faq-accordion details[open] {
  background: #F6FAFF;
  box-shadow: 0 6px 18px rgba(27,38,59,0.10);
}
.faq-accordion p {
  margin-top: 13px;
  color: var(--gray-600);
}

/* Legal / Privacy Policy /etc */
.legal-section ul,
.learning-benefits-list {
  margin-left: 1.25em;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.legal-section li { line-height: 1.54; font-size: 1rem; }
.legal-section a { color: var(--secondary); text-decoration: underline; }
.legal-section a:hover { color: var(--primary); }

/* =============
   COURSES PAGE
  ============= */
.course-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 36px;
}
.course-card {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 26px 22px 19px 22px;
  min-width: 210px;
  max-width: 320px;
  flex: 1 1 180px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: box-shadow 0.2s, background 0.18s;
}
.course-card a {
  color: var(--secondary);
  font-weight: 500;
  margin-top: 8px;
  align-self: flex-start;
  transition: color 0.17s, margin-left 0.17s;
}
.course-card a:hover { color: var(--primary); margin-left: 8px; }
.course-card:hover, .course-card:focus-within {
  box-shadow: 0 4px 20px rgba(58,90,64,0.14);
  background: #F5F9F6;
}
.course-filter-options {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 13px;
}
.course-filter-options button {
  background: var(--gray-100);
  color: var(--primary);
  border: none;
  border-radius: 7px;
  padding: 7px 13px;
  font-family: 'Montserrat';
  font-weight: 600;
  transition: background 0.15s, color 0.17s;
  cursor: pointer;
  font-size: 1rem;
}
.course-filter-options button:hover, .course-filter-options button:focus {
  background: var(--secondary);
  color: #fff;
}

/* =============
   INSTRUCTORS
   ============= */
.instructor-profiles {
  gap: 32px;
}
.profile-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 15px;
}
.profile-card {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px 22px 20px 22px;
  min-width: 180px;
  max-width: 290px;
  flex: 1 1 180px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, transform 0.13s;
  position: relative;
}
.profile-card img {
  width: 52px; height: 52px;
  border-radius: 50%;
  margin-bottom: 10px;
  background: #CEDDE4;
}
.profile-card span {
  color: var(--secondary);
  font-size: 0.98rem;
  font-weight: 500;
  margin-top: 10px;
}
.profile-card:hover, .profile-card:focus-within {
  box-shadow: 0 6px 20px rgba(27,38,59,0.15);
  transform: translateY(-3px) scale(1.04);
}

/* =============
   CONTACT PAGE
   ============= */
.contact-section {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 32px 22px;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-section ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
  margin-bottom: 12px;
}
.contact-section li img {
  width: 22px; height: 22px; margin-right: 8px; vertical-align: middle;
}
.location-map {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 13px;
}
.location-map img {
  width: 56px;
  height: 56px;
}
.location-map p {
  font-size: 1rem;
  color: var(--gray-600);
}

/* =======================
   BUTTONS & INTERACTION
   ======================= */
button {
  font-family: inherit;
  font-size: 1rem;
  background: none;
  border: none;
  cursor: pointer;
  outline: none;
}
.primary-cta, .primary-btn, .secondary-btn {
  display: inline-block;
  border-radius: 24px;
  padding: 10px 28px;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  outline: none;
  border: none;
  transition: background 0.18s, box-shadow 0.18s, color 0.15s;
  margin-top: 7px;
  box-shadow: 0 2px 10px rgba(58,90,64,0.05);
}
.primary-btn {
  background: var(--primary);
  color: var(--accent);
}
.primary-btn:hover, .primary-btn:focus {
  background: var(--secondary);
  color: #fff;
}
.secondary-btn {
  background: var(--gray-100);
  color: var(--primary);
}
.secondary-btn:hover, .secondary-btn:focus {
  background: var(--gray-300);
  color: var(--primary);
}

/* =============================
   RESPONSIVENESS: MOBILE FIRST
   ============================= */
@media (max-width: 1024px) {
  .container { max-width: 94vw; }
  .feature-item, .service-list li, .course-card, .testimonial-card, .profile-card {
    min-width: 170px;
    max-width: 98vw;
  }
}
@media (max-width: 800px) {
  .feature-grid, .service-list, .testimonial-slider, .card-container, .content-grid, .profile-list, .blog-post-list, .course-cards {
    flex-direction: column;
    gap: 16px;
  }
  .feature-item, .service-list li, .course-card, .testimonial-card {
    max-width: 100%;
    min-width: 0;
  }
}
@media (max-width: 540px) {
  html{ font-size: 15px; }
  h1 { font-size: 1.73rem; }
  h2 { font-size: 1.28rem; }
  .container { padding: 0 6px; }
  .section, section { padding: 19px 0; }
  .testimonial-card, .feature-item, .card, .course-card {
    padding: 13px 10px 12px 10px;
  }
}

/* ==================
   COOKIE CONSENT UI
   ================== */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #fff;
  color: var(--primary);
  box-shadow: 0 -4px 20px rgba(27,38,59,0.11);
  z-index: 5000;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 28px 24px 22px 24px;
  font-size: 1rem;
  animation: banner-slide-in 0.7s cubic-bezier(.69,.17,.39,1.03);
}
@keyframes banner-slide-in {
  0% { transform: translateY(110%); opacity: 0; }
  100% { transform: translateY(0); opacity: 1;}
}
.cookie-banner .cookie-text {
  flex: 1 1 0;
  max-width: 560px;
  font-size: 1rem;
  color: var(--primary);
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 17px;
  align-items: center;
}
.cookie-banner button {
  border-radius: 8px;
  padding: 10px 20px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: background 0.16s, color 0.17s;
  outline: none;
}
.cookie-banner .accept {
  background: var(--secondary);
  color: #fff;
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: #264c32;
  color: var(--accent);
}
.cookie-banner .reject {
  background: var(--gray-100);
  color: var(--primary);
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: var(--gray-300);
}
.cookie-banner .settings {
  background: none;
  color: var(--secondary);
  text-decoration: underline;
  padding: 9px 14px;
}
.cookie-banner .settings:hover {
  color: var(--primary);
}
@media(max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 8px 18px 8px;
  }
  .cookie-banner .cookie-actions { gap: 9px; }
}

/* Cookie Preferences Modal */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(30,43,63,0.68);
  z-index: 5100;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: modal-fade-in 0.29s cubic-bezier(.47,.1,.23,.96);
}
@keyframes modal-fade-in {
  0% { opacity: 0; } 100% { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  color: var(--primary);
  border-radius: 16px;
  box-shadow: 0 8px 34px rgba(27,38,59,0.17);
  width: 95vw;
  max-width: 410px;
  padding: 36px 28px 28px 28px;
  z-index: 5105;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
}
.cookie-modal h3 {
  font-size: 1.19rem;
  color: var(--primary);
  margin-bottom: 6px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 0 10px 0;
  font-size: 1rem;
  color: var(--primary);
}
.cookie-category label {
  flex: 1 1 0;
  font-size: 1rem;
}
.cookie-modal .close {
  position: absolute;
  top: 14px; right: 18px;
  font-size: 1.45rem;
  background: none;
  color: var(--primary);
  border: none;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 6px;
  transition: background 0.16s;
}
.cookie-modal .close:hover, .cookie-modal .close:focus {
  background: var(--gray-100);
}
.cookie-modal .actions {
  display: flex;
  gap: 12px;
  margin-top: 14px;
}
.cookie-modal .actions button {
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  outline: none;
  border: none;
  padding: 10px 19px;
  cursor: pointer;
  transition: background 0.17s, color 0.18s;
}
.cookie-modal .save {
  background: var(--secondary);
  color: #fff;
}
.cookie-modal .save:hover, .cookie-modal .save:focus {
  background: var(--primary);
  color: var(--accent);
}
.cookie-modal .cancel {
  background: var(--gray-100);
  color: var(--primary);
}
.cookie-modal .cancel:hover {
  background: var(--gray-300);
}

/* ===================================
   MISC: UTILITY, MICRO-INTERACTIONS 
   =================================== */
@media (hover: hover) {
  .primary-cta, .feature-item, .card, .course-card, .testimonial-card, .blog-post-card, .profile-card, .service-list li {
    will-change: box-shadow, transform, background;
  }
}
::-webkit-input-placeholder { color: #A0B7CD; }
::-moz-placeholder { color: #A0B7CD; }
:-ms-input-placeholder { color: #A0B7CD; }
::placeholder { color: #A0B7CD; }

/* General utility classes for spacing/alignment */
.mb-20 { margin-bottom: 20px !important; }
.mb-32 { margin-bottom: 32px !important; }
.mt-20 { margin-top: 20px !important; }
.mt-32 { margin-top: 32px !important; }
.mb-60 { margin-bottom: 60px !important; }

/* Hide visually but still accessible to screen readers */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* Decorative absolute only for icons/styling, not content cards */

/* ===============
   Print Styling
   =============== */
@media print {
  header, footer, .cookie-banner, .cookie-modal-overlay { display: none !important; }
  section { padding: 0 !important; margin: 0 !important; }
}
