/* -------------------- 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;
}
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #1A2637;
  color: #E9EDF3;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  min-height: 100vh;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
ul, ol {
  list-style: none;
}
button {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  cursor: pointer;
  background: none;
  border: none;
  outline: none;
}

/* -------------------- FONT FACE LOADS -------------------- */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,600,500|Open+Sans:400,600,700&display=swap');

/* -------------------- BRAND VARIABLES -------------------- */
:root {
  --rk-primary: #1A2637;
  --rk-secondary: #E9EDF3;
  --rk-accent: #F4C542;
  --rk-metal: #B0B5BC;
  --rk-dark-none: #151b26;
  --rk-card: #212c3d;
  --rk-error: #b53a3a;
}

/* -------------------- CONTAINERS & LAYOUT -------------------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}

@media (max-width:768px) {
  .section {
    padding: 28px 8px;
    margin-bottom: 36px;
  }
  .container {
    padding: 0 8px;
  }
}

/* -------------------- TYPOGRAPHY -------------------- */
h1,h2,h3,h4,h5,h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: var(--rk-secondary);
  font-weight: 700;
  letter-spacing: 0.5px;
}
h1 {
  font-size: 2.75rem; /* 44px */
  line-height: 1.13;
}
h2 {
  font-size: 2rem; /* 32px */
  margin-bottom: 8px;
}
h3 {
  font-size: 1.25rem; /* 20px */
}
@media (max-width: 768px) {
  h1 {
    font-size: 1.75rem;
  }
  h2 {
    font-size: 1.25rem;
  }
}
p, li, ul {
  font-size: 1rem;
  font-family: 'Open Sans', Arial, sans-serif;
  color: var(--rk-secondary);
}
strong, b {
  font-weight: 700;
  color: var(--rk-accent);
}
em, i {
  font-style: italic;
}

/* -------------------- HEADER / NAVIGATION -------------------- */
header {
  width: 100%;
  background: var(--rk-dark-none);
  box-shadow: 0 2px 8px rgba(20,30,50,0.12);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 20px;
}
header a img {
  height: 52px;
}
.main-nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  padding: 7px 11px;
  border-radius: 2px;
  position: relative;
  color: var(--rk-secondary);
  transition: color 0.16s, background 0.18s;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--rk-card);
  color: var(--rk-accent);
}
.main-nav .cta-btn {
  background: var(--rk-accent);
  color: var(--rk-primary);
  font-weight: 700;
  border-radius: 24px;
  padding: 9px 24px;
  transition: background 0.16s, color 0.16s, box-shadow 0.22s;
  box-shadow: 0 3px 14px rgba(244,197,66,0.18);
  margin-left: 8px;
  border: none;
}
.main-nav .cta-btn:hover,.main-nav .cta-btn:focus {
  background: #ffe687;
  color: var(--rk-primary);
  box-shadow: 0 8px 40px rgba(244,197,66,0.25);
}

/* Mobile menu hamburger */
.mobile-menu-toggle {
  display: none;
  background: var(--rk-accent);
  border-radius: 8px;
  color: var(--rk-primary);
  font-size: 2rem;
  padding: 7px 16px 6px 16px;
  border: none;
  transition: background 0.18s, color 0.16s;
  margin-left: 12px;
  z-index: 40;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #ffe687;
  color: var(--rk-primary);
}
@media (max-width: 1020px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* -------------------- MOBILE MENU OVERLAY -------------------- */
.mobile-menu {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--rk-primary);
  transform: translateX(-100%);
  transition: transform 0.38s cubic-bezier(.79,.35,.47,1.14);
  display: flex;
  flex-direction: column;
  padding-top: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  box-shadow: 12px 0 40px rgba(24, 34, 55, 0.46);
}
.mobile-menu-close {
  align-self: flex-end;
  background: var(--rk-accent);
  color: var(--rk-primary);
  font-size: 2.2rem;
  border-radius: 8px;
  padding: 7px 20px 7px 16px;
  margin: 24px 24px 0 0;
  border: none;
  transition: background 0.2s, color 0.2s;
  z-index: 105;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #ffe687;
  color: var(--rk-primary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  margin-top: 48px;
}
.mobile-nav a {
  font-size: 1.2rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--rk-secondary);
  padding: 15px 0;
  width: 100%;
  text-align: center;
  border-bottom: 1px solid rgba(233,237,243,0.07);
  transition: background 0.15s, color 0.15s;
}
.mobile-nav a:last-child {
  border-bottom: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--rk-card);
  color: var(--rk-accent);
}

@media (max-width: 768px) {
  .mobile-nav a {
    font-size: 1.05rem;
    padding: 12px 0;
  }
  .mobile-menu-close {
    font-size: 2rem;
    padding: 7px 10px 7px 10px;
    margin: 18px 12px 0 0;
  }
}

/* -------------------- HERO SECTION -------------------- */
.hero {
  background: linear-gradient(115deg, #1A2637 90%, #272e38 100%);
  border-bottom: 2px solid var(--rk-metal);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 340px;
  margin-bottom: 0;
}
.hero .container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  min-height: 340px;
}
.hero .content-wrapper {
  align-items: center;
  gap: 18px;
}
.hero h1 {
  color: var(--rk-accent);
  text-shadow: 0 3px 20px rgba(54,54,54,0.24);
}
.hero p {
  color: var(--rk-secondary);
  font-size: 1.25rem;
  max-width: 500px;
  margin: 0 auto;
}
.hero .cta-btn {
  margin-top: 14px;
}

/* -------------------- CTA BUTTONS -------------------- */
.cta-btn {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  background: var(--rk-accent);
  color: var(--rk-primary);
  border-radius: 24px;
  padding: 12px 32px;
  border: none;
  font-size: 1.08rem;
  box-shadow: 0 2px 16px rgba(244,197,66,0.18);
  transition: background 0.16s, color 0.12s, box-shadow 0.22s, transform 0.13s;
  margin-top: 4px;
  margin-bottom: 4px;
  letter-spacing: 0.05em;
  outline: none;
  cursor: pointer;
  position: relative;
  z-index: 1;
}
.cta-btn:hover, .cta-btn:focus {
  background: #ffe687;
  color: var(--rk-primary);
  box-shadow: 0 8px 40px rgba(244,197,66,0.25);
  transform: translateY(-2px) scale(1.03);
}

/* -------------------- FEATURES SECTION -------------------- */
.features {
  background: var(--rk-card);
  border-radius: 12px;
  box-shadow: 0 2px 24px rgba(15,18,21,0.22);
  margin-bottom: 60px;
  padding: 40px 20px;
}
.features .content-wrapper {
  gap: 18px;
}
.features h2 {
  color: var(--rk-accent);
  text-shadow: 0 3px 12px rgba(190,167,65,0.05);
}
.features ul {
  margin-top: 10px;
  margin-bottom: 12px;
  list-style: disc inside;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.features li {
  font-size: 1.1rem;
  color: var(--rk-secondary);
  padding-left: 6px;
}
.feature-icons {
  display: flex;
  gap: 28px;
  margin-top: 12px;
}
.feature-icons img {
  height: 48px;
  filter: grayscale(30%) drop-shadow(0 2px 8px rgba(244,197,66,0.08));
  transition: filter 0.15s;
}
.feature-icons img:hover {
  filter: none;
}

/* Feature-item utility */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 28px;
}

/* -------------------- SERVICES/COURSE SECTIONS -------------------- */
.services {
  background: var(--rk-card);
  border-radius: 12px;
  box-shadow: 0 2px 26px 0 rgba(44,53,81,0.14);
  margin-bottom: 60px;
  padding: 40px 20px;
}
.services h2 {
  color: var(--rk-accent);
  margin-bottom: 10px;
}
.services ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 10px;
  margin-top: 6px;
  list-style: disc inside;
}
.services li {
  font-size: 1.08rem;
  color: var(--rk-secondary);
}
.services .cta-btn {
  margin-top: 14px;
}

.course-card {
  background: var(--rk-dark-none);
  border-left: 4px solid var(--rk-metal);
  border-radius: 10px;
  box-shadow: 0 2px 12px 0 rgba(34,38,49,0.11);
  margin-bottom: 20px;
  padding: 24px 20px 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.course-card:hover, .course-card:focus-within {
  border-left: 4px solid var(--rk-accent);
  box-shadow: 0 8px 30px 0 rgba(244,197,66,0.10);
}
.course-card h3 {
  font-size: 1.22rem;
  color: var(--rk-accent);
}
.course-card .price {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: var(--rk-accent);
  font-size: 1.07rem;
}

.price {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: var(--rk-accent);
  font-size: 1.07rem;
  padding-top: 4px;
}

/* -------------------- TESTIMONIAL SECTION -------------------- */
.testimonials {
  background: var(--rk-secondary);
  border-radius: 12px;
  margin-bottom: 60px;
  padding: 40px 20px;
}
.testimonials .content-wrapper {
  gap: 18px;
}
.testimonials h2 {
  color: var(--rk-primary);
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
  padding: 22px 32px;
  background: #fff;
  border-radius: 9px;
  box-shadow: 0 2px 20px 0 rgba(26,38,55,0.06), 0 1px 0px 0 #deedde22;
  color: #22262a;
  border-left: 6px solid var(--rk-accent);
  z-index: 1;
  transition: box-shadow 0.16s, transform 0.14s;
}
.testimonial-card:last-child {
  margin-bottom: 0;
}
.testimonial-card:hover, .testimonial-card:focus {
  box-shadow: 0 8px 38px 0 rgba(30,36,44,0.18);
  transform: translateY(-2px) scale(1.01);
}
.testimonial-card p {
  color: #22262a;
  font-size: 1.07rem;
}
.testimonial-card strong {
  color: var(--rk-primary);
}

/* -------------------- ABOUT/TEAM BIOS -------------------- */
.team-bio {
  background: var(--rk-dark-none);
  border-left: 4px solid var(--rk-accent);
  border-radius: 9px;
  box-shadow: 0 2px 12px 0 rgba(34,38,49,0.12);
  margin-bottom: 16px;
  padding: 19px 20px 13px 20px;
  color: var(--rk-secondary);
}
.team-bio strong {
  color: var(--rk-accent);
}

/* -------------------- GENERIC CARD LAYOUTS -------------------- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.card {
  background: var(--rk-card);
  border-radius: 9px;
  box-shadow: 0 2px 12px 0 rgba(34,38,49,0.10);
  margin-bottom: 20px;
  padding: 20px 16px 14px 16px;
  position: relative;
  color: var(--rk-secondary);
}

.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

.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) {
  .content-grid {
    flex-direction: column;
    gap: 16px;
    justify-content: flex-start;
  }
  .text-image-section {
    flex-direction: column;
    gap: 22px;
    align-items: flex-start;
  }
}

/* -------------------- CONTACT/INFO SECTIONS -------------------- */
.contact-inline, .company-contact, .contact-details {
  background: var(--rk-card);
  border-radius: 12px;
  box-shadow: 0 2px 22px 0 rgba(34,38,49,0.08);
  margin-bottom: 60px;
  padding: 40px 20px;
}
.contact-inline h2, .company-contact h2, .contact-details h2 {
  color: var(--rk-accent);
}
.contact-inline ul, .company-contact ul, .contact-details ul {
  margin-top: 12px;
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  list-style: none;
}
.contact-inline li, .company-contact li, .contact-details li {
  font-size: 1.07rem;
  color: var(--rk-secondary);
  display: flex;
  align-items: center;
  gap: 14px;
}
.contact-inline img, .company-contact img, .contact-details img {
  height: 28px;
  width: 28px;
  filter: grayscale(40%) brightness(90%);
}

/* -------------------- FAQ -------------------- */
.faq {
  background: var(--rk-dark-none);
  border-radius: 12px;
  box-shadow: 0 2px 26px 0 rgba(34,38,49,0.09);
  margin-bottom: 60px;
  padding: 40px 20px;
}
.faq h2 {
  color: var(--rk-accent);
  margin-bottom: 6px;
}
.faq-item {
  background: var(--rk-card);
  border-left: 3px solid var(--rk-metal);
  border-radius: 7px;
  margin-bottom: 20px;
  padding: 16px 18px 10px 18px;
  color: var(--rk-secondary);
  transition: border-left 0.15s, box-shadow 0.13s;
}
.faq-item h3 {
  color: var(--rk-accent);
  font-size: 1.05rem;
}
.faq-item:last-child {
  margin-bottom: 0;
}
.faq-item:hover, .faq-item:focus-within {
  border-left: 3px solid var(--rk-accent);
  box-shadow: 0 4px 20px 0 rgba(244,197,66,0.09);
}

/* -------------------- LEGAL UTILITY SECTIONS -------------------- */
.legal {
  background: var(--rk-card);
  border-radius: 12px;
  margin-bottom: 60px;
  padding: 40px 20px;
  color: var(--rk-secondary);
}
.legal h1, .legal h2 {
  color: var(--rk-accent);
}
.legal ul {
  margin-top: 16px;
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  list-style: disc inside;
}
.legal li {
  color: var(--rk-secondary);
  padding-left: 10px;
}
.legal a {
  color: var(--rk-accent);
  text-decoration: underline;
}
.legal a:hover { color: #e5b51d; }

/* -------------------- FOOTER -------------------- */
footer {
  background: var(--rk-dark-none);
  width: 100%;
  box-shadow: 0 -2px 16px 0 rgba(30,38,55,0.18);
  position: relative;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 36px;
  justify-content: space-between;
  padding: 36px 20px 16px 20px;
}
.footer-logo img {
  height: 54px;
}
.footer-menu {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-menu a {
  color: var(--rk-secondary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.05rem;
  transition: color 0.11s, border-bottom 0.11s;
  border-bottom: 1.5px solid transparent;
  padding-bottom: 3px;
}
.footer-menu a:hover, .footer-menu a:focus {
  color: var(--rk-accent);
  border-bottom: 1.5px solid var(--rk-accent);
}
.footer-social {
  display: flex;
  gap: 16px;
}
.footer-social a img {
  height: 33px;
  filter: grayscale(55%) brightness(94%);
  transition: filter 0.14s;
}
.footer-social a:hover img,
.footer-social a:focus img {
  filter: grayscale(0%) brightness(104%) drop-shadow(0 2px 6px var(--rk-accent));
}
.footer-contact {
  color: var(--rk-metal);
  font-size: 1rem;
  margin-bottom: 7px;
}
footer small {
  color: var(--rk-metal);
  width: 100%;
  margin-top: 15px;
  display: block;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
}

@media (max-width: 950px) {
  footer .container {
    gap: 15px;
    padding-top: 20px;
    flex-direction: column;
    align-items: flex-start;
  }
}

/* -------------------- RESPONSIVE DESIGN -------------------- */
@media (max-width: 768px) {
  h1 { font-size: 1.65rem; }
  h2 { font-size: 1.22rem; }
  .section, .features, .services, .testimonials, .faq, .legal, .contact-inline, .company-contact, .contact-details {
    padding: 24px 7px;
    margin-bottom: 36px;
  }
  .card-container, .content-grid {
    flex-direction: column;
    gap: 16px;
  }
  .footer-logo img { height: 42px; }
  footer .container {
    gap: 18px;
    padding-top: 16px;
    padding-bottom: 7px;
  }
  .team-bio, .course-card, .faq-item, .testimonial-card {
    padding-left: 12px;
    padding-right: 12px;
  }
}

/* -------------------- TRANSITIONS & ANIMATIONS -------------------- */
a, button, .cta-btn, .faq-item, .testimonial-card, .course-card, .footer-menu a {
  transition: all 0.18s cubic-bezier(.83,.12,.62,1.19);
}

/* -------------------- SCROLLBAR (industrial style) -------------------- */
::-webkit-scrollbar {
  width: 9px;
  background: var(--rk-dark-none);
}
::-webkit-scrollbar-thumb {
  background: var(--rk-metal);
  border-radius: 6px;
}

/* -------------------- ACCESSIBILITY/FOCUS STYLES -------------------- */
a:focus, button:focus, .cta-btn:focus {
  outline: 2px solid var(--rk-accent);
  outline-offset: 2px;
}

/* -------------------- COOKIE CONSENT BANNER -------------------- */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: var(--rk-card);
  color: var(--rk-secondary);
  border-top: 2px solid var(--rk-accent);
  z-index: 2222;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 24px 16px 20px 16px;
  box-shadow: 0 -5px 32px 0 rgba(26,38,55,0.17);
  font-size: 1rem;
  animation: cookieAppear 0.65s cubic-bezier(.43,.13,.63,1.34);
}
@keyframes cookieAppear {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
.cookie-banner__text {
  max-width: 640px;
}
.cookie-banner__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 8px 18px;
  border-radius: 22px;
  border: none;
  font-weight: 700;
  font-size: 1rem;
  margin-right: 4px;
  transition: background 0.14s, color 0.13s;
  box-shadow: 0 1.5px 12px 0 rgba(244,197,66, 0.06);
  cursor: pointer;
}
.cookie-btn--accept {
  background: var(--rk-accent);
  color: var(--rk-primary);
}
.cookie-btn--accept:hover, .cookie-btn--accept:focus {
  background: #ffe687;
  color: var(--rk-primary);
}
.cookie-btn--reject {
  background: #b53a3a;
  color: #fff;
}
.cookie-btn--reject:hover, .cookie-btn--reject:focus {
  background: #d95a5a;
  color: #fff;
}
.cookie-btn--settings {
  background: var(--rk-metal);
  color: var(--rk-primary);
}
.cookie-btn--settings:hover, .cookie-btn--settings:focus {
  background: #d7dbe0;
  color: var(--rk-primary);
}
@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    text-align: left;
    gap: 11px;
    padding: 20px 6px 14px 6px;
    font-size: .98rem;
  }
  .cookie-banner__actions {
    gap: 9px;
  }
}

/* -------------------- COOKIE MODAL -------------------- */
.cookie-modal-backdrop {
  display: none;
  position: fixed;
  z-index: 3315;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(26,38,55,0.47);
  align-items: center;
  justify-content: center;
}
.cookie-modal-backdrop.open {
  display: flex;
}
.cookie-modal {
  background: var(--rk-secondary);
  color: var(--rk-primary);
  border-radius: 14px;
  box-shadow: 0 12px 48px 0 rgba(32,32,32,0.25);
  min-width: 320px;
  max-width: 97vw;
  max-width: 520px;
  padding: 32px 36px 30px 36px;
  position: relative;
  animation: modalPop 0.45s cubic-bezier(.63,.13,.63,1.34);
  display: flex;
  flex-direction: column;
  gap: 19px;
}
@keyframes modalPop {
  from { opacity: 0; transform: scale(0.89) translateY(50px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
.cookie-modal__close {
  position: absolute;
  top: 18px; right: 24px;
  color: var(--rk-accent);
  font-size: 1.7rem;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 50%;
  padding: 3px 7.5px 3px 7.5px;
  transition: background 0.15s;
  z-index: 1;
}
.cookie-modal__close:hover, .cookie-modal__close:focus {
  background: #fcf1bb;
  color: #a37c03;
}
.cookie-modal h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.3rem;
  color: var(--rk-primary);
  margin-bottom: 9px;
}
.cookie-modal__list {
  margin: 0 0 5px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cookie-modal__item {
  display: flex;
  align-items: center;
  gap: 19px;
}
.cookie-modal__label {
  flex: 1 1 100px;
  font-size: 1.02rem;
}
.cookie-toggle {
  width: 38px;
  height: 22px;
  border-radius: 14px;
  background: var(--rk-metal);
  appearance: none;
  position: relative;
  outline: none;
  margin: 0 0 0 10px;
  cursor: pointer;
  transition: background 0.22s;
}
.cookie-toggle:checked {
  background: var(--rk-accent);
}
.cookie-toggle::before {
  content: '';
  display: block;
  position: absolute;
  left: 2px;
  top: 2px;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.22s;
  box-shadow: 0 1.5px 6px 0 rgba(60,60,60,0.13);
}
.cookie-toggle:checked::before {
  transform: translateX(16px);
}
.cookie-category--essential {
  color: #90989b;
}

.cookie-modal__footer {
  display: flex;
  gap: 14px;
  margin-top: 11px;
  flex-wrap: wrap;
}
.cookie-modal__footer .cookie-btn {
  font-size: .98rem;
  padding: 7px 16px;
}
@media (max-width: 480px) {
  .cookie-modal { padding: 16px 7px; }
  .cookie-modal__close { font-size: 1.3rem; top: 7px; right: 7px; }
}

/* -------------------- MISC ELEMENTS -------------------- */
::-moz-selection { background: var(--rk-accent); color: var(--rk-primary); }
::selection { background: var(--rk-accent); color: var(--rk-primary); }

/* ------ Utilities: spacing for classic card and testimonial layouts ----- */
.card, .testimonial-card, .team-bio, .faq-item {
  margin-bottom: 20px;
}

/* Responsive hiding utility for accessibility (skip links etc.) */
.sr-only { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; }

/* ------------------------------------------ */
/* === END CSS === */
