/* ------------------------------------------------------
   EL ARTE DE HABLAR - GEOMETRIC_STRUCTURED STYLE CSS
   ------------------------------------------------------
   Brand Colors: Primary #213C78 | Accent #F26A25 | Accent Alt #BD4300 | Soft #FCEFBB
   Typography: Display - Montserrat, Body - Lato
   Geometric, Structured, Clean, Modern Flexbox-Only Responsive Design
   ------------------------------------------------------ */

/* --- 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,
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;
}
body {
  min-height: 100vh;
  color: #213C78;
  background: #fff;
  font-family: 'Lato', Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: #213C78;
  text-decoration: none;
  transition: color 0.18s cubic-bezier(.4,0,.2,1);
}
a:focus { outline: 2px solid #F26A25; outline-offset: 2px; }

/* --- TYPOGRAPHY --- */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,800&display=swap');
@import url('https://fonts.googleapis.com/css?family=Lato:400,700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
  letter-spacing: 0.01em;
  color: #213C78;
  line-height: 1.18;
}
h1 {
  font-size: 2.8rem;
  margin-bottom: 16px;
  text-transform: uppercase;
}
h2 {
  font-size: 2rem;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
p, ul, ol {
  font-family: 'Lato', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: #213C78;
}
ul, ol { padding-left: 1.2em; }

.subheadline {
  font-size: 1.25rem;
  color: #213C78;
  opacity: 0.89;
  margin-bottom: 8px;
  font-family: 'Lato', Arial, Helvetica, sans-serif;
}
.founder-highlight {
  background: #FCEFBB;
  color: #213C78;
  padding: 6px 14px;
  border-radius: 14px;
  display: inline-block;
  font-weight: bold;
  font-size: 1rem;
  margin-top: 20px;
}


/* --- GENERAL LAYOUT + CONTAINER --- */
.container {
  width: 100%;
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 18px;
}

/* --- HEADER + NAV --- */
header {
  background: #fff;
  border-bottom: 3px solid #FCEFBB;
  position: sticky;
  top: 0;
  z-index: 40;
}
header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
  gap: 20px;
}
header img {
  height: 48px;
}
nav {
  display: flex;
  flex-direction: row;
  gap: 28px;
  align-items: center;
  margin-right: 20px;
}
nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: #213C78;
  font-weight: 700;
  padding: 4px 0;
  position: relative;
  transition: color 0.16s cubic-bezier(.4,0,.2,1);
}
nav a:hover,
nav a:focus {
  color: #F26A25;
}
.cta-button {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  background: #F26A25;
  color: #fff;
  border: none;
  border-radius: 36px;
  padding: 12px 34px;
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-left: 16px;
  cursor: pointer;
  box-shadow: 0 3px 12px rgba(33,60,120,0.06);
  transition: background 0.13s, box-shadow 0.18s, transform 0.15s;
  outline: none;
}
.cta-button:hover, .cta-button:focus {
  background: #BD4300;
  color: #fff;
  box-shadow: 0 6px 16px rgba(242,106,37,0.14);
  transform: translateY(-1px) scale(1.03);
}

/* --- MOBILE MENU --- */
.mobile-menu-toggle {
  display: none;
  background: #213C78;
  color: #fff;
  border: none;
  font-size: 2rem;
  border-radius: 12px;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 110;
  transition: background 0.18s;
  cursor: pointer;
  margin-left: 10px;
}
.mobile-menu-toggle:focus {
  background: #F26A25;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #213C78;
  color: #fff;
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 34px 24px 20px 24px;
  transform: translateX(-100vw);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.30s cubic-bezier(.4,0,.2,1), opacity 0.25s;
  width: 100vw;
  height: 100vh;
}
.mobile-menu.open {
  transform: translateX(0px);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2.2rem;
  position: absolute;
  top: 20px;
  right: 30px;
  z-index: 210;
  cursor: pointer;
  transition: color 0.16s cubic-bezier(.4,0,.2,1);
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #F26A25;
}
.mobile-nav {
  margin-top: 69px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 100%;
}
.mobile-nav a {
  font-size: 1.18rem;
  color: #fff;
  text-transform: uppercase;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  letter-spacing: 0.03em;
  border-left: 8px solid #FCEFBB;
  padding: 8px 0 8px 16px;
  border-radius: 0 8px 8px 0;
  transition: color 0.15s, background 0.18s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #F26A25;
  color: #fff;
}

@media (max-width: 1050px) {
  nav {
    gap: 18px;
  }
  .cta-button {
    font-size: 0.95rem;
    padding: 10px 23px;
  }
}

@media (max-width: 860px) {
  header .container {
    flex-wrap: wrap;
  }
}

/* --- SHOW/HIDE MOBILE NAV --- */
@media (max-width: 820px) {
  nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
/* --- END HEADER --- */

/* --- HERO BANNER --- */
.hero {
  background: #213C78;
  color: #fff;
  border-radius: 0 0 24px 24px;
  box-shadow: 0 2px 28px rgba(33,60,120,0.07);
  margin-bottom: 46px;
}
.hero .container {
  padding-top: 46px;
  padding-bottom: 50px;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 18px;
}
.hero h1,
.hero .subheadline {
  color: #fff;
}
.hero .cta-button {
  background: #FCEFBB;
  color: #213C78;
  font-weight: 800;
  margin-top: 22px;
}
.hero .cta-button:hover { background: #F26A25; color: #fff; }

@media (max-width: 700px) {
  .hero .container { padding-top: 28px; padding-bottom: 32px; }
  .hero h1 { font-size: 1.8rem; }
}

/* --- SECTIONS BASE --- */
section {
  margin-bottom: 56px;
  width: 100%;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 18px;
}
.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: flex-start; gap: 18px; }
  .content-grid { flex-direction: column; gap: 18px; }
}

/* --- FEATURES & FEATURE GRID --- */
.features .content-wrapper {
  gap: 30px;
}
.feature-grid,
.outcome-list {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.feature-grid li, .outcome-list li {
  flex: 1 1 220px;
  background: #FCEFBB;
  border-radius: 18px;
  padding: 23px 18px 20px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  box-shadow: 0 2px 16px rgba(33,60,120,0.06);
  min-width: 185px;
  margin-bottom: 20px;
  border: 2.5px solid #213C78;
  transition: box-shadow 0.18s;
  position: relative;
}
.feature-grid li:hover, .outcome-list li:hover {
  box-shadow: 0 6px 24px rgba(242,106,37,0.13);
  z-index: 2;
}
.feature-grid img, .outcome-list img {
  width: 42px;
  height: 42px;
}
.feature-grid h3,
.outcome-list h3 {
  color: #BD4300;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0;
}

@media (max-width: 800px) {
  .feature-grid, .outcome-list {
    flex-direction: column;
    gap: 16px;
  }
}

/* --- CARDS / CARD CONTAINER --- */
.card-container,
.course-grid,
.article-list,
.team-list,
.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card, .course-item, .article-card, .team-member {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 14px rgba(33,60,120,0.05);
  border: 2px solid #FCEFBB;
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.18s, border 0.18s;
}
.card:hover, .course-item:hover, .article-card:hover, .team-member:hover {
  box-shadow: 0 8px 28px rgba(33,60,120,0.10);
  border-color: #F26A25;
  z-index: 2;
}

/* --- COURSE GRID --- */
.course-grid {
  gap: 24px;
  margin-bottom: 14px;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.course-item {
  flex: 1 1 240px;
  max-width: 330px;
  min-width: 210px;
  text-align: left;
  align-items: flex-start;
  gap: 12px;
}
.course-item img {
  width: 36px;
  height: 36px;
}
.modality-icons {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 22px;
  margin-top: 8px;
  margin-bottom: 0;
}
.modality-icons img { width: 34px; height: 34px; }
.modality-icons span {
  font-size: 1.01rem;
  color: #213C78;
  margin-left: 14px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
}

@media (max-width: 900px) {
  .course-grid {
    gap: 16px;
  }
  .course-item {
    min-width: 100%;
    max-width: 100%;
  }
}

/* --- BLOG LIST & ARTICLES --- */
.blog-list .content-wrapper {
  gap: 30px;
}
.category-filters {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
  margin-bottom: 18px; 
}
.category-filters span {
  font-weight: 700;
  color: #F26A25;
  font-size: 1rem;
}
.category-filters a {
  background: #FCEFBB;
  color: #213C78;
  padding: 5px 14px;
  border-radius: 16px;
  font-size: 0.98rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  letter-spacing: 0.02em;
  font-weight: 700;
  border: 2px solid transparent;
  transition: color 0.13s, background 0.16s, border 0.15s;
}
.category-filters a:hover, .category-filters a:focus{
  background: #F26A25;
  color: #fff;
}
.featured-article {
  background: #FCEFBB;
  padding: 26px 20px;
  border-radius: 16px;
  margin-bottom: 16px;
  border: 2px solid #213C78;
}
.featured-article h3 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.28rem;
  color: #F26A25;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.featured-article a {
  color: #F26A25;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.article-list {
  gap: 22px;
  margin-top: 0;
}
.article-card {
  flex: 1 1 246px;
  min-width: 210px;
  max-width: 355px;
  padding: 18px 12px;
}
.article-card h3 {
  color: #213C78;
  font-size: 1.07rem;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.article-card a {
  color: #F26A25;
  font-weight: bold;
  letter-spacing: 0.01em;
}
.article-card a:hover, .article-card a:focus { color: #BD4300; }

@media (max-width: 800px) {
  .article-list {
    flex-direction: column;
    gap: 12px;
  }
  .article-card {
    max-width: 100%;
    min-width: 100%;
  }
}

/* --- TEAMS --- */
.team-list {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 24px;
}
.team-member {
  flex: 1 1 230px;
  min-width: 200px;
  max-width: 340px;
  background: #FCEFBB;
  border: 2px solid #213C78;
  border-radius: 18px;
  padding: 18px 16px;
  box-shadow: 0 2px 14px rgba(33,60,120,0.07);
  transition: box-shadow 0.18s, border-color 0.18s;
}
.team-member strong {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
  color: #213C78;
}
.team-member span {
  color: #213C78;
  font-size: 1rem;
  opacity: .95;
}
@media (max-width: 910px) {
  .team-list {
    flex-direction: column;
    gap: 12px;
  }
  .team-member {
    max-width: 100%;
  }
}

/* --- CTA SECTION --- */
.cta .container,
.cta .content-wrapper {
  align-items: center;
  text-align: center;
  gap: 21px;
}
.cta {
  background: #FCEFBB;
  border-radius: 16px;
  box-shadow: 0 3px 12px rgba(33,60,120,0.04);
  padding-top: 40px;
  padding-bottom: 36px;
}
.cta h2 { color: #F26A25; }

/* --- FAQ ACCORDION --- */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 26px;
}
.faq-item {
  background: #FCEFBB;
  border: 2px solid #213C78;
  border-radius: 15px;
  padding: 18px 20px;
  box-shadow: 0 2px 14px rgba(33,60,120,0.04);
  margin-bottom: 0 !important;
}
.faq-item h3 {
  color: #BD4300;
  font-size: 1rem;
  margin-bottom: 6px;
}
.faq-item p {
  color: #213C78;
  font-size: 1rem;
  margin-bottom: 0;
}
.contact-cta p {
  background: #F26A25;
  color: #fff;
  padding: 14px 16px;
  border-radius: 18px;
  font-size: 1rem;
  margin-bottom: 0;
  display: inline-block;
}
.contact-cta a { color: #FCEFBB; text-decoration: underline; font-weight: bold; }
.contact-cta a:hover, .contact-cta a:focus { color: #fff; }

/* --- TESTIMONIALS --- */
.testimonials .content-wrapper {
  gap: 26px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #FCEFBB;
  border-radius: 18px;
  margin-bottom: 20px;
  box-shadow: 0 2px 18px rgba(33,60,120,0.06);
  border: 2px solid #213C78;
  position: relative;
  transition: box-shadow 0.18s;
  color: #213C78;
}
.testimonial-card p {
  color: #213C78;
  font-size: 1.12rem;
  font-style: italic;
  margin-bottom: 0;
}
.testimonial-info {
  display: flex;
  flex-direction: row;
  gap: 14px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  align-items: center;
}
.stars {
  color: #F26A25;
  font-size: 1.1em;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  letter-spacing: 0.09em;
}
.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 0;
}
@media (max-width: 950px) {
  .testimonial-grid {
    flex-direction: column;
    gap: 14px;
  }
}

/* --- THANK YOU --- */
.thankyou-message {
  font-size: 1.13rem;
  color: #213C78;
  background: #FCEFBB;
  padding: 14px 12px;
  border-radius: 14px;
  margin-bottom: 20px;
}
.next-steps {
  margin-bottom: 18px;
  background: #fff;
  border: 2px solid #FCEFBB;
  border-radius: 10px;
  padding: 16px 12px;
  color: #213C78;
}
.next-steps ul {
  padding-left: 18px;
}
.next-steps li {
  margin-bottom: 7px;
  font-size: 1rem;
}

/* --- CONTACT --- */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 13px;
  font-size: 1rem;
}
.contact-details img {
  width: 18px;
  height: 18px;
  margin-right: 7px;
  vertical-align: middle;
}
.map-embed {
  background: #FCEFBB;
  color: #213C78;
  border-radius: 12px;
  padding: 10px 14px;
  font-size: 1rem;
  margin-top: 18px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
}

/* --- LEGAL --- */
.legal .content-wrapper {
  gap: 18px;
  background: #fff;
  border-radius: 14px;
  padding: 38px 20px;
  box-shadow: 0 1px 10px rgba(33,60,120,0.05);
}
.legal h1, .legal h2 {
  color: #F26A25;
}
.legal ul {
  padding-left: 18px;
}
.legal li {
  margin-bottom: 8px;
}

/* --- FOOTER --- */
footer {
  background: #213C78;
  color: #fff;
  border-top: 6px solid #FCEFBB;
  margin-top: 30px;
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 32px;
  padding-top: 32px;
  padding-bottom: 32px;
  justify-content: space-between;
}
.footer-logo img {
  width: 56px;
  height: auto;
  margin-bottom: 13px;
}
.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-menu a {
  color: #fff;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  text-transform: uppercase;
  font-weight: 700;
  opacity: 0.9;
  letter-spacing: 0.04em;
  transition: color 0.18s;
}
.footer-menu a:hover {
  color: #FCEFBB;
}
.contact-short {
  font-size: 0.98rem;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact-short p {
  color: #fff;
  opacity: 0.92;
  margin-bottom: 0;
  display: flex;
  align-items: center;
}
.contact-short img {
  width: 16px;
  margin-right: 9px;
  opacity: 0.95;
}
.social-links {
  display: flex;
  flex-direction: row;
  gap: 18px;
  align-items: flex-start;
  margin-top: 8px;
}
.social-links a img {
  width: 32px; height: 32px;
  transition: filter 0.15s, opacity 0.18s;
  opacity: .90;
}
.social-links a:hover img,
.social-links a:focus img {
  opacity: 1;
  filter: brightness(1.3) drop-shadow(0 2px 8px #F26A25);
}

@media (max-width: 880px) {
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
  }
  .footer-logo img {
    margin-bottom: 7px;
  }
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  z-index: 300;
  background: #213C78;
  color: #fff;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 26px;
  padding: 22px 16px 22px 26px;
  box-shadow: 0 -2px 16px rgba(33,60,120,.18);
  transition: transform 0.30s cubic-bezier(.4,0,.2,1), opacity 0.23s;
  opacity: 1;
  transform: translateY(0);
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
}
.cookie-banner p {
  flex: 1 1 0%;
  color: #fff;
  font-size: 1rem;
  margin: 0 10px 0 0;
  font-family: 'Lato', Arial, Helvetica, sans-serif;
}
.cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
  align-items: center;
}
.cookie-btn {
  background: #F26A25;
  color: #fff;
  border: none;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 800;
  padding: 8px 20px;
  border-radius: 28px;
  cursor: pointer;
  letter-spacing: 0.04em;
  transition: background 0.13s, color 0.13s;
}
.cookie-btn.settings {
  background: #FCEFBB;
  color: #213C78;
  font-weight: 700;
}
.cookie-btn.reject {
  background: #fff;
  color: #BD4300;
  border: 1.5px solid #BD4300;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #BD4300;
  color: #fff;
}
.cookie-btn.reject:hover,
.cookie-btn.reject:focus {
  background: #FCEFBB;
  color: #BD4300;
}

@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 17px 8px;
  }
  .cookie-actions {
    gap: 8px;
  }
}

/* COOKIE SETTINGS MODAL */
.cookie-modal {
  position: fixed;
  left: 0; right: 0;
  top: 0; bottom: 0;
  z-index: 500;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(33,60,120,0.41);
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.26s cubic-bezier(.4,0,.2,1);
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal-content {
  background: #fff;
  color: #213C78;
  padding: 33px 24px;
  border-radius: 22px;
  box-shadow: 0 6px 48px rgba(33,60,120,0.18);
  min-width: 90vw;
  max-width: 440px;
  min-height: 310px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
  animation: modalpop 0.36s cubic-bezier(.4,0,.2,1);
}
@keyframes modalpop {
  0% {transform: scale(.85) translateY(40px); opacity: 0;}
  100% {transform: scale(1) translateY(0); opacity: 1;}
}
.cookie-modal-content h2 {
  color: #F26A25;
  font-size: 1.22rem;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 16px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.04rem;
}
.cookie-category input[type=checkbox] {
  width: 22px;
  height: 22px;
  accent-color: #F26A25;
  margin-right: 2px;
}
.cookie-category label {
  font-weight: 700;
  color: #213C78;
}
.cookie-category.essential label {
  color: #BD4300;
}
.cookie-category .cookie-description {
  font-size: 0.95rem;
  color: #515C78;
  margin-left: 6px;
  opacity: .70;
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
  justify-content: flex-end;
  margin-top: 10px;
}
.cookie-modal-close {
  position: absolute; right: 18px; top: 16px;
  background: none; border: none; color: #F26A25;
  font-size: 2rem;
  cursor: pointer;
  opacity: .83;
  transition: color 0.14s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus { color: #BD4300; }

@media (max-width: 600px) {
  .cookie-modal-content {
    min-width: 98vw;
    padding: 17px 7px;
  }
}

/* --- SPACING ON ALL FLEX CARDS/SECTIONS --- */
.card-container, .course-grid, .article-list, .testimonial-grid, .team-list {
  gap: 24px;
}
.card, .course-item, .article-card, .team-member, .testimonial-card {
  margin-bottom: 20px;
}
.section, section {
  margin-bottom: 60px;
  padding-top: 40px;
  padding-bottom: 40px;
}

/* --- TRANSITIONS FOR HOVER STATES --- */
.cta-button, .cookie-btn {
  transition: background 0.13s, box-shadow 0.18s, transform 0.13s, color 0.12s;
}

/* --- MEDIA QUERIES: RESPONSIVE MOBILE & LAYOUTS --- */
@media (max-width: 640px) {
  h1 { font-size: 1.45rem; }
  h2 { font-size: 1.11rem; }
  h3 { font-size: 1rem; }
  .container { padding-left: 7px; padding-right: 7px; }
  .section, section { padding-top: 24px; padding-bottom: 24px; }
}

@media (max-width: 500px) {
  .card, .course-item, .article-card, .team-member {
    padding: 13px 5px;
  }
  .cta-button, .cookie-btn {
    padding: 9px 10px;
    font-size: .95rem;
  }
}

/* --- CUSTOM MICRO-INTERACTIONS --- */
@media (hover: hover) {
  .cta-button:hover, .cta-button:focus,
  .cookie-btn:hover, .cookie-btn:focus {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 7px 22px rgba(242,106,37,0.16);
  }
  .feature-grid li:hover,
  .outcome-list li:hover,
  .card:hover,
  .course-item:hover,
  .article-card:hover,
  .team-member:hover,
  .testimonial-card:hover {
    transform: translateY(-2px) scale(1.01) perspective(40px);
  }
}

/* --- UTILITY CLASSES --- */
.hide { display: none !important; }
.text-center { text-align: center; }
.uppercase { text-transform: uppercase; }
.color-accent { color: #F26A25 !important; }
.bg-accent { background: #F26A25 !important; color: #fff !important; }
.bg-primary { background: #213C78 !important; color: #fff !important; }
.bg-soft { background: #FCEFBB !important; color: #213C78 !important; }


/****************************************************
 *                END MAIN STYLE CSS                *
 ****************************************************/
