/* ===========================================================
   SafeSkill Academy – Geometric Structured Flexbox CSS Styles
   Brand: #142857 (primary), #F2B705 (secondary), #FFFFFF (accent)
   Fonts: Montserrat (display), Open Sans (body)
   Style: Geometric, Structured, Modern Professional
   ONLY FLEXBOX layouts, NO CSS GRID OR CSS COLUMNS
   =========================================================== */

/* RESET & NORMALIZE (Eric Meyer Variation + Flexbox root) */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html, body {
  height: 100%;
  width: 100%;
  scroll-behavior: smooth;
  background-color: #F7F9FC;
}
body {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  color: #142857;
  min-height: 100vh;
  line-height: 1.6;
  position: relative;
}
img {
  max-width: 100%;
  display: block;
  vertical-align: middle;
}
a {
  color: #142857;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #F2B705;
}
ul, ol {
  list-style: none;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
  background: none;
  color: inherit;
  -webkit-tap-highlight-color: transparent;
}

/* ============================== FONTS ============================== */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,800&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Arial Black', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: -1.5px;
  color: #142857;
}
h1 {
  font-size: 2.25rem;
  line-height: 1.15;
  margin-bottom: 24px;
  text-transform: uppercase;
}
h2 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  text-transform: uppercase;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  text-transform: uppercase;
}
h4, h5, h6 {
  font-size: 1rem;
  margin-bottom: 12px;
}
p, li {
  font-size: 1rem;
  color: #1b1f2b;
}
.text-center {
  text-align: center;
}
.text-section {
  margin-bottom: 28px;
}

/* ========================== CONTAINER & STRUCTURE ========================== */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 16px 0 rgba(20, 40, 87, 0.05);
}

@media (max-width: 991px) {
  .section {
    margin-bottom: 40px;
    padding: 28px 8px;
    border-radius: 12px;
  }
}
@media (max-width: 576px) {
  .section {
    margin-bottom: 24px;
    padding: 18px 4px;
    border-radius: 8px;
  }
}

/* ======================== HEADER & NAVIGATION ======================== */
header {
  width: 100%;
  background: #fff;
  border-bottom: 3px solid #142857;
  z-index: 1001;
  position: relative;
}
header .container {
  min-height: 70px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.logo img {
  height: 44px;
  width: auto;
}
.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 22px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  color: #142857;
  padding: 6px 0;
  transition: color 0.2s, border-bottom 0.2s;
  border-bottom: 2px solid transparent;
}
.main-nav a:hover, .main-nav a:focus {
  color: #F2B705;
  border-bottom: 2px solid #F2B705;
}
.main-nav .btn-primary {
  background: #F2B705;
  color: #142857;
  border-radius: 10px;
  padding: 8px 24px;
  margin-left: 16px;
  font-weight: 700;
  border: 2px solid #F2B705;
  box-shadow: 0 2px 8px 0 rgba(242,183,5,0.12);
  transition: background 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.3s;
  text-transform: uppercase;
}
.main-nav .btn-primary:hover, .main-nav .btn-primary:focus {
  background: #142857;
  color: #fff;
  border-color: #142857;
  box-shadow: 0 4px 30px 0 rgba(20,40,87,0.13);
}

.mobile-menu-toggle {
  display: none;
  cursor: pointer;
  background: none;
  border: 0;
  font-size: 2rem;
  color: #142857;
  margin-left: 12px;
  z-index: 1101;
  line-height: 1;
  padding: 5px;
  transition: background 0.2s, color 0.2s;
}
.mobile-menu-toggle:active,
.mobile-menu-toggle:focus {
  background: #F2B70522;
  color: #F2B705;
  border-radius: 12px;
}
@media (max-width: 991px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* ================ MOBILE MENU OVERLAY ================ */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: #142857;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  opacity: 0;
  pointer-events: none;
  transform: translateX(100%);
  transition: transform 0.33s cubic-bezier(.57,-0.01,.41,1.01), opacity 0.24s;
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 16px 20px 0 0;
  background: #F2B705;
  color: #142857;
  border-radius: 50%;
  border: 0;
  font-size: 2rem;
  padding: 4px 12px;
  cursor: pointer;
  z-index: 2100;
  transition: background 0.2s, color 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #fff;
  color: #142857;
}
.mobile-nav {
  margin: 36px auto 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  width: 100%;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  color: #fff;
  text-transform: uppercase;
  text-align: center;
  padding: 8px 0;
  letter-spacing: 1px;
  width: 100vw;
  max-width: 380px;
  border-radius: 10px;
  transition: background 0.13s, color 0.13s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F2B705;
  color: #142857;
}

@media (max-width: 575px) {
  .mobile-nav a {
    font-size: 1rem;
    max-width: 98vw;
  }
}

/* =========================== HERO / CTA =========================== */
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: flex-start;
  justify-content: center;
}
.content-wrapper.text-center {
  align-items: center;
  text-align: center;
}
@media (max-width: 991px) {
  .content-wrapper {
    gap: 20px;
  }
}

.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 11px 32px;
  border-radius: 12px;
  border: 2px solid;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.3s;
  box-shadow: 0 2px 14px 0 rgba(20,40,87,0.06);
  outline: none;
  cursor: pointer;
  margin-top: 4px;
}
.btn-primary {
  background: #F2B705;
  color: #142857;
  border-color: #F2B705;
}
.btn-primary:hover, .btn-primary:focus {
  background: #142857;
  color: #fff;
  border-color: #142857;
  box-shadow: 0 6px 24px 0 #14285713;
}
.btn-secondary {
  background: #fff;
  color: #142857;
  border-color: #142857;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #F2B705;
  color: #142857;
  border-color: #F2B705;
  box-shadow: 0 2px 18px 0 #f2b70527;
}

/* ========================== FEATURES GRIDS ========================= */
.features-grid, .services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 20px;
  justify-content: space-between;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  min-width: 230px;
  flex: 1 1 220px;
  background: #f7f9fc;
  border-radius: 16px;
  padding: 24px 22px;
  box-shadow: 0 2px 8px 0 rgba(20, 40, 87, 0.07);
  margin-bottom: 20px;
  border: 2px solid #F2B70513;
  transition: box-shadow 0.24s, border 0.24s;
}
.feature-item img {
  width: 48px; height: 48px;
  background: #fff;
  border-radius: 9px;
  border: 2px solid #F2B70544;
  padding: 5px;
}
.feature-item:hover, .feature-item:focus-within {
  box-shadow: 0 4px 24px 0 #14285715;
  border: 2px solid #F2B705;
}

/* ========================== SERVICES / COURSES ========================= */
.services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 28px;
  align-items: flex-start;
}
.service-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 1.5px 7px 0 rgba(20,40,87,0.07);
  border: 2px solid #14285712;
  flex: 1 1 270px;
  min-width: 245px;
  max-width: 340px;
  padding: 22px 24px 34px 24px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow 0.23s, border 0.2s;
}
.service-card.highlighted {
  border: 2px solid #F2B705;
  box-shadow: 0 4px 22px 0 #F2B70518;
  background: #FEF8E8;
  z-index: 2;
}
.service-card h3 {
  font-size: 1.12rem;
  display: flex;
  align-items: center;
  gap: 7px;
}
.price-tag {
  background: #F2B705;
  color: #142857;
  font-weight: 700;
  font-size: 1.2rem;
  padding: 3px 18px;
  border-radius: 8px;
  position: absolute;
  bottom: 14px;
  right: 18px;
  box-shadow: 0 0.5px 5px #F2B70514;
  letter-spacing: 1px;
}
.service-card:hover, .service-card:focus-within {
  border: 2px solid #F2B705;
  box-shadow: 0 4px 26px #14285712;
  background: #FEF5D9;
}

/* ========================== TESTIMONIAL CARDS ========================= */
.testimonials-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 20px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  min-width: 260px;
  max-width: 360px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 14px #14285714;
  margin-bottom: 20px;
  border-left: 6px solid #F2B705;
  border-top: 3.5px solid #14285711;
  font-size: 1rem;
}
.testimonial-card p {
  font-size: 1.07rem;
  color: #142857;
  margin-bottom: 0;
}
.testimonial-name {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #142857;
  font-weight: 700;
  margin-bottom: 0;
  letter-spacing: 0.2px;
}
.stars {
  color: #F2B705;
  font-size: 1.1rem;
  letter-spacing: 2px;
  line-height: 1;
}

/* Ensuring high contrast on testimonials */
.testimonial-card, .testimonial-card p, .testimonial-name {
  background: #fff;
  color: #142857;
}

/* ========================== PARTNERS LOGOS ========================= */
.partners-logos {
  display: flex;
  flex-direction: row;
  gap: 22px;
  margin: 30px 0 0 0;
  align-items: center;
}
.partners-logos img {
  width: 54px;
  height: 54px;
  background: #fff;
  border-radius: 9px;
  border: 2px solid #14285722;
  padding: 8px;
}

/* ========================== ACCORDION FAQ ========================= */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
}
.faq-item {
  background: #fff;
  border-radius: 14px;
  border: 2px solid #F2B70522;
  box-shadow: 0 1px 9px #1428570d;
  padding: 18px 24px;
  transition: box-shadow 0.22s, border 0.18s;
  cursor: pointer;
}
.faq-item h2 {
  font-size: 1.12rem;
  font-weight: 600;
  margin-bottom: 7px;
}
.faq-content {
  display: block;
  font-size: 1rem;
  color: #1b1f2b;
}
.faq-item:focus-within,
.faq-item:hover {
  border: 2px solid #F2B705;
  box-shadow: 0 4px 16px #F2B70513;
}

/* ======================== STEPS-LIST (How it works) ======================== */
.steps-list {
  display: flex;
  flex-direction: row;
  gap: 32px;
  margin-top: 24px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.steps-list li {
  flex: 1 1 240px;
  min-width: 238px;
  background: #f7f9fc;
  border-radius: 14px;
  padding: 20px 16px 28px 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 20px;
  border-left: 5px solid #F2B705;
  box-shadow: 0 1.5px 8px #14285707;
  gap: 10px;
}
.steps-list img {
  width: 46px;
  height: 46px;
  margin-bottom: 6px;
}
.steps-list strong {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #142857;
  margin-bottom: 6px;
}

/* ======================= MAP EMBED (Contact) ======================= */
.map-embed {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  margin: 24px 0 0 0;
  padding: 14px 0;
  border-radius: 10px;
  background: #f7f9fc;
  font-size: 1rem;
}
.map-embed img {
  width: 52px;
  height: 52px;
  background: #fff;
  border-radius: 10px;
  border: 2px solid #14285722;
  padding: 5px;
}

/* ========================== UTILITY SPACING ========================== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 1.5px 8px 0 #1428570d;
  margin-bottom: 20px;
  position: relative;
  padding: 24px;
}
.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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ========================== FOOTER ========================== */
footer {
  background: #142857;
  color: #fff;
  padding: 36px 0 0 0;
  border-top: 4px solid #F2B705;
  margin-top: 60px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: 34px;
}
.footer-logo img {
  height: 40px;
  width: auto;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin: 10px 0;
}
.footer-nav a {
  color: #fff;
  font-size: 15px;
  text-decoration: underline dotted;
  transition: color 0.17s, text-decoration 0.17s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #F2B705;
  text-decoration: underline solid;
}
.footer-contact {
  font-size: 0.97rem;
  line-height: 1.55;
  color: #f2f4fa;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.footer-contact a {
  color: #F2B705;
}

@media (max-width: 991px) {
  footer .container {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
    padding-bottom: 20px;
  }
  .footer-logo img {
    height: 34px;
  }
}

/* ========================== RESPONSIVE BREAKPOINTS ========================== */
@media (max-width: 991px) {
  .features-grid, .services-list, .testimonials-slider, .content-grid {
    gap: 18px;
  }
  .feature-item,
  .service-card,
  .testimonial-card,
  .steps-list li {
    max-width: 100%;
    min-width: 160px;
    flex: 1 1 160px;
    padding: 16px 10px;
  }
  .card {
    padding: 16px;
  }

  .footer-logo img {
    height: 30px;
  }
}
@media (max-width: 768px) {
  .container {
    padding-left: 8px;
    padding-right: 8px;
  }
  .content-wrapper, .content-wrapper.text-center {
    gap: 14px;
    padding: 0 3px;
  }
  .features-grid, .services-list, .testimonials-slider, .content-grid {
    gap: 11px;
    flex-direction: column;
    align-items: stretch;
  }
  .feature-item,
  .service-card,
  .testimonial-card,
  .steps-list li,
  .map-embed {
    min-width: 0;
    max-width: 100%;
    border-radius: 9px;
    padding: 13px 7px;
  }
  .steps-list {
    flex-direction: column;
    gap: 20px;
  }
  .section {
    margin-bottom: 24px;
    padding: 18px 2px;
    border-radius: 8px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: center;
  }
}

/* ========================== GEOMETRIC ELEMENTS (ANGLES/SHAPES) ========================== */
h1, h2, h3 {
  letter-spacing: 1.5px;
  position: relative;
  font-family: 'Montserrat', 'Arial Black', Arial, sans-serif;
}
h1::before, h1::after {
  content: '';
  display: inline-block;
  vertical-align: middle;
  height: 4px;
  width: 42px;
  background: #F2B705;
  margin-right: 12px;
  border-radius: 2.5px;
  transform: skew(-20deg);
}
h1::after {
  margin-right: 0;
  margin-left: 12px;
}
h2::before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  height: 3px;
  width: 34px;
  background: #F2B705;
  margin-right: 9px;
  border-radius: 2px;
  transform: skew(-12deg);
}
/* Only apply to h1/h2 in content, avoid nav/side */

/* ========================== ANIMATIONS ========================== */
.btn-primary, .btn-secondary {
  transition: background 0.18s, color 0.18s, border-color 0.18s, box-shadow 0.18s, transform 0.22s;
}
.btn-primary:active, .btn-secondary:active {
  transform: scale(0.97) skew(-4deg);
}
.feature-item, .service-card, .testimonial-card, .faq-item, .steps-list li {
  transition: box-shadow 0.22s, border 0.22s, transform 0.19s;
}
.feature-item:active,
.service-card:active,
.testimonial-card:active,
.faq-item:active,
.steps-list li:active {
  transform: scale(0.98) skew(-2deg);
  box-shadow: 0 2px 24px 0 #f2b7052b;
}

/* ========================== COOKIE CONSENT BANNER ========================== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 5000;
  width: 100vw;
  background: #142857;
  color: #fff;
  box-shadow: 0 -2px 40px #14285734;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 32px;
  font-size: 1rem;
  min-height: 60px;
  animation: slideBannerIn 0.45s cubic-bezier(.54,-0.01,.41,1.01);
}
@keyframes slideBannerIn {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-banner__text {
  flex: 1 1 320px;
  margin-right: 12px;
}
.cookie-banner__actions {
  display: flex;
  flex-direction: row;
  gap: 12px;
}
.cookie-banner button,
.cookie-banner .cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 15px;
  border-radius: 7px;
  border: none;
  cursor: pointer;
  padding: 8px 22px;
  transition: background 0.18s, color 0.18s, box-shadow 0.23s;
  margin: 0 0 0 8px;
  outline: none;
}
.cookie-banner .accept {
  background: #F2B705;
  color: #142857;
}
.cookie-banner .accept:hover,.cookie-banner .accept:focus {
  background: #fff;
  color: #142857;
  box-shadow: 0 2px 24px 0 #F2B70515;
}
.cookie-banner .reject {
  background: #fff;
  color: #142857;
  border: 1.5px solid #14285711;
}
.cookie-banner .reject:hover,.cookie-banner .reject:focus {
  background: #F2B705;
  color: #142857;
  border-color: #F2B705;
}
.cookie-banner .settings {
  background: #142857;
  color: #fff;
  border: 1.5px solid #fff;
}
.cookie-banner .settings:hover,
.cookie-banner .settings:focus {
  background: #14285788;
  color: #F2B705;
  border-color: #F2B705;
}
@media (max-width: 640px) {
  .cookie-banner {
    flex-direction: column;
    gap: 12px;
    padding: 14px 7px;
    font-size: 0.97rem;
    min-height: 64px;
  }
  .cookie-banner__actions {
    width: 100%;
    justify-content: flex-end;
    gap: 8px;
  }
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: #142857dd;
  z-index: 5100;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s;
}
.cookie-modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal {
  background: #fff;
  color: #142857;
  border-radius: 16px;
  box-shadow: 0 14px 48px #14285725;
  padding: 32px 38px 28px 38px;
  min-width: 340px;
  max-width: 96vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
  animation: modalIn 0.27s;
}
@keyframes modalIn {
  from { transform: translateY(60px) scale(0.97); opacity: 0;}
  to   { transform: none; opacity: 1; }
}
.cookie-modal__header {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.cookie-modal__categories {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #f7f9fc;
  border-radius: 8px;
  padding: 14px 14px;
  font-size: 0.99rem;
  border-left: 6px solid #F2B705;
}
.cookie-category .cookie-toggle {
  margin-left: auto;
  min-width: 44px;
  height: 26px;
  background: #ccc;
  border-radius: 13px;
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
  border: none;
}
.cookie-toggle input {
  display: none;
}
.cookie-toggle .slider {
  width: 44px;
  height: 22px;
  background: #ebeef2;
  border-radius: 12px;
  position: absolute;
  top: 2px; left: 0;
  transition: background 0.18s;
}
.cookie-toggle input:checked + .slider {
  background: #F2B705;
}
.cookie-toggle .switch {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: #142857;
  position: absolute;
  top: 1.2px; left: 2px;
  transition: left 0.22s, background 0.13s;
}
.cookie-toggle input:checked + .slider + .switch {
  left: 22px;
  background: #F2B705;
}
/* Essential cookies always enabled */
.cookie-category.essential .cookie-toggle .slider {
  background: #d1dbf4;
}
.cookie-category.essential .cookie-toggle .switch {
  left: 22px;
  background: #F2B705;
}

.cookie-modal__actions {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
}
.cookie-modal__actions .btn-primary,
.cookie-modal__actions .btn-secondary {
  font-size: .98rem;
  padding: 9px 18px;
}

/* ========================== MISC ========================== */
.text-section ul,
ul {
  margin-bottom: 20px;
  margin-left: 24px;
  list-style: disc;
}
.text-section ul li,
ul li {
  margin-bottom: 8px;
  font-size: 1rem;
}
.text-section h2, .text-section h3 {
  margin-top: 26px;
}
@media (max-width: 480px) {
  .cookie-modal {
    padding: 10px 2vw;
    min-width: 0;
  }
}

/* ======================= Scrollbar Styling ======================= */
::-webkit-scrollbar {
  width: 10px;
  background: #f7f9fc;
}
::-webkit-scrollbar-thumb {
  background: #d4dbee;
  border-radius: 7px;
}
::-webkit-scrollbar-thumb:hover {
  background: #F2B705;
}

/* Hide outline on mouse & show on keyboard */
:focus:not(:focus-visible) {
  outline: none;
}
:focus-visible {
  outline: 2.5px solid #F2B705;
  outline-offset: 2px;
}
section {
  padding: 15px 0;
}
/* =========================== END =========================== */
