/* ====================================================== */
/*   RESET & BASE STYLES                                  */
/* ====================================================== */
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;
}
body {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-weight: 400;
  background: #F7F9FB;
  color: #183147;
  min-height: 100vh;
  line-height: 1.6;
  letter-spacing: 0.006em;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #153952;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover,
a:focus {
  color: #FFB14E;
  outline: none;
}
ul, ol {
  list-style: none;
}
b, strong {
  font-weight: 700;
}

/* ====================================================== */
/*   FONTS (brand)                                        */
/* ====================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #153952;
  font-weight: 700;
  letter-spacing: 0.01em;
}
h1 { font-size: 2rem; line-height: 1.18; margin-bottom: 20px; }
h2 { font-size: 1.5rem; line-height: 1.22; margin-bottom: 18px; }
h3 { font-size: 1.15rem; line-height: 1.25; margin-bottom: 12px; }
h4, h5, h6 { font-size: 1rem; line-height: 1.3; }

.subheadline {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  color: #395877;
  font-size: 1.1rem;
  margin-bottom: 20px;
}

p {
  color: #25476B;
  font-size: 1rem;
  margin-bottom: 1.1em;
}

@media (min-width:600px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.35rem; }
}
@media (min-width:1020px){
  h1 { font-size: 3rem; }
  h2 { font-size: 2.4rem; }
  h3 { font-size: 1.5rem; }
}

/* ====================================================== */
/*   LAYOUT CONTAINERS & UTILITY                          */
/* ====================================================== */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 18px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
  border-radius: 16px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.text-section ul {
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-left: 18px;
}
.text-section ul li {
  list-style: disc;
  color: #25476B;
}

/* ====================================================== */
/*   NAVIGATION                                           */
/* ====================================================== */
.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 20px 0 14px 0;
}
.main-nav img {
  height: 42px;
  margin-right: 26px;
  width: auto;
}
.main-nav a {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #153952;
  padding: 7px 10px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}
.main-nav a:hover,
.main-nav a:focus {
  background: #E6EAF1;
  color: #153952;
}
.main-nav .cta-primary {
  background: #153952;
  color: #fff;
  padding: 9px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  letter-spacing: 0.02em;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  box-shadow: 0 2px 14px 0 #1b22303a;
}
.main-nav .cta-primary:hover,
.main-nav .cta-primary:focus {
  background: #FFB14E;
  color: #153952;
  box-shadow: 0 3px 18px 0 #1b22306c;
}

.mobile-menu-toggle {
  display: block;
  background: none;
  border: none;
  font-size: 2rem;
  color: #153952;
  cursor: pointer;
  margin-left: auto;
  z-index: 103;
  padding: 4px 12px;
  border-radius: 6px;
  transition: background 0.18s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #E6EAF1;
}

@media (min-width: 1024px) {
  .mobile-menu-toggle { display: none; }
  .main-nav { gap: 28px; }
}

/* ------------------------------------------------------ */
/*   MOBILE MENU (overlay)                               */
/* ------------------------------------------------------ */
.mobile-menu {
  position: fixed;
  z-index: 1200;
  top: 0; left: 0; bottom: 0; right: 0;
  background: rgba(21,57,82,0.99);
  transform: translateX(-100%);
  transition: transform 0.40s cubic-bezier(.37,.31,.44,1.28);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0%);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  background: transparent;
  border: none;
  font-size: 2.2rem;
  color: #fff;
  margin: 26px 0 18px 24px;
  cursor: pointer;
  z-index: 1210;
  align-self: flex-start;
  transition: background 0.13s;
  border-radius: 6px;
  padding: 0 8px;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  background: #FFB14E;
  color: #153952;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  padding: 24px 36px 18px 36px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1.15rem;
  color: #fff;
  padding: 12px 0;
  border-radius: 7px;
  transition: background 0.13s;
  display: block;
  width: 100%;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #E6EAF1;
  color: #153952;
}
@media (min-width:1024px) {
  .mobile-menu { display: none!important; }
}

@media (max-width: 1023px) {
  .main-nav {
    display: none;
  }
}

/* ====================================================== */
/*   HERO SECTION                                        */
/* ====================================================== */
.hero {
  background: #E6EAF1;
  border-radius: 0 0 32px 32px;
  padding: 48px 0 32px 0;
  box-shadow: 0 14px 32px 0 rgba(21,57,82,0.07);
  margin-bottom: 38px;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero .content-wrapper {
  gap: 18px;
  align-items: flex-start;
}
.hero h1 {
  font-size: 2.3rem;
  color: #153952;
}
.hero .cta-primary {
  margin-top: 14px;
}
@media (min-width: 768px) {
  .hero .container {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
  }
  .hero { padding: 66px 0 44px 0; }
}
@media (min-width:1000px){
  .hero { padding-top: 90px; }
}

/* ====================================================== */
/*   FLEX UTILITIES & GRIDS                               */
/* ====================================================== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 18px 0 rgba(21,57,82,0.07);
  margin-bottom: 20px;
  position: relative;
  padding: 30px 22px;
  flex: 1 1 270px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.18s, transform 0.18s;
}
.card:hover {
  box-shadow: 0 6px 24px 0 rgba(21,57,82,0.12);
  transform: translateY(-3px) scale(1.012);
}

.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;
  box-shadow: 0 2px 10px 0 rgba(21,57,82,0.06);
  border-radius: 12px;
  margin-bottom: 20px;
  min-width: 0;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Specific for success story/testimonials based on html */
.testimonial-slider {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 12px;
}
.testimonial-card p {
  color: #25476B;
  font-size: 1.1rem;
}
.testimonial-card span {
  color: #354759;
  font-size: 0.98rem;
}
.testimonial-stars img {
  height: 22px;
  margin-bottom: 0;
}
/* Extra for reviews/testimonial contrast */
.testimonial-card {
  background: #fff;
  color: #153952;
  box-shadow: 0 2px 10px 0 rgba(21,57,82,0.06);
}

/* ------------------------------------------------------ */
/*   COURSE OVERVIEW/GRIDS                               */
/* ------------------------------------------------------ */
.feature-grid, .unique-points-grid, .course-overview-grid, .course-list, .post-list, .topic-grid, .teacher-list, .success-story-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.feature-grid li,
.unique-points-grid > div,
.course-overview-grid > div,
.course-list > div,
.topic-grid > div,
.teacher-list > div,
.success-story-list > div,
.post-list > div {
  background: #fff;
  border-radius: 10px;
  padding: 24px 18px 18px 18px;
  min-width: 0;
  flex: 1 1 250px;
  box-shadow: 0 2px 10px 0 rgba(21,57,82,0.06);
  transition: box-shadow 0.18s, transform 0.18s;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.feature-grid li:hover,
.unique-points-grid > div:hover,
.course-overview-grid > div:hover,
.course-list > div:hover,
.topic-grid > div:hover,
.teacher-list > div:hover,
.success-story-list > div:hover,
.post-list > div:hover {
  box-shadow: 0 5px 18px 0 rgba(21,57,82,0.13);
  transform: scale(1.02);
}
.feature-grid img,
.unique-points-grid img {
  height: 36px;
  margin-bottom: 10px;
}

@media (max-width: 900px) {
  .feature-grid li,
  .unique-points-grid > div,
  .course-overview-grid > div,
  .course-list > div,
  .topic-grid > div,
  .teacher-list > div,
  .success-story-list > div,
  .post-list > div {
    flex: 1 1 100%;
    min-width: 0;
  }
  .feature-grid, .unique-points-grid, .course-overview-grid, .course-list, .topic-grid, .teacher-list, .success-story-list, .post-list {
    gap: 18px;
  }
}

/* ------------------------------------------------------ */
/*   COURSE CATEGORIES                                   */
/* ------------------------------------------------------ */
.course-category-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
}
.course-category-list li {
  background: #E6EAF1;
  color: #153952;
  border-radius: 6px;
  padding: 5px 14px;
  font-size: 0.98rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
}

/* SUCCESS STORY LIST */
.success-story-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.success-story-list > div {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 10px 0 rgba(21,57,82,0.06);
  padding: 22px 16px;
}
.success-story-list span {
  color: #395877;
  font-size: 0.98rem;
}

/* ====================================================== */
/*   CTA BANNER, BUTTONS, MICROLEVEL                      */
/* ====================================================== */
.cta-primary {
  background: #153952;
  color: #fff;
  padding: 12px 26px;
  border: none;
  border-radius: 8px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1.08rem;
  box-shadow: 0 3px 18px 0 #1b223036;
  cursor: pointer;
  letter-spacing: 0.02em;
  display: inline-block;
  margin-top: 6px;
  transition: background 0.22s, color 0.22s, box-shadow 0.22s, transform 0.12s;
  outline: none;
}
.cta-primary:hover,
.cta-primary:focus {
  background: #FFB14E;
  color: #153952;
  box-shadow: 0 6px 22px 0 #1b22307a;
  transform: translateY(-2px) scale(1.03);
}

button, .btn, a.button {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  border-radius: 7px;
  border: none;
  padding: 10px 22px;
  background: #153952;
  color: #fff;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
}
button:hover, .btn:hover, a.button:hover,
button:focus, .btn:focus, a.button:focus {
  background: #FFB14E;
  color: #153952;
}

.cta-banner {
  background: #153952;
  color: #fff;
  padding: 40px 18px;
  border-radius: 18px;
  text-align: center;
}
.cta-banner h2 {
  color: #fff;
  font-size: 2rem;
}

/* ====================================================== */
/*   FOOTER                                              */
/* ====================================================== */
footer {
  background: #153952;
  color: #fff;
  padding: 38px 0 0 0;
  margin-top: 60px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 18px;
}
.footer-nav a {
  color: #fff;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 0.99rem;
  text-decoration: underline;
  font-weight: 400;
}
.footer-nav a:hover,
.footer-nav a:focus {
  color: #FFB14E;
}
.contact-info {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  font-size: 0.98rem;
  color: #E6EAF1;
  margin-bottom: 16px;
  margin-top: 12px;
}
.contact-info img {
  height: 16px;
  margin-right: 6px;
  filter: brightness(10);
}
.footer-bottom {
  width: 100%;
  border-top: 1px solid #25476B;
  text-align: center;
  color: #a9bdcf;
  font-size: 0.94rem;
  padding: 14px 0 18px 0;
  margin-top: 7px;
}

/* ====================================================== */
/*   BLOG/ARTICLE NAVIGATION, BADGES                      */
/* ====================================================== */
.categories-navigation {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}
.categories-navigation a {
  color: #153952;
  background: #E6EAF1;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.98rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  transition: background 0.13s, color 0.13s;
}
.categories-navigation a:hover,
.categories-navigation a:focus {
  background: #153952;
  color: #fff;
}

/* ====================================================== */
/*   FAQ & INFO BLOCKS                                   */
/* ====================================================== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.faq-list > div {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 10px 0 rgba(21,57,82,0.05);
  padding: 18px 15px 14px 15px;
  margin-bottom: 8px;
}
@media (min-width:700px){
  .faq-list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 24px;
  }
  .faq-list > div { flex: 1 1 270px; }
}

/* Contact Info Block */
.contact-info-block {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.contact-info-block > div {
  background: #E6EAF1;
  color: #153952;
  border-radius: 8px;
  padding: 13px 16px;
  font-size: 1rem;
  align-items: center;
  display: flex;
  gap: 10px;
}

.map-embed p {
  padding: 10px 0 0 0;
  color: #25476B;
  font-size: 0.98rem;
}

/* ====================================================== */
/*   MILESTONE NUMBERS, VALUE LISTS                       */
/* ====================================================== */
.milestone-statistics ul, .value-statements ul {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding-left: 18px;
}
.milestone-statistics li, .value-statements li {
  background: #fff;
  padding: 10px 16px;
  color: #153952;
  border-radius: 7px;
  font-size: 0.99rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}

.author-highlights {
  margin-top: 10px;
  color: #153952;
  font-size: 1rem;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
}

.confirmation-message {
  background: #E6EAF1;
  color: #153952;
  border-radius: 10px;
  padding: 14px 16px;
  margin: 10px 0;
  font-size: 1.08rem;
}
.next-steps ul {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 10px;
  padding-left: 18px;
}
.next-steps li {
  list-style: disc;
  color: #153952;
  font-size: 1rem;
}

/* ====================================================== */
/*   COOKIE CONSENT BANNER + MODAL                        */
/* ====================================================== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  z-index: 1700;
  background: #fff;
  color: #153952;
  box-shadow: 0 -2px 32px 0 rgba(21,57,82,0.13);
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 16px 20px 22px;
  border-radius: 18px 18px 0 0;
  max-width: 700px;
  width: 94vw;
  margin: 0 auto;
  font-size: 1rem;
  animation: cookie-slide-up 0.5s cubic-bezier(.48,.28,.54,1.38);
  transition: transform 0.3s, opacity 0.3s;
}
@keyframes cookie-slide-up {
  from { transform: translateY(90px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-banner.hide {
  transform: translateY(120px);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner-content {
  flex: 1 1 0%;
}
.cookie-banner-actions {
  display: flex;
  flex-direction: row;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 0;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 0.96rem;
  padding: 7px 18px;
  border-radius: 6px;
  border: none;
  background: #E6EAF1;
  color: #153952;
  cursor: pointer;
  margin-left: 0;
  transition: background 0.16s, color 0.16s, box-shadow 0.18s;
}
.cookie-btn.accept {
  background: #153952;
  color: #fff;
}
.cookie-btn.accept:hover,
.cookie-btn.accept:focus {
  background: #FFB14E;
  color: #153952;
}
.cookie-btn.reject {
  background: #fff;
  color: #153952;
  border: 1.5px solid #E6EAF1;
}
.cookie-btn.reject:hover,
.cookie-btn.reject:focus {
  background: #fedab2;
  color: #153952;
  border: 1.5px solid #FFB14E;
}
.cookie-btn.settings {
  background: #E6EAF1;
  color: #153952;
}
.cookie-btn.settings:hover,
.cookie-btn.settings:focus {
  background: #FFB14E;
  color: #153952;
}

/* Cookie modal */
.cookie-modal {
  position: fixed;
  z-index: 1750;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(21,57,82,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.23s;
}
.cookie-modal.open {
  pointer-events: auto;
  opacity: 1;
}
.cookie-modal-box {
  background: #fff;
  color: #153952;
  border-radius: 20px;
  box-shadow: 0 6px 44px 0 rgba(21,57,82,0.23);
  max-width: 400px;
  padding: 34px 24px 24px 24px;
  position: relative;
  width: 96vw;
  animation: modal-fadein 0.32s cubic-bezier(.66,.24,.39,1.18);
}
@keyframes modal-fadein {
  from { transform: scale(0.94); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}
.cookie-modal-close {
  position: absolute;
  right: 16px;
  top: 16px;
  background: transparent;
  border: none;
  font-size: 1.6rem;
  color: #153952;
  cursor: pointer;
  border-radius: 6px;
  transition: background 0.15s, color 0.15s;
  padding: 0 8px;
}
.cookie-modal-close:hover,
.cookie-modal-close:focus {
  background: #FFB14E;
  color: #fff;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 22px;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #E6EAF1;
  border-radius: 8px;
  padding: 11px 12px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
}
.cookie-category label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
}
.cookie-toggle {
  width: 38px; height: 22px;
  background: #153952;
  border-radius: 11px;
  position: relative;
  cursor: pointer;
  transition: background 0.14s;
  flex-shrink: 0;
}
.cookie-toggle input[type='checkbox'] {
  display: none;
}
.cookie-toggle-slider {
  display: block;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  left: 2px; top: 2px;
  transition: left 0.16s;
}
.cookie-toggle input:checked + .cookie-toggle-slider {
  left: 18px;
  background: #FFB14E;
}
.cookie-category.essential .cookie-toggle {
  background: #ced6e0;
  cursor: not-allowed;
}
.cookie-category.essential label {
  opacity: 0.66;
}
.cookie-modal-actions {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
  align-items: center;
}

/* ====================================================== */
/*   RESPONSIVE BREAKPOINTS                               */
/* ====================================================== */
@media (max-width: 991px) {
  .container { max-width: 96vw; padding: 0 10px; }
}
@media (max-width: 768px) {
  .section { padding: 30px 4vw; margin-bottom: 38px; }
  .content-wrapper { gap: 16px; }
  .hero { border-radius: 0 0 16px 16px; padding: 32px 0 20px 0; }

  .text-image-section { flex-direction: column; gap: 18px; align-items: flex-start; }
  .content-grid       { flex-direction: column; gap: 18px; }
  .card-container     { flex-direction: column; gap: 18px; }
  .testimonial-slider { flex-direction: column; gap: 18px; }
  .cta-banner { padding: 25px 4vw; }
}

@media (max-width: 540px) {
  h1 { font-size: 1.45rem; }
  h2 { font-size: 1.20rem; }
  .main-nav img,
  .footer-nav img,
  .contact-info img {
    height: 24px;
  }
  .mobile-nav {
    padding: 18px 10px 14px 20px;
  }
}

/* Extra: prevent overlapping footer on cookie banner/mobile menu */
body {
  padding-bottom: 98px;
}
footer { z-index: 0; position: relative; }

/* ====================================================== */
/*   MICROINTERACTIONS/TRANSITIONS                        */
/* ====================================================== */
a, button, .cta-primary, .cookie-btn {
  transition: background 0.17s, color 0.17s, box-shadow 0.18s, transform 0.11s;
}
.card,
.feature-grid li,
.unique-points-grid > div,
.success-story-list > div,
.teacher-list > div,
.topic-grid > div,
.post-list > div,
.faq-list > div,
.testimonial-card {
  transition: box-shadow 0.18s, transform 0.16s;
}

/* ====================================================== */
/*   CLEARFIX UTILITY                                     */
/* ====================================================== */
.clearfix::after { content: ''; display: block; clear: both; height: 0; }

/* ====================================================== */
/*   A11Y - FOCUS OUTLINE                                 */
/* ====================================================== */
:focus-visible {
  outline: 2px solid #FFB14E;
  outline-offset: 2px;
}

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

/* ====================================================== */
/* END OF PROFESSIONAL CORPORATE DESIGN CSS                */
/* ====================================================== */
