/* 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%;
  vertical-align: baseline;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  height: 100%;
  background: #F5F7FA;
}

body {
  min-height: 100vh;
  background: #F5F7FA;
  font-family: 'Open Sans', Arial, sans-serif;
  color: #232834;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.01em;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: #B28E2E;
  text-decoration: none;
  transition: color .18s;
}

a:hover, a:focus {
  color: #EA6E32;
}

ul, ol {
  margin-left: 1.2em;
}

button {
  font-family: inherit;
  background: none;
  border: none;
  cursor: pointer;
  outline: none;
}

:focus {
  outline: 2px solid #B28E2E;
  outline-offset: 2px;
}

/* --------- BRAND COLOR PALETTE + PREMIUM ACCENTS --------- */
:root {
  --color-primary: #123B5D;
  --color-secondary: #F5F7FA;
  --color-white: #fff;
  --color-accent: #B04A16;
  --color-gold: #B28E2E;
  --color-black: #232834;
  --color-gray: #D6D9DF;
}

/* ----------- TYPOGRAPHY ----------- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700&family=Open+Sans:wght@400;600&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: var(--color-primary);
  letter-spacing: .01em;
}
h1 {
  font-size: 2.25rem;
  margin-bottom: 20px;
  line-height: 1.19;
}
h2 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  line-height: 1.2;
}
h3 {
  font-size: 1.125rem;
  margin-bottom: 16px;
  color: var(--color-accent);
  font-weight: 600;
}
h4, h5, h6 {
  font-size: 1rem;
  margin-bottom: 8px;
  color: var(--color-primary);
  font-weight: 600;
}

p, li {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  color: var(--color-black);
}

strong {
  font-weight: 700;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* --------- HEADER & NAVIGATION --------- */
header {
  width: 100%;
  background: var(--color-white);
  box-shadow: 0 2px 16px 0 rgba(0,0,0,0.04);
  position: relative;
  z-index: 20;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
  gap: 18px;
}
header img {
  height: 42px;
}
nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: var(--color-primary);
  font-weight: 600;
  letter-spacing: .02em;
  position: relative;
  transition: color .18s;
  padding: 4px 2px;
}
nav a:hover, nav a:focus {
  color: var(--color-gold);
}
.cta-btn {
  display: inline-flex;
  align-items: center;
  background: var(--color-gold);
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 28px;
  padding: 0.75em 1.8em;
  box-shadow: 0 4px 30px 0 rgba(178,142,46,0.07);
  border: none;
  text-shadow: 0 1px 2px rgba(50,50,15,0.08);
  letter-spacing: .03em;
  transition: background .16s, transform .1s;
  cursor: pointer;
  margin-left: 12px;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--color-accent);
  color: #fff;
  transform: translateY(-2px) scale(1.03);
}

/* Hamburger (mobile) menu button */
.mobile-menu-toggle {
  display: none;
  background: var(--color-gold);
  color: #fff;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 2rem;
  align-items: center;
  justify-content: center;
  border: none;
  box-shadow: 0 1px 8px rgba(178,142,46,0.11);
  transition: background .18s;
  z-index: 35;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--color-accent);
  color: #fff;
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(18,59,93,0.96);
  backdrop-filter: blur(3px);
  transform: translateX(-100vw);
  transition: transform 0.34s cubic-bezier(.68, -.55, .27, 1.55);
  z-index: 50;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 0 32px;
  overflow-y: auto;
  gap: 24px;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: var(--color-gold);
  color: #fff;
  font-size: 2rem;
  margin-top: 28px;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  border: none;
  box-shadow: 0 1px 8px rgba(178,142,46,0.12);
  transition: background .18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--color-accent);
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-top: 24px;
  gap: 18px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  transition: color .2s;
  letter-spacing: .04em;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--color-gold);
}

/* -------- HERO / SPLASH -------- */
.hero {
  background: linear-gradient(115deg, #fff 70%, #F5F7FA 100%);
  border-bottom: 1px solid #E7E9EF;
  padding-top: 48px;
  padding-bottom: 48px;
  margin-bottom: 60px;
}
.hero .container {
  align-items: center;
  justify-content: center;
  display: flex;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 22px;
  max-width: 650px;
}
.hero h1 {
  color: var(--color-primary);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.hero p {
  font-size: 1.2rem;
  color: var(--color-black);
  margin-bottom: 8px;
}

/* ----------- FLEX LAYOUTS ----------- */
.card-container, .card-grid, .features-grid, .courses-grid, .testimonial-grid, .articles-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border: 1px solid #E0E1E8;
  border-radius: 16px;
  box-shadow: 0 8px 20px 0 rgba(18,59,93,0.04);
  padding: 26px 22px;
  margin-bottom: 20px;
  transition: box-shadow .22s, transform .1s;
  min-width: 208px;
  min-height: 210px;
}
.feature-item img {
  width: 48px;
  height: 48px;
}
.feature-item h3 {
  color: var(--color-gold);
  font-size: 1.19rem;
}
.feature-item:hover, .feature-item:focus {
  box-shadow: 0 8px 40px 0 rgba(178,142,46,0.06);
  transform: translateY(-2px) scale(1.01);
}

/* -------- CARDS --------- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 14px;
  margin-bottom: 20px;
  box-shadow: 0 4px 24px rgba(18,59,93,0.07);
  padding: 28px 22px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: box-shadow .2s, border-color .2s, transform .13s;
  border: 1px solid #E0E1E8;
  min-width: 240px;
}
.card:hover, .card:focus {
  box-shadow: 0 10px 34px rgba(178,142,46,0.09);
  border-color: var(--color-gold);
  transform: translateY(-3px) scale(1.01);
}

/* --------- COURSE CARDS (kurser.html) ---------*/
.courses-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.course-card {
  background: #fff;
  border-radius: 14px;
  border: 1.5px solid #E6E2D4;
  min-width: 290px;
  flex: 1 1 310px;
  box-shadow: 0 4px 18px rgba(178,142,46,0.09);
  padding: 28px 22px 28px 25px;
  position: relative;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 11px;
  transition: transform .17s, box-shadow .2s, border-color .2s;
}
.course-card .badge {
  display: inline-block;
  background: var(--color-gold);
  color: #fff;
  font-size: .98rem;
  font-weight: 600;
  line-height: 1;
  border-radius: 14px;
  padding: 6px 16px;
  margin-bottom: 12px;
  letter-spacing: .04em;
}
.course-card h3 {
  color: var(--color-primary);
  margin-bottom: 6px;
}
.course-card ul {
  margin-top: 5px;
}
.course-card:hover {
  transform: translateY(-3px) scale(1.015);
  box-shadow: 0 12px 36px 0 rgba(178,142,46,0.11);
  border-color: var(--color-gold);
}


/* --------- TESTIMONIALS --------- */
.testimonial-card, .detailed-review {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border: 1px solid #E0E1E8;
  border-radius: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 22px 0 rgba(18,59,93,0.05);
  transition: box-shadow .17s, border .15s;
}
.testimonial-card:hover, .testimonial-card:focus, .detailed-review:hover, .detailed-review:focus {
  box-shadow: 0 8px 40px 0 rgba(178,142,46,0.06);
  border-color: var(--color-gold);
  z-index: 9;
}
.testimonial-author, .participant-story {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  color: var(--color-primary);
}
.testimonial-author strong, .participant-story strong {
  color: var(--color-accent);
  font-weight: 700;
}
.testimonial-author span, .rating-summary strong {
  color: var(--color-gold);
  font-size: 1.1em;
}
.rating-summary {
  font-size: 1.1rem;
  color: var(--color-black);
  margin-top: 18px;
}

.detailed-review {
  background: #FEFEFB;
  border: 1.5px solid #F6E5BE;
}

.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}

/* ------------- CTA SECTIONS ------------- */
.cta {
  background: linear-gradient(110deg, #fff 85%, #FDF2E0 100%);
  border-radius: 24px;
  padding: 40px 20px;
  margin-bottom: 60px;
  box-shadow: 0 4px 18px 0 rgba(178,142,46,0.04);
  border: 1.5px solid #F6E5BE;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta h2 {
  color: var(--color-primary);
  margin-bottom: 12px;
}
.cta .cta-btn {
  background: var(--color-accent);
  color: #fff;
  margin-top: 16px;
}
.cta .cta-btn:hover, .cta .cta-btn:focus {
  background: var(--color-gold);
  color: var(--color-primary);
}

/* ----------- CATEGORIES FILTER ----------- */
.categories-filter {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-size: .98rem;
}
.categories-filter span {
  color: var(--color-primary);
  font-weight: 700;
}
.categories-filter a {
  background: var(--color-gray);
  color: var(--color-primary);
  border-radius: 12px;
  padding: 4px 16px;
  transition: background 0.17s, color 0.17s;
}
.categories-filter a:hover, .categories-filter a:focus {
  background: var(--color-accent);
  color: #fff;
}

/* ----------- ARTICLES LIST --------- */
.articles-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.articles-list article {
  background: #fff;
  border: 1px solid #E0E1E8;
  border-radius: 14px;
  box-shadow: 0 2px 20px rgba(18,59,93,0.06);
  padding: 22px 20px;
  transition: box-shadow .18s, border-color .17s, transform .12s;
}
.articles-list article:hover {
  box-shadow: 0 6px 26px 0 rgba(178,142,46,0.09);
  border-color: var(--color-gold);
  transform: translateY(-2px) scale(1.01);
}
.articles-list h3 {
  font-size: 1.1rem;
}
.articles-list a {
  color: var(--color-accent);
  font-weight: 700;
  border-bottom: 1px solid var(--color-accent);
  padding-bottom: 1px;
  margin-top: 6px;
  display: inline-block;
}
.articles-list a:hover, .articles-list a:focus {
  color: var(--color-gold);
  border-color: var(--color-gold);
}

/* ----------- HIGHLIGHTED TIP --------- */
.highlighted-tip {
  background: #FEF9EC;
  border-left: 4px solid var(--color-gold);
  border-radius: 8px;
  padding: 18px 20px;
  margin: 20px 0 0 0;
  font-style: italic;
  color: var(--color-primary);
  font-size: 1.01rem;
}

/* ----------- ACCORDION FAQ ----------- */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 12px;
}
.faq-accordion h3 {
  cursor: pointer;
  color: var(--color-accent);
  margin-bottom: 2px;
  font-size: 1.05rem;
  transition: color .14s;
}
.faq-accordion h3:hover, .faq-accordion h3:focus {
  color: var(--color-gold);
  text-decoration: underline;
}
.faq-accordion p {
  margin-bottom: 6px;
  padding-left: 6px;
}
.search-faq {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.search-faq input[type="search"] {
  background: #F6F5EA;
  border: 1px solid #E0E1E8;
  border-radius: 9px;
  font-size: 1rem;
  padding: 7px 12px;
}

/* ----------- FOOTER --------- */
footer {
  background: var(--color-primary);
  color: #fff;
  padding-top: 44px;
  padding-bottom: 32px;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 34px;
}
.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-menu a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: .99rem;
  opacity: 0.88;
  margin-bottom: 1px;
  font-weight: 600;
  transition: color .14s, opacity .15s;
}
.footer-menu a:hover, .footer-menu a:focus {
  color: var(--color-gold);
  opacity: 1;
}
footer .contact-details {
  color: #F6E5BE;
  font-size: .97rem;
  font-family: 'Open Sans', Arial, sans-serif;
  margin-bottom: 2px;
}
footer .contact-details p {
  color: #F6E5BE;
}
footer .contact-details img {
  width: 18px;
  height: 18px;
  margin-right: 7px;
  vertical-align: -3px;
}
footer .social-links {
  display: flex;
  gap: 15px;
  align-items: center;
}
footer .social-links a {
  display: flex;
  background: #fff;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  transition: background .2s, box-shadow .18s;
  box-shadow: 0 2px 10px rgba(18,59,93,0.11);
}
footer .social-links a:hover, footer .social-links a:focus {
  background: var(--color-gold);
}
footer .social-links img {
  width: 18px; height: 18px;
}

/* ----------- LOCATION MAP ----------- */
.location-map {
  display: flex;
  align-items: center;
  gap: 11px;
  background: #FAF6EB;
  color: var(--color-primary);
  font-size: .99rem;
  border-radius: 10px;
  padding: 16px 12px;
  margin: 8px 0 0 0;
}
.location-map img {
  width: 26px; height: 26px;
  margin-right: 0;
}

/* -------- COOKIE CONSENT BANNER -------- */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #fffdfa;
  border-top: 2.5px solid var(--color-gold);
  color: #232834;
  padding: 24px 18px 18px 18px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  z-index: 110;
  box-shadow: 0 -4px 40px rgba(178,142,46,0.10);
  animation: cookieBannerFadeIn .6s cubic-bezier(.81, -0.04, .18, 1.19);
  font-family: 'Open Sans', Arial, sans-serif;
}
@keyframes cookieBannerFadeIn {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  font-size: 1rem;
  color: #232834;
  margin-bottom: 6px;
}
.cookie-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: 18px;
}
.cookie-btn {
  border-radius: 24px;
  border: none;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  padding: 7px 22px;
  cursor: pointer;
  transition: background .18s, color .16s, box-shadow .12s;
  box-shadow: 0 2px 10px rgba(18,59,93,0.10);
}
.cookie-btn.accept {
  background: var(--color-gold);
  color: #fff;
}
.cookie-btn.reject {
  background: #EAE5D7;
  color: var(--color-black);
}
.cookie-btn.settings {
  background: none;
  border: 1.5px solid var(--color-gold);
  color: var(--color-gold);
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: var(--color-accent);
  color: #fff;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #F7DCC6;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: var(--color-gold);
  color: #fff;
}

/* ---- Cookie Preferences Modal ---- */
.cookie-modal-backdrop {
  position: fixed;
  z-index: 200;
  inset: 0;
  background: rgba(18,59,93,.36);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cookieBackdropIn .4s cubic-bezier(.81, -0.04, .18, 1.19);
}
@keyframes cookieBackdropIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 70px 0 rgba(178,142,46,0.16);
  width: 98vw;
  max-width: 430px;
  padding: 38px 30px 30px 30px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: cookieModalZoom .45s cubic-bezier(.75,-0.11,.32,1.25);
}
@keyframes cookieModalZoom {
  from { transform: scale(.89); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.cookie-modal h2 {
  color: var(--color-gold);
  margin-bottom: 2px;
  font-size: 1.5rem;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  padding-bottom: 7px;
  border-bottom: 1px solid #EEE6C2;
}
.cookie-modal .cookie-category:last-child {
  border-bottom: none;
  margin-bottom: 0;
}
.cookie-modal .cookie-category label {
  font-weight: 600;
  font-family: 'Open Sans', Arial, sans-serif;
  color: var(--color-black);
}
.cookie-modal .toggle {
  width: 44px;
  height: 24px;
  background: #EAE5D7;
  border-radius: 16px;
  position: relative;
  transition: background .16s;
  display: inline-block;
  cursor: pointer;
}
.cookie-modal .toggle input {
  display: none;
}
.cookie-modal .toggle span {
  position: absolute;
  left: 2px;
  top: 2px;
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(10,10,10,0.08);
  transition: left .22s, background .14s;
}
.cookie-modal .toggle input:checked + span {
  left: 22px;
  background: var(--color-gold);
}
.cookie-modal .toggle input:disabled + span {
  background: #C9C2AA;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}
.cookie-modal .cookie-btn {
  min-width: 84px;
}

/* ----------- RESPONSIVE DESIGN ----------- */
@media (max-width: 1100px) {
  .container { max-width: 98vw; }
  header .container { max-width: 100vw; }
}
@media (max-width: 868px) {
  .features-grid, .courses-grid, .testimonial-grid, .card-container {
    gap: 14px;
  }
  .footer-menu {flex-direction: row; gap: 12px;}
  footer .content-wrapper {gap: 18px;}
}
@media (max-width: 768px) {
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.19rem; }
  .container { padding-left: 10px; padding-right: 10px; }
  .section { padding: 29px 8px; margin-bottom: 38px;}
  .card, .feature-item, .course-card, .testimonial-card {
    padding: 17px 8px;
    min-width: unset;
  }
  .card-content, .content-wrapper, .text-section {
    gap: 10px;
  }
  .cta { padding: 22px 6px; margin-bottom: 32px; border-radius: 10px; }
  .location-map { padding: 10px 6px; font-size: .94rem; }
  .hero { padding-top: 26px; padding-bottom: 26px; }
  .footer-menu {flex-direction: column; gap: 7px;}
}
@media (max-width: 650px) {
  header .container { gap: 6px; }
  nav { display: none; }
  .cta-btn { display: none; }
  .mobile-menu-toggle {
    display: flex;
  }
  .footer-menu {flex-direction: column;}
  footer .content-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
}
@media (max-width: 540px) {
  .hero .container, .content-wrapper, .courses-grid, .features-grid, .testimonial-grid, .card-container {
    flex-direction: column;
    align-items: stretch; 
    gap: 11px;
    padding: 0;
  }
  .card, .feature-item, .course-card, .testimonial-card, .detailed-review {
    min-width: 100%;
    margin-bottom: 12px;
    border-radius: 10px;
    padding: 10px 5px 13px 5px;
  }
  .cookie-banner { flex-direction: column; align-items: stretch; padding: 18px 8px 11px 8px; gap: 12px;}
  .cookie-actions { margin-left: 0; justify-content: flex-start; gap: 8px;}
  .cookie-modal { padding: 19px 7px 12px 7px; }
}

/* ----------- MISC MICRO-INTERACTIONS & TRANSITIONS ----------- */
button, .cta-btn, .cookie-btn, a {
  transition: background 0.18s, color 0.18s, box-shadow 0.15s, border-color 0.15s, transform 0.14s, opacity 0.14s;
}

::-webkit-scrollbar {
  width: 8px;
  background: #F5F7FA;
}
::-webkit-scrollbar-thumb {
  background: #E6E2D4;
  border-radius: 8px;
}

/* ----------- PREMIUM DETAILS & OVERRIDES ----------- */
.section, .about-brief, .rating-summary, .highlighted-tip {
  border-radius: 16px;
}
.features-grid {
  margin-top: 12px;
}

/* No content overlap ensures with spacing */
.card, .feature-item, .course-card, .testimonial-card, .section, .articles-list article {
  margin-bottom: 20px;
}

/* Hide the mobile menu and restore main header/nav at desktop */
@media (min-width: 651px) {
  .mobile-menu,
  .mobile-menu-toggle { display: none !important; }
  nav { display: flex !important; }
  .cta-btn { display: inline-flex !important; }
}

/* End of luxury_premium responsive flexbox CSS for Xarnet Power */
