/* ==== CSS RESET & NORMALIZE ==== */
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;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.45;
  background: #F6F7F9;
  color: #173354;
}
ol, ul {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
}
button, input, select, textarea {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
  border: 0;
}

/* ==== BRAND FONTS ==== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Roboto:wght@400;500;700&display=swap');

body {
  font-family: 'Roboto', Arial, sans-serif;
  background: #F6F7F9;
  color: #173354;
  font-size: 16px;
  min-height: 100vh;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #214178;
  font-weight: 900;
  letter-spacing: -0.01em;
}
h1 {font-size: 2.7rem; margin-bottom: 28px;}
h2 {font-size: 2rem; margin-bottom: 22px;letter-spacing:-0.5px;}
h3 {font-size:1.25rem; margin-bottom:16px;letter-spacing:-0.3px;}

strong, b {
  font-weight: 700;
  color: #214178;
}

p, li, blockquote, address {
  margin-bottom: 16px;
  font-size: 1rem;
  color: #173354;
}

.section { margin-bottom: 60px; padding: 40px 20px; background: #fff; border-radius: 18px; box-shadow: 0 8px 24px rgba(33,65,120,0.05);}

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}

.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: flex-start;
}

/* ==== HEADER + NAVIGATION ==== */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 12px rgba(33,65,120,0.06);
  z-index: 40;
  position: sticky;
  top: 0;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
  gap: 20px;
}
.logo img {
  height: 50px;
  width: auto;
}
.main-nav {
  display: flex;
  flex-direction: row;
  gap: 26px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #214178;
  letter-spacing: 0;
  font-size: 1rem;
  padding: 7px 0;
  transition: color 0.17s;
}
.main-nav a:hover, .main-nav a:focus {
  color: #95C623;
}
.button.primary {
  background: #214178;
  color: #fff;
  border-radius: 32px;
  padding: 12px 36px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(33,65,120,0.07);
  transition: background 0.18s, transform 0.12s;
  margin-left: 24px;
  position: relative;
}
.button.primary:hover, .button.primary:focus {
  background: #95C623;
  color: #173354;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 6px 24px rgba(149,198,35,0.13);
}
.button.secondary {
  background: #95C623;
  color: #214178;
  border-radius: 32px;
  padding: 12px 32px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  margin-right: 12px;
  transition: background 0.18s, color 0.18s, transform 0.13s;
  box-shadow: 0 4px 16px rgba(149,198,35,0.09);
}
.button.secondary:hover, .button.secondary:focus {
  background: #214178;
  color: #fff;
  transform: translateY(-2px) scale(1.045);
}
.button {
  display: inline-block;
  text-align: center;
  margin-top: 20px;
}

.mobile-menu-toggle {
  display: none;
  font-size: 2.1rem;
  background: #95C623;
  color: #214178;
  border-radius: 12px;
  padding: 5px 16px;
  margin-left: 20px;
  cursor: pointer;
  border: none;
  transition: background 0.18s;
  z-index: 120;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #214178;
  color: #fff;
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: #214178;
  color: #fff;
  z-index: 200;
  transform: translateX(-100%);
  transition: transform 0.33s cubic-bezier(.77,0,.18,1);
  box-shadow: 2px 0 32px rgba(33,65,120,0.13);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  margin: 18px 18px 0 18px;
  font-size: 2.1rem;
  color: #fff;
  background: transparent;
  align-self: flex-end;
  border: none;
  cursor: pointer;
  transition: color 0.13s;
  z-index: 250;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #95C623;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  justify-content: flex-start;
  align-items: flex-start;
  margin:40px 0 0 38px;
}
.mobile-nav a {
  font-size: 1.3rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  color: #fff;
  letter-spacing: 2px;
  padding: 5px 0;
  border-left: 5px solid #95C62300;
  transition: color 0.21s, border-color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #95C623;
  border-left: 5px solid #95C623;
}

/* ==== HERO ==== */
.hero {
  width: 100%;
  background: linear-gradient(95deg,#F6F7F9 45%,#95C62333 100%);
  min-height: 340px;
  margin-bottom: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0 0 34px 34px;
  box-shadow: 0 8px 32px rgba(33,65,120,0.075);
  padding: 0;
}
.hero .content-wrapper {
  gap: 16px;
  align-items: flex-start;
}
.hero h1 {
  color: #214178;
  font-size: 2.6rem;
  font-weight: 900;
  margin-bottom: 10px;
}
.hero p {
  font-size: 1.25rem;
  color: #214178;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 500;
  margin-bottom: 18px;
}

/* ==== FLEX PATTERNS ==== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 16px rgba(33,65,120,0.09);
  padding: 30px 24px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 220px;
  transition: box-shadow 0.16s, transform 0.13s;
}
.card:hover {
  box-shadow: 0 12px 40px rgba(33,65,120,0.22);
  transform: translateY(-4px) scale(1.025);
}
.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;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(33,65,120,0.09);
  margin-bottom: 24px;
  transition: box-shadow 0.16s;
  border-left: 8px solid #95C623;
  color: #173354;
  position: relative;
}
.testimonial-card:before {
  content: '\201C';
  color: #95C623;
  font-size: 3.2rem;
  line-height: 1;
  font-family: 'Montserrat', Arial, sans-serif;
  position: relative;
  left: -10px;
  top: 10px;
  font-weight: 900;
}
.testimonial-card p {
  font-size: 1.1rem;
  font-weight: bold;
  color: #173354;
  margin-bottom: 6px;
}
.testimonial-card strong {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #214178;
}
.testimonial-card span {
  color: #95C623;
  font-size: 1.3rem;
  letter-spacing: 1px;
}

/* Features Flex Layout */
.features {
  width: 100%;
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 16px rgba(149,198,35,0.11);
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 18px;
  justify-content: space-between;
}
.feature-grid li {
  background: #F6F7F9;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(33,65,120,0.09);
  padding: 26px 20px;
  flex: 1 1 220px;
  min-width: 220px;
  max-width: 285px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  border: 2.5px solid #95C62311;
  transition: border-color 0.18s,box-shadow 0.13s;
  position: relative;
}
.feature-grid li:hover, .feature-grid li:focus-within {
  border-color: #95C623;
  box-shadow: 0 8px 28px rgba(33,65,120,0.13);
}
.feature-grid img {
  height: 40px; width: 40px;
  border-radius: 12px;
  background: #95C62322;
}
.feature-grid h3 {
  font-size: 1.13rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #214178;
}
.trust-points {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 10px;
}
.trust-points li {
  background: #214178;
  color: #fff;
  border-radius: 20px;
  padding: 8px 22px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.03rem;
  font-weight: 600;
  margin-right: 8px;
  margin-bottom: 8px;
  box-shadow: 0 2px 8px rgba(33,65,120,0.09);
}

/* Service and Course lists */
.service-list, .course-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 22px;
  margin-top: 10px;
}
.service-list li, .course-grid > div {
  flex: 1 1 255px;
  min-width: 240px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(33,65,120,0.06);
  padding: 22px 20px;
  margin-bottom: 20px;
  font-size: 1.07rem;
  border: 1.5px solid #21417815;
  display: flex;
  flex-direction: column;
  gap: 13px;
  transition: box-shadow 0.15s, border-color 0.15s;
}
.service-list li span, .course-grid strong {
  color: #95C623;
  font-weight: 700;
}
.service-list li:hover, .course-grid > div:hover {
  box-shadow: 0 8px 24px rgba(149,198,35,0.09);
  border-color: #95C623;
  transform: translateY(-3px) scale(1.015);
}
.comparison-grid {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: #F6F7F9;
  border-radius: 12px;
  padding: 20px;
  margin: 16px 0 12px 0;
  box-shadow: 0 1px 8px rgba(33,65,120,0.06);
}

/* Footer Layout */
footer {
  width: 100%;
  background: #214178;
  color: #fff;
  padding: 0;
  font-family: 'Roboto', Arial, sans-serif;
  margin-top: 48px;
}
footer .container {
  padding: 30px 20px 10px 20px;
  flex-direction: row;
  flex-wrap: wrap;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 28px;
  width: 100%;
}
.footer-nav, .legal-nav {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-right: 36px;
  margin-bottom: 12px;
}
.footer-nav a, .legal-nav a {
  color: #fff;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  transition: color 0.15s;
}
.footer-nav a:hover, .legal-nav a:hover {
  color: #95C623;
  text-decoration: underline;
}
address.contact-short {
  font-style: normal;
  margin-bottom: 12px;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  color: #fff;
  line-height: 1.6;
}
.social-media-links {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 18px;
}
.social-media-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 9px;
  height: 38px;
  width: 38px;
  padding: 4px;
  box-shadow: 0 1px 6px rgba(33,65,120,0.09);
  transition: background 0.13s, transform 0.12s;
}
.social-media-links a:hover {
  background: #95C623;
  transform: scale(1.08);
}
.social-media-links img { width: 28px; height: 28px; }

/* ===== Table Styling ===== */
table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  margin-bottom: 22px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(33,65,120,0.08);
}
table th {
  background: #214178;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  font-size: 1.04rem;
  padding: 12px 10px;
}
table td {
  padding: 14px 10px;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  border-bottom: 1px solid #eee;
}
table tr:last-child td {
  border-bottom: none;
}
table tr:hover td {
  background: #95C62322;
}

/* ===== CTA Section ===== */
.cta {
  background: #214178;
  color: #fff;
  border-radius: 22px;
  box-shadow: 0 4px 16px rgba(33,65,120,0.09);
  margin-bottom: 48px;
  padding:36px 20px;
  position: relative;
}
.cta .button.primary {
  background: #95C623;
  color: #214178;
}
.cta .button.primary:hover {
  background: #fff;
  color: #214178;
}
.cta h2, .cta p {
  color: #fff;
}

/* ===== Thank You Section ===== */
.thank-you-section {
  background: #fff;
  border-radius: 18px;
  min-height: 270px;
  box-shadow: 0 2px 12px rgba(33,65,120,0.09);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top:32px;
}

/* Contact Details/Sections */
.contact-details {
  padding: 18px;
  background: #F6F7F9;
  border-radius: 10px;
  box-shadow: 0 1px 8px rgba(33,65,120,0.06);
  margin-bottom: 18px;
  font-size:1.07rem;
}
.map-embed {
  background: #95C62311;
  color: #214178;
  border-radius:7px;
  padding:13px;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 600;
  margin-bottom: 18px;
  font-size:0.98rem;
}
.contact-note {
  background: #F6F7F9;
  border-radius:12px;
  padding: 18px;
  box-shadow: 0 1px 8px rgba(33,65,120,0.04);
  margin-bottom: 10px;
}

/**** FAQ styling ****/
.faq-list {
  margin-bottom: 32px;
}
.faq-list h2 {
  color: #214178;
  font-size: 1.17rem;
  margin-top: 24px;
  margin-bottom: 10px;
  font-family: 'Montserrat', Arial, sans-serif;
}
.faq-list p {
  margin-bottom: 8px;
}
.contact-prompt {
  background: #95C62311;
  border-radius: 10px;
  padding: 16px;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 14px;
}
.contact-prompt h3 {
  margin-bottom: 8px;
}

/***** Cookie Consent Banner *****/
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #fff;
  color: #173354;
  border-top: 3px solid #95C623;
  box-shadow: 0 -1px 18px rgba(33,65,120,0.13);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: 30px 40px 24px 40px;
  animation: cookieSlideIn 0.6s cubic-bezier(.75,-0.01,.46,1.11);
}
@keyframes cookieSlideIn {
  0% { transform: translateY(100%); opacity: 0; }
  78% { opacity: 1; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner p { margin-bottom: 6px; font-size: 1rem; }
.cookie-banner .cookie-buttons {
  display: flex;
  flex-direction: row;
  gap: 18px;
  margin-top: 4px;
}
.cookie-buttons .cookie-btn {
  padding: 10px 28px;
  border-radius: 32px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  letter-spacing: 1px;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: background 0.14s, color 0.14s, transform 0.15s, box-shadow 0.15s;
}
.cookie-btn.accept {
  background: #95C623;
  color: #214178;
}
.cookie-btn.accept:hover {
  background: #214178;
  color: #fff;
}
.cookie-btn.reject {
  background: #e14348;
  color: #fff;
}
.cookie-btn.reject:hover {
  background: #bb0004;
}
.cookie-btn.settings {
  background: #fff;
  color: #214178;
  border: 2.5px solid #214178;
}
.cookie-btn.settings:hover {
  background: #f4f4f4;
  color: #95C623;
}

/**** Cookie Modal Popup ****/
.cookie-modal {
  position: fixed;
  z-index: 1102;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(33,65,120,0.18);
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: auto;
  opacity: 1;
  animation: fadeInModal 0.3s;
}
@keyframes fadeInModal {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.cookie-modal-content {
  background: #fff;
  color: #173354;
  border-radius: 20px;
  max-width: 420px;
  width: 95vw;
  padding: 34px 26px 30px 26px;
  box-shadow: 0 10px 38px 0 rgba(33,65,120,0.19);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: popIn 0.37s cubic-bezier(.71,-0.08,.47,1.11);
}
@keyframes popIn {
  0% { transform: scale(0.8); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
.cookie-modal-content h2 {
  font-size: 1.2rem;
  color: #214178;
  margin-bottom: 14px;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  margin-bottom: 10px;
}
.cookie-category input[type="checkbox"]:not([disabled]) {
  accent-color: #95C623;
  width: 22px;
  height: 22px;
  margin-right: 6px;
}
.cookie-category input[type="checkbox"][disabled] {
  accent-color: #bbb;
}
.cookie-category label {
  font-size:1rem;
  color: #214178;
}
.cookie-category span.hint {
  font-size: 0.95rem;
  color: #aaa;
}
.cookie-modal .cookie-buttons {
  margin-top: 23px;
}
.cookie-modal .cookie-btn.close {
  background: #eee;
  color: #214178;
  border: 1.5px solid #95C62355;
  padding: 7px 22px;
  border-radius: 20px;
  font-weight: 700;
  margin-left: 14px;
  transition: background 0.14s, color 0.13s;
}
.cookie-modal .cookie-btn.close:hover {
  background: #95C623;
  color: #fff;
}

/* ==== MEDIA QUERIES FOR RESPONSIVENESS (mobile-first) ==== */
@media (max-width: 1200px) {
  .container {
    max-width: 98vw;
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (max-width: 1024px) {
  .feature-grid li, .service-list li, .course-grid > div {
    min-width: 180px;
  }
  .footer-nav, .legal-nav { margin-right: 18px; }
  footer .content-wrapper { gap: 20px; }
}
@media (max-width: 900px) {
  .main-nav {
    gap: 9px;
    font-size: 98%;
  }
  .feature-grid {
    gap: 11px;
  }
}
@media (max-width: 850px) {
  .feature-grid, .service-list, .course-grid {
    flex-direction: column;
    gap: 18px;
  }
  footer .content-wrapper {
    flex-direction: column;
    gap: 18px;
  }
  .footer-nav, .legal-nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
    margin-right: 0;
    margin-bottom: 7px;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.31rem; }
  .main-nav, .button.primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
  .container {
    padding-left: 7px; padding-right: 7px;
  }
  .section, .features, .cta {
    padding: 22px 7px;
    border-radius: 10px;
  }
  .hero {
    padding-left: 0; padding-right:0;
    border-radius: 0 0 15px 15px;
    margin-bottom: 34px;
    min-height: 220px;
  }
  .feature-grid, .service-list, .course-grid {
    flex-direction: column;
    gap: 14px;
  }
  .testimonial-card {
    flex-direction: column;
    gap: 7px;
    align-items: flex-start;
    padding: 13px 10px;
    border-left: 5px solid #95C623;
    border-radius: 12px;
    font-size: 0.98rem;
  }
  .contact-details, .comparison-grid, .contact-note,
  .map-embed, .faq-list, .cookie-banner, .cookie-modal-content {
    padding-right: 11px; padding-left: 11px;
  }
  .content-wrapper, .container, .card-container {
    flex-direction: column;
    gap: 16px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 14px;
  }
  .footer-nav, .legal-nav {
    flex-direction: column;
    gap: 11px;
    margin-bottom: 1px;
  }
  .social-media-links {
    margin-top: 5px;
  }
}
@media (max-width: 540px) {
  h1 { font-size: 1.33rem; }
  h2 { font-size: 1.07rem; }
  .logo img { height: 36px; }
  .testimonial-card {
    font-size: 0.93rem;
    padding: 7px 4px;
  }
  .cookie-banner {
    padding: 15px 3px 17px 3px;
    font-size: 0.95rem;
  }
  .cookie-modal-content { padding: 19px 4px 16px 4px; }
}

/**** Interactive state accessibility ****/
a:focus, button:focus, .button:focus {
  outline: 2px solid #95C623;
  outline-offset: 1.5px;
}

/* Visually hidden class for a11y helpers */
.visually-hidden {
  position: absolute !important;
  height: 1px; width: 1px;
  overflow: hidden;
  clip: rect(1px,1px,1px,1px);
  white-space: nowrap;
}

/***** HIGH CONTRAST for testimonial/reviews bullets *****/
.testimonial-card, .testimonial-card p, .testimonial-card strong,
.trust-points li {
  background: #fff !important;
  color: #173354 !important;
}

/**** Miscellaneous patterns extracted from HTML usage ****/
.section:not(:last-child) { margin-bottom: 60px; }
.contact-details:last-child, .thank-you-section, .hero:last-child, .cta:last-child { margin-bottom: 0; }

/**** Transitions for micro-interactions ****/
.button, .card, .feature-grid li, .main-nav a, .footer-nav a, .social-media-links a, .mobile-nav a, .testimonial-card, .service-list li, .course-grid > div {
  transition: box-shadow 0.15s, background 0.18s, color 0.17s, transform 0.15s, border-color 0.16s;
}

/* Blockquote if encountered */
blockquote {
  border-left: 6px solid #95C623AA;
  padding: 14px 18px;
  margin: 12px 0 22px 0;
  background: #f6f7f9;
  font-style: italic;
  color: #214178;
  font-size: 1.09rem;
}

/* Hide scrollbars for mobile menu */
.mobile-menu {
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

/***** END OF STYLE.CSS *****/
