/* RESET AND 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,
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;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  background: linear-gradient(135deg, #f1f4f8 0%, #e8ecf3 100%);
  color: #23406d;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  position: relative;
}
img {
  max-width: 100%;
  display: block;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #23406d;
  font-weight: 700;
  line-height: 1.15;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}
h4, h5, h6 {
  font-size: 1rem;
  margin-bottom: 8px;
}
p {
  font-size: 1rem;
  margin-bottom: 16px;
}
a {
  color: #1a8648;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #23406d;
  text-decoration: underline;
}
strong {
  font-weight: 700;
}

/* BUTTONS & CALLS TO ACTION */
.cta-button, .cta-link, .read-more-link,
.cookie-btn, .cookie-modal-btn {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 12px 28px;
  margin-top: 8px;
  border-radius: 32px;
  border: none;
  background: linear-gradient(90deg, #23406d 0%, #1a8648 100%);
  color: #fff;
  box-shadow: 0 2px 10px rgba(35, 64, 109, .09);
  transition: background 0.22s cubic-bezier(.4,1,.7,1), transform 0.17s;
  text-align: center;
  letter-spacing: .02em;
}
.cta-button:hover, .cta-link:hover, .read-more-link:hover,
.cookie-btn:hover, .cookie-modal-btn:hover, .cta-button:focus {
  background: linear-gradient(90deg, #1a8648 0%, #23406d 100%);
  transform: translateY(-2px) scale(1.02);
  color: #fff;
  box-shadow: 0 6px 18px rgba(35, 64, 109, .17);
  text-decoration: none;
}
.cta-link, .read-more-link {
  padding: 10px 22px;
  background: none;
  border: 2px solid #1a8648;
  color: #1a8648;
  background-color: #ffffff;
  transition: background .2s, color .2s, border-color .2s;
}
.cta-link:hover, .read-more-link:hover {
  background: #1a8648;
  color: #fff;
  border-color: #23406d;
}

/* LAYOUT GRID CONTAINERS -- FLEXBOX ONLY */
.container {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/**************************
 * HEADER & NAVIGATION
 **************************/
header {
  background: #fff;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 80;
  box-shadow: 0 3px 16px 0 rgba(35,64,109,0.05);
  min-height: 68px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  height: 68px;
  padding: 0 10px;
}
.main-nav .logo-link {
  margin-right: 32px;
  display: flex;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  color: #23406d;
  font-size: 1rem;
  padding: 10px 8px;
  border-radius: 6px;
  transition: color .17s, background .17s;
}
.main-nav a.cta-button {
  padding: 9px 24px;
  margin-left: 16px;
  margin-right: 0;
  background: linear-gradient(90deg, #23406d 0%, #1a8648 100%);
  color: #fff;
  border: none;
  min-width: 122px;
}
.main-nav a.cta-button:hover {
  background: linear-gradient(90deg, #1a8648 0%, #23406d 100%);
  color: #fff;
}
.main-nav a:hover, .main-nav a:focus {
  background: #f1f4f8;
  color: #1a8648;
  text-decoration: none;
}

.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  color: #23406d;
  cursor: pointer;
  position: absolute;
  top: 16px;
  right: 20px;
  z-index: 101;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  transition: background .2s;
}
.mobile-menu-toggle:active, .mobile-menu-toggle:focus {
  background: #e8ecf3;
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  position: fixed;
  left: 0; top: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  z-index: 120;
  padding: 0 0 0 0;
  transform: translateX(100%);
  transition: transform .33s cubic-bezier(.81,0,.34,1);
  box-shadow: -2px 0 24px rgba(35,64,109,0.08);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0%);
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 12px 20px 0 0;
  font-size: 2rem;
  color: #23406d;
  background: none;
  border: none;
  cursor: pointer;
  transition: color .18s;
  padding: 8px;
  border-radius: 50%;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #1a8648;
  background: #e7eee7;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin: 38px 0 0 32px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.2rem;
  color: #23406d;
  padding: 7px 0;
  margin-right: 15px;
  border-radius: 5px;
  transition: color .17s, background .17s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #f1f4f8;
  color: #1a8648;
}

@media (max-width: 1050px) {
  .main-nav {
    gap: 18px;
  }
}
@media (max-width: 900px) {
  .main-nav {
    gap: 12px;
  }
  .main-nav .logo-link {
    margin-right: 14px;
  }
}
@media (max-width: 820px) {
  .main-nav a:not(.logo-link):not(.cta-button) {
    font-size: .97rem;
  }
  .main-nav {
    gap: 7px;
  }
}

@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .mobile-menu {
    display: flex;
  }
}

/**************************
 * FOOTER
 **************************/
footer {
  background: #23406d;
  color: #f1f4f8;
  padding: 36px 0 16px 0;
  margin-top: 60px;
}
.footer-navigation {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
  justify-content: center;
}
.footer-navigation a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  opacity: .88;
  padding: 4px 10px;
  border-radius: 4px;
  transition: background .15s, color .1s, opacity .2s;
}
.footer-navigation a:hover {
  opacity: 1;
  background: #1a8648;
  color: #fff;
}
.contact-info {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
  align-items: flex-start;
  margin: 8px 0 16px;
  font-size: 0.97rem;
}
.contact-info img {
  width: 19px;
  vertical-align: middle;
  margin-right: 8px;
}
.social-links {
  display: flex;
  gap: 18px;
  justify-content: center;
  margin: 16px 0 8px;
}
.social-links img {
  width: 30px;
  height: 30px;
  border-radius: 6px;
  background: #fff;
  padding: 3px;
  transition: box-shadow .16s;
  box-shadow: 0 1px 4px #1a86481a;
}
.social-links img:hover {
  box-shadow: 0 4px 16px #1a86484a;
}
footer .copyright {
  font-size: .93rem;
  opacity: .63;
  text-align: center;
  margin-top: 10px;
}

@media (max-width: 768px) {
  .footer-navigation { gap: 12px; }
  .contact-info { flex-direction: column; gap: 12px; align-items: flex-start; }
  .social-links { gap: 10px; }
}

/**************************
 * SECTIONS & FLEX LAYOUTS
 **************************/
.section, .hero-section, .features-section, .courses-list-section, .courses-overview-section, .about-section, .core-values-section, .founders-section,
.team-section, .testimonials-section, .faq-section, .policy-section, .cta-section, .library-section, .category-section, .blog-list-section, .blog-hero-section, .confirmation-section, .contact-info-section, .location-section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}

.section {
  background: none;
}
.hero-section {
  background: linear-gradient(120deg, #23406d 0%, #1a8648 100%);
  color: #fff;
  border-radius: 0 0 42px 42px;
  box-shadow: 0 10px 20px rgba(35,64,109,0.06);
  min-height: 350px;
  margin-bottom: 60px;
  padding-top: 54px;
}
.hero-section h1, .hero-section p, .hero-section .cta-button {
  color: #fff!important;
}
.hero-section .cta-button {
  background: #fff;
  color: #1a8648;
}
.hero-section .cta-button:hover {
  background: #f1f4f8;
  color: #23406d;
}

/* CARD LAYOUTS */
.card-container, .feature-grid, .team-profiles, .expertise-grid, .resource-list, .blog-list, .course-teaser-grid, .category-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 14px;
  margin-bottom: 20px;
}
.course-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.course-teaser-grid {
  gap: 24px;
}
.course-teaser {
  flex: 1 1 300px;
  min-width: 260px;
  padding: 32px 28px;
  margin-bottom: 20px;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 2px 10px 0 #23406d0e;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 18px;
  transition: box-shadow .19s, transform .18s;
}
.course-teaser:hover {
  box-shadow: 0 6px 28px 0 #1a864829, 0 1.5px 4px #23406d30;
  transform: translateY(-6px) scale(1.02);
}
.feature-card {
  min-width: 220px;
  flex: 1 1 234px;
  padding: 28px 20px 26px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2.5px 12px #23406d10;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
  transition: box-shadow .17s, transform .17s;
}
.feature-card img {
  width: 45px; height: 45px; margin-bottom: 6px;
}
.feature-card:hover {
  box-shadow: 0 6px 24px #1a86481e, 0 2px 4px #23406d18;
  transform: translateY(-6px) scale(1.01);
}

.card {
  margin-bottom: 20px;
  position: relative;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.text-image-section { /* For any image/text horizontal layout */
  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: 20px;
  }
}

/**************************
 * TESTIMONIALS
 **************************/
.testimonials-section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.testimonials-section h2 {
  color: #23406d;
  margin-bottom: 16px;
}
.testimonials-section .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 28px 26px 22px 24px;
  margin-bottom: 20px;
  background: #fff;
  color: #23406d;
  border-radius: 16px;
  box-shadow: 0 2.5px 14px #23406d13;
  min-width: 240px;
  max-width: 370px;
  flex: 1 1 260px;
  position: relative;
  transition: box-shadow .18s, transform .18s;
}
.testimonial-card:hover {
  box-shadow: 0 10px 32px #1a86482b, 0 1px 6px #23406d13;
  transform: scale(1.015) translateY(-3px);
}
.testimonial-card p {
  font-size: 1.08rem;
  color: #23406d;
  margin-bottom: 8px;
}
.testimonial-author {
  font-size: 1rem;
  color: #1a8648;
}

/**************************
 * FAQ, POLICY, LIBRARY, CATEGORY
 **************************/
.faq-list,
.policy-section .text-section ul,
.library-section .resource-list,
.category-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.faq-item, .policy-section .text-section ul li, .resource-item, .category-item {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1.5px 8px #23406d14;
  padding: 22px 24px;
  min-width: 210px;
  color: #23406d;
  margin-bottom: 20px;
  font-size: 1rem;
  flex: 1 1 210px;
  transition: box-shadow .14s, transform .11s;
}
.faq-item h3 {
  font-family: inherit;
  color: #1a8648;
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.faq-item:hover, .resource-item:hover, .category-item:hover {
  box-shadow: 0 5px 16px #1a864819;
  background: #f1f4f8;
  transform: translateY(-3px) scale(1.02);
}
.category-item {
  text-align: center;
  font-weight: 600;
  font-size: 1.05rem;
  cursor: pointer;
  color: #23406d;
  border: 2px solid #1a8648;
  background: #ffffff;
  transition: background .22s, border-color .17s;
}
.category-item:hover, .category-item:focus {
  background: #1a8648;
  color: #fff;
  border-color: #23406d;
}

/**************************
 * TEAM & EXPERTISE CARDS
 **************************/
.team-profiles {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.team-member {
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 2px 12px #23406d0f;
  padding: 26px 26px 20px 22px;
  margin-bottom: 20px;
  flex: 1 1 240px;
}
.expertise-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 22px 0;
}
.expertise-card {
  background: #f1f4f8;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  color: #23406d;
  font-weight: 600;
  min-width: 170px;
  font-size: 1rem;
}
.expertise-card img {
  width: 32px; height: 32px;
}

/**************************
 * RESOURCE & BLOG CARDS
 **************************/
.resource-list, .blog-list {
  gap: 24px;
  display: flex;
  flex-wrap: wrap;
}
.resource-item {
  display: flex;
  gap: 20px;
  align-items: center;
  min-width: 250px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 1.5px 7px #1a86480f;
}
.resource-item img {
  width: 48px;
  margin-right: 5px;
}
.resource-details h3 {
  font-size: 1.13rem;
  margin-bottom: 5px;
}

.blog-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.blog-article {
  min-width: 250px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 1.5px 7px #23406d11;
  padding: 20px 24px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 20px;
  transition: box-shadow .16s, transform .13s;
}
.blog-article:hover {
  box-shadow: 0 6px 26px #1a864815;
  transform: translateY(-3px) scale(1.01);
}
.blog-article img {
  width: 38px;
}
.article-info h3 {
  font-size: 1.18rem;
  color: #23406d;
}
.article-info p {
  color: #1a8648;
  font-size: .98rem;
}
.read-more-link {
  margin-top: 10px;
}

/* CONTENT GRIDS, FEATURE-ITEMS FOR VERTICAL FLOW */
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/********* SPECIAL SECTIONS *******/
.confirmation-section, .about-section, .policy-section, .text-section {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 2.5px 10px #23406d0b;
  margin-bottom: 60px;
  padding: 46px 28px;
}
.text-section ul {
  margin-bottom: 12px;
  margin-left: 22px;
}
.text-section ul li {
  margin-bottom: 10px;
  list-style: disc inside;
}
.policy-date {
  color: #b3b9c9;
  font-weight: 500;
  margin-top: 24px;
  font-size: .92rem;
}

/**************************
 * CONTACT PAGE
 **************************/
.contact-info-section .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 1.5px 9px #23406d10;
  padding: 16px 22px;
  font-size: 1rem;
  margin-bottom: 12px;
}
.contact-info-item img {
  width: 21px;
  height: 21px;
}

/**************************
 * CTA SECTION
 **************************/
.cta-section {
  background: linear-gradient(100deg, #23406d 0%, #1a8648 100%);
  color: #fff;
  border-radius: 22px;
  text-align: center;
  box-shadow: 0 6px 28px #23406d0c;
  margin-bottom: 60px;
}
.cta-section h2 {
  color: #fff;
}
.cta-section p {
  color: #e3f2ee;
}
.cta-section .cta-button {
  background: #fff;
  color: #1a8648;
  margin: 18px auto 0 auto;
}
.cta-section .cta-button:hover {
  background: #f1f4f8;
  color: #23406d;
}

/**************************
 * RESPONSIVENESS
 **************************/
@media (max-width: 1100px) {
  .container {
    max-width: 97vw;
  }
  .feature-grid, .card-container, .team-profiles, .expertise-grid, .resource-list, .blog-list, .course-teaser-grid {
    gap: 16px;
  }
}
@media (max-width: 900px) {
  .course-teaser, .feature-card, .blog-article, .resource-item, .testimonial-card, .team-member {
    min-width: 180px;
  }
}
@media (max-width: 768px) {
  .container { padding: 0 8px; }
  .content-wrapper { gap: 16px; }
  .card-container, .feature-grid, .team-profiles, .expertise-grid, .resource-list, .blog-list, .course-teaser-grid, .category-grid { flex-direction: column; gap: 16px; }
  .footer-navigation { gap: 8px; }
  .hero-section, .courses-overview-section, .cta-section, .features-section, .courses-list-section, .testimonials-section, .about-section, .core-values-section, .founders-section, .library-section, .category-section, .faq-section, .policy-section, .confirmation-section, .contact-info-section, .location-section {
    padding: 30px 8px;
    margin-bottom: 38px;
    border-radius: 10px;
  }
  .testimonial-card, .feature-card, .course-teaser, .blog-article, .resource-item {
    padding: 19px 13px;
    min-width: 0;
    border-radius: 10px;
  }
  .footer-navigation { flex-direction: column; align-items: center; }
}
@media (max-width: 500px) {
  h1 { font-size: 1.45rem; }
  h2 { font-size: 1.12rem; }
  h3 { font-size: 1.02rem; }
  .cta-button, .cta-link, .read-more-link, .cookie-btn, .cookie-modal-btn { font-size: .93rem; padding: 10px 12px; }
}


/**************************
 * ANIMATIONS / TRANSITIONS
 **************************/
*:focus { outline: 2px solid #1a8648; outline-offset: 2px; }
.cta-button, .cta-link, .read-more-link, .feature-card, .course-teaser, .testimonial-card, .blog-article, .policy-section .text-section ul li, .faq-item, .category-item, .team-member, .expertise-card, .resource-item {
  transition: box-shadow .19s, transform .18s, background .19s, border-color .15s, color .13s;
}

/**************************
 * COOKIE CONSENT BANNER
 **************************/
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) translateY(100%);
  width: 99vw;
  max-width: 580px;
  background: #23406d;
  color: #fff;
  z-index: 1800;
  border-radius: 18px 18px 0 0;
  box-shadow: 0 -4px 30px #23406d18;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 28px 24px 20px 24px;
  gap: 15px;
  font-size: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: transform .4s cubic-bezier(.68,-0.1,.31,1.24), opacity .25s;
}
.cookie-banner.visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
.cookie-banner h4 {
  color: #fff;
  font-size: 1.12rem;
  margin-bottom: 8px;
}
.cookie-btn {
  background: #1a8648;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  border: none;
  border-radius: 34px;
  padding: 10px 28px;
  margin-right: 10px;
  margin-top: 8px;
  cursor: pointer;
  box-shadow: 0 2px 7px #1a864818;
  transition: background .19s, color .15s;
}
.cookie-btn:hover {
  background: #fff;
  color: #1a8648;
}
.cookie-btn.reject {
  background: #fff;
  color: #23406d;
  border: 1.5px solid #1a8648;
}
.cookie-btn.reject:hover {
  background: #1a8648;
  color: #fff;
}
.cookie-btn.settings {
  background: transparent;
  color: #fff;
  border: 1.5px solid #fff;
}
.cookie-btn.settings:hover {
  background: #fff;
  color: #1a8648;
}

/**************************
 * COOKIE MODAL OVERLAY
 **************************/
.cookie-modal-overlay {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(33,41,77,0.55);
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.cookie-modal-overlay.active {
  display: flex;
}
.cookie-modal {
  background: #fff;
  color: #23406d;
  border-radius: 18px;
  box-shadow: 0 20px 65px #23406d30;
  min-width: 340px;
  padding: 36px 32px 22px 32px;
  max-width: 92vw;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: fadeInCookieModal .33s cubic-bezier(.59,0,.95,1.1);
}
@keyframes fadeInCookieModal {
  0% { transform: scale(.85); opacity: 0; }
  99% { opacity: 1; }
  100% { transform: scale(1); }
}
.cookie-modal-close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: none;
  border: none;
  color: #23406d;
  font-size: 1.55rem;
  cursor: pointer;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  transition: background .18s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #f1f4f8;
  color: #1a8648;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1rem;
  margin-bottom: 4px;
}
.cookie-category label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
}
.cookie-category input[type=checkbox] {
  width: 20px;
  height: 20px;
  accent-color: #1a8648;
  margin-right: 9px;
}
.cookie-category.essential label {
  color: #1a8648;
  font-weight: 600;
  opacity: 1;
}

.cookie-modal-btns {
  margin-top: 12px;
  display: flex;
  gap: 14px;
  justify-content: flex-end;
}
.cookie-modal-btn {
  background: #1a8648;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  border: none;
  border-radius: 25px;
  padding: 9px 20px;
  cursor: pointer;
  box-shadow: 0 2px 7px #1a864818;
  transition: background .19s, color .15s;
}
.cookie-modal-btn.reject {
  background: #fff;
  color: #1a8648;
  border: 1.5px solid #1a8648;
}
.cookie-modal-btn.reject:hover {
  background: #1a8648;
  color: #fff;
}
.cookie-modal-btn.save {
  background: #1a8648;
  color: #fff;
}
.cookie-modal-btn.save:hover {
  background: #23406d;
}

@media (max-width: 600px) {
  .cookie-modal {
    min-width: 90vw;
    padding: 19px 8px 14px 10px;
  }
}

/**************************
 * MISC & UTILITIES
 **************************/
hr {
  border: none;
  border-top: 1.5px solid #f1f4f8;
  margin: 28px 0;
}
ul {
  margin-bottom: 16px;
  padding-left: 18px;
}
li {
  margin-bottom: 10px;
  font-size: 1rem;
}
section {
  box-sizing: border-box;
}
::-webkit-input-placeholder{color:#b5b7c1;}
::-moz-placeholder{color:#b5b7c1;}
:-ms-input-placeholder{color:#b5b7c1;}
::placeholder{color:#b5b7c1;}

/* Flex gap fallback for old Safari/iOS */
@supports not (gap: 20px) {
  .card-container > *, .feature-grid > *, .team-profiles > *, .expertise-grid > *, .resource-list > *, .blog-list > *, .course-teaser-grid > *, .category-grid > * {
    margin-right: 16px;
    margin-bottom: 16px;
  }
}
