/* OscilloVerse Minimalist Flexbox CSS */
/* --- CSS RESET & BASE STYLES --- */
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;
}

article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  font-family: 'Open Sans', Arial, sans-serif;
  background: #FFF;
  color: #181B20;
  min-height: 100vh;
  font-size: 16px;
}
img, svg {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #0C2340;
  text-decoration: none;
  transition: color 0.15s;
}
a:hover, a:focus {
  color: #F9B233;
  outline: none;
  text-decoration: underline;
}
ul, ol {
  list-style: none;
}
button {
  font-family: inherit;
  background: none;
  border: none;
  cursor: pointer;
  outline: none;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #0C2340;
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
  line-height: 1.1;
}
h1 { font-size: 2.5rem; margin-bottom: 16px; }
h2 { font-size: 2rem;  margin-bottom: 12px; }
h3 { font-size: 1.35rem; margin-bottom: 8px; }
h4, h5, h6 { font-size: 1rem; }
p, ul, ol, li { font-size: 1rem; color: #22242C; }

strong { font-weight: 600; }

.container {
  width: 100%;
  max-width: 1190px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

/* Section Spacing */
.section, section {
  margin-bottom: 60px;
  padding: 40px 0 40px 0;
}

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

/* --- HEADER & NAVIGATION --- */
header {
  background: #FFF;
  border-bottom: 1px solid #E3E6ED;
  box-shadow: 0 2px 8px rgba(12,35,64,0.04);
  position: sticky;
  top: 0;
  z-index: 100;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
  padding: 0 0;
}
.main-nav > a > img {
  height: 43px;
  width: auto;
}
.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}
.nav-links a {
  font-family: 'Open Sans', Arial, sans-serif;
  color: #22242C;
  font-size: 1rem;
  font-weight: 400;
  transition: color 0.2s;
  padding: 4px 0;
}

.nav-links a:hover, .nav-links a:focus {
  color: #F9B233;
}
.cta-btn {
  display: inline-block;
  background: #0C2340;
  color: #FFF;
  border-radius: 27px;
  padding: 10px 32px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  box-shadow: 0 3px 12px rgba(12,35,64,0.05);
  transition: background 0.15s, box-shadow 0.2s, color 0.2s, transform 0.13s;
  border: none;
  letter-spacing: 0.05em;
  margin-left: 12px;
}
.cta-btn:hover, .cta-btn:focus {
  background: #F9B233;
  color: #0C2340;
  box-shadow: 0 6px 16px rgba(249,178,51,0.14);
  transform: translateY(-2px) scale(1.025);
  text-decoration: none;
}

/* --- MOBILE NAV --- */
.mobile-menu-toggle {
  display: none;
  background: #FFF;
  border-radius: 7px;
  font-size: 2rem;
  color: #0C2340;
  margin-left: 8px;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid #E3E6ED;
  transition: background 0.2s;
  z-index: 106;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #F9B233;
  color: #0C2340;
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0; height: 100vh; width: 100vw;
  background: rgba(22, 28, 38, 0.97);
  z-index: 120;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  transform: translateX(-100vw);
  transition: transform 0.35s cubic-bezier(.7,.2,.38,.92);
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  background: none;
  color: #F9B233;
  font-size: 2rem;
  align-self: flex-end;
  margin: 20px 24px 16px 0;
  padding: 4px 8px;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
}
.mobile-menu-close:hover { color: #FFF; }

.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  gap: 14px;
  padding: 32px 36px;
}
.mobile-nav a {
  color: #FFF;
  font-size: 1.25rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  margin-bottom: 6px;
  transition: color 0.15s, background 0.18s;
  padding: 10px 0;
  width: 100%;
  border-radius: 6px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #22242C;
  color: #F9B233;
}

@media (max-width: 1000px) {
  .main-nav .nav-links {
    display: none;
  }
  .cta-btn { display: none; }
  .mobile-menu-toggle {
    display: flex;
    position: relative;
    margin-right: 16px;
  }
}
@media (min-width: 1001px) {
  .mobile-menu, .mobile-menu-toggle { display: none !important; }
}


/* --- HERO SECTION --- */
.hero {
  background: #F8F9FB;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
}
.hero .container {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 44px 20px;
}
.hero .content-wrapper {
  align-items: flex-start;
  max-width: 640px;
  gap: 14px;
}
.hero h1 {
  font-size: 2.6rem;
  color: #0C2340;
  margin-bottom: 10px;
}
.hero p {
  font-size: 1.18rem;
  color: #262B32;
  margin-bottom: 18px;
}

@media (max-width: 900px) {
  .hero { min-height: 220px; }
  .hero .container { padding: 22px 10px; }
  .hero .content-wrapper { max-width: 98vw; }
  .hero h1 { font-size: 2rem; }
}

/* --- FEATURES, CARDS, SERVICES, GRIDS --- */
.features, .services-overview, .courses-list {
  background: #FFF;
}
.features .content-wrapper, .services-overview .content-wrapper { gap: 32px; }

.feature-grid, .methodology-icons,
.benefit-icons, .corporate-benefits-grid,
.trainer-bios, .coaching-packages, .service-list, .service-grid, .learning-outcomes, .resource-list, .workshop-details-list {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: flex-start;
  align-items: stretch;
}
.feature-grid li, .methodology-icons div, .benefit-icons div, .corporate-benefits-grid div, .trainer-card, .package, .service-item, .service-card {
  background: #FFF;
  border-radius: 14px;
  box-shadow: 0 1.5px 12px 0 rgba(21,35,57,0.04);
  padding: 32px 26px 24px 26px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  min-width: 215px;
  flex: 1 1 260px;
  margin-bottom: 20px;
  transition: box-shadow 0.17s, transform 0.14s, border 0.18s;
  border: 1px solid #F5F5F8;
}
.feature-grid img, .methodology-icons img, .benefit-icons img, .corporate-benefits-grid img, .resource-list img, .learning-outcomes img {
  height: 42px;
  width: 42px;
  margin-bottom: 12px;
  filter: grayscale(0.2) opacity(0.95);
}
.feature-grid li:hover,
.methodology-icons div:hover,
.benefit-icons div:hover,
.corporate-benefits-grid div:hover,
.trainer-card:hover,
.package:hover,
.service-card:hover,
.service-item:hover {
  box-shadow: 0 6px 22px rgba(21,35,57,0.11);
  transform: translateY(-3px) scale(1.02);
  border: 1px solid #F9B23333;
}

.features ul, .learning-outcomes, .resource-list, .workshop-details-list {
  padding-left: 0;
  width: 100%;
  gap: 24px;
}
.features ul li, .resource-list li, .learning-outcomes li, .workshop-details-list li {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 20px;
  background: #FFF;
  border: none;
  box-shadow: 0 0.5px 4px 0 rgba(12,35,64,0.02);
  border-radius: 10px;
  padding: 18px 17px 14px 17px;
}

/* Card containers and alignment */
.card-container, .card-grid, .testimonial-list, .content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.card, .service-card, .trainer-card, .package {
  margin-bottom: 20px;
  position: relative;
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .content-grid, .card-container, .card-grid, .testimonial-list {
    gap: 12px;
    flex-direction: column;
    align-items: stretch;
  }
  .text-image-section {
    flex-direction: column !important;
    gap: 20px;
    align-items: flex-start;
  }
  .feature-grid, .service-grid, .service-list, .methodology-icons, .trainer-bios, .coaching-packages, .corporate-benefits-grid {
    gap: 14px;
    flex-direction: column;
    align-items: stretch;
  }
}

/* Testimonials Layout */
.testimonials {
  background: #F6F7FA;
  padding: 40px 0;
}
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-card {
  background: #FFF;
  box-shadow: 0 4.5px 20px 0 rgba(12,35,64,0.07);
  border-radius: 18px;
  padding: 28px 22px;
  max-width: 370px;
  flex: 1 1 300px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  transition: box-shadow 0.16s, transform 0.13s;
  border: 1px solid #E3E6ED;
}
.testimonial-card:hover {
  box-shadow: 0 11px 38px 0 rgba(12,35,64,0.18);
  transform: translateY(-4px);
}
.testimonial-card p {
  font-size: 1.07rem;
  color: #0C2340;
  font-family: 'Open Sans', Arial, sans-serif;
}
.testimonial-card strong {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #181B20;
  font-size: 1rem;
}
.star-rating {
  font-size: 1.18rem;
  color: #F9B233;
  letter-spacing: 2px;
}

@media (max-width: 900px) {
  .testimonial-list, .testimonials .content-wrapper {
    gap: 10px;
    flex-direction: column;
    align-items: stretch;
  }
  .testimonial-card {
    max-width: 98vw;
  }
}

/* --- Services Grid --- */
.service-grid, .service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.service-card {
  background: #FFF;
  border-radius: 16px;
  box-shadow: 0 1.5px 14px 0 rgba(12,35,64,0.05);
  padding: 28px 22px 22px 22px;
  min-width: 220px;
  flex: 1 1 285px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
  border: 1px solid #F5F5F8;
  transition: box-shadow 0.16s, transform 0.13s;
}
.service-card:hover {
  box-shadow: 0 7px 19px rgba(12, 35, 64, 0.10);
  transform: translateY(-3px) scale(1.017);
  border: 1px solid #F9B23355;
}
.service-price, .price {
  color: #F9B233;
  font-weight: 600;
  font-size: 1.09rem;
  margin-bottom: 4px;
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 0.03em;
}
.details {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 8px;
}
.details a {
  padding: 7px 20px;
}

/* Cards of team, packages, bios */
.trainer-bios, .coaching-packages {
  gap: 24px;
}
.trainer-card, .package {
  min-width: 220px;
  flex: 1 1 265px;
}
.credentials-list ul {
  margin-top: 18px;
  list-style: disc inside;
  padding-left: 0;
  color: #0C2340;
}
.credentials-list li {
  margin-bottom: 8px;
  font-weight: 400;
}


/* --- CTA Banner Section --- */
.cta-banner {
  background: #0C2340;
  color: #FFF;
  text-align: center;
  padding: 54px 0 54px 0;
  margin-bottom: 0 !important;
}
.cta-banner h2, .cta-banner p {
  color: #FFF;
  margin-bottom: 12px;
}
.cta-banner .cta-btn {
  background: #F9B233;
  color: #0C2340;
  margin-left: 0;
}
.cta-banner .cta-btn:hover, .cta-banner .cta-btn:focus {
  background: #FFF;
  color: #0C2340;
  box-shadow: 0 5px 18px rgba(12,35,64,0.10);
}

@media (max-width: 800px) {
  .cta-banner { padding: 32px 0; }
}

/* --- Footer --- */
footer {
  background: #F8F9FB;
  padding: 32px 0 0 0;
  border-top: 1px solid #E3E6ED;
}
.footer-menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
  margin-bottom: 22px;
  font-family: 'Montserrat', Arial, sans-serif;
}
.footer-menu a {
  color: #0C2340;
  font-size: 0.97rem;
  letter-spacing: 0.01em;
  line-height: 1;
  transition: color 0.17s;
}
.footer-menu a:hover { color: #F9B233; }
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  padding-bottom: 18px;
}
.footer-brand img {
  height: 42px;
  margin-bottom: 7px;
}
.footer-brand p {
  font-size: 0.97rem;
  color: #646A73;
}

/* --- Legal Pages Styles --- */
.legal .content-wrapper {
  gap: 25px;
}

.legal h1, .legal h2 {
  color: #0C2340;
  margin-bottom: 10px;
}
.legal ul {
  padding-left: 20px;
  margin-bottom: 18px;
  color: #22242C;
}
.legal li {
  margin-bottom: 9px;
  list-style: disc inside;
}


/* --- Company Info, Contact --- */
.contact-details .company-info {
  margin-bottom: 16px;
  padding-left: 0;
}
.company-info li {
  margin-bottom: 8px;
  color: #0C2340;
  font-size: 1.04rem;
}
.company-info a {
  color: #F9B233;
}

/* --- Utility Classes --- */
.text-center { text-align: center; }
.text-right { text-align: right; }
.w-100 { width: 100%; }
.mt-16 { margin-top: 16px; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }

/* --- Cookie Consent Banner --- */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0;
  width: 100vw;
  background: #0C2340;
  color: #FFF;
  z-index: 130;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 18px 14px;
  box-shadow: 0 -4px 18px rgba(12,35,64,0.08);
  gap: 32px;
  font-size: 1rem;
  transition: transform 0.37s cubic-bezier(.60,.08,.19,1);
}
.cookie-banner.hide {
  transform: translateY(120%);
}
.cookie-banner .cookie-message {
  flex: 2;
  min-width: 160px;
  margin-right: 12px;
  color: #F5F5F8;
}
.cookie-banner .cookie-actions {
  flex: none;
  display: flex;
  gap: 18px;
  align-items: center;
}
.cookie-btn, .cookie-settings-btn {
  background: #F9B233;
  color: #0C2340;
  border: none;
  border-radius: 21px;
  padding: 7px 22px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  margin-left: 0;
  cursor: pointer;
  transition: background 0.19s, color 0.15s, box-shadow 0.16s;
  box-shadow: 0 1.5px 6px rgba(249,178,51,0.13);
}
.cookie-btn:hover, .cookie-settings-btn:hover {
  background: #FFF;
  color: #0C2340;
}
.cookie-btn.reject {
  background: #E3E6ED;
  color: #0C2340;
  box-shadow: none;
}
.cookie-btn.reject:hover {
  background: #c4c6cb;
  color: #0C2340;
}

/* --- Cookie Settings Modal --- */
.cookie-modal-overlay {
  position: fixed;
  top:0; left:0;
  width: 100vw; height:100vh;
  background: rgba(18,21,29,0.70);
  z-index: 140;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s cubic-bezier(.77,0,.18,1.02);
}
.cookie-modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  background: #FFF;
  color: #14161B;
  border-radius: 15px;
  box-shadow: 0 4px 44px 0 rgba(12,35,64,0.23);
  padding: 40px 34px;
  max-width: 420px;
  width: 92vw;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 24px;
  position: relative;
  animation: modal-in 0.35s cubic-bezier(.77,0,.18,1.02) 1;
}
@keyframes modal-in {
  from { opacity: 0; transform: scale(0.89) translateY(40px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
.cookie-modal .close-modal {
  position: absolute;
  top: 13px; right: 17px;
  background: none;
  border: none;
  color: #22242C;
  font-size: 1.7rem;
  cursor: pointer;
  transition: color 0.13s;
}
.cookie-modal .close-modal:hover {
  color: #F9B233;
}
.cookie-modal h3 {
  color: #0C2340;
  margin-bottom: 10px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: flex-start;
  gap: 17px;
  margin-bottom: 9px;
  padding: 12px 0;
}
.cookie-modal .cookie-category label {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1.01rem;
  font-weight: 500;
  color: #181B20;
}
.cookie-modal .cookie-switch {
  position: relative;
  width: 40px; height: 22px;
}
.cookie-modal .cookie-switch input {
  opacity: 0;
  width: 0; height: 0;
}
.cookie-modal .slider {
  position: absolute;
  cursor: pointer;
  background: #E3E6ED;
  border-radius: 16px;
  top: 0; left: 0; right: 0; bottom: 0;
  transition: background 0.2s;
  height: 22px; width: 40px;
}
.cookie-modal .slider:before {
  content: '';
  position: absolute;
  left: 2px;
  top: 2px;
  width: 18px;
  height: 18px;
  background: #FFF;
  border-radius: 50%;
  transition: transform 0.18s;
  box-shadow: 0 1px 4px #0001;
}
.cookie-modal .cookie-switch input:checked + .slider {
  background: #F9B233;
}
.cookie-modal .cookie-switch input:checked + .slider:before {
  transform: translateX(18px);
}
.cookie-modal .cookie-category .details {
  color: #646A73;
  font-size: 0.94rem;
  font-weight: 400;
  margin-left: 8px;
}
.cookie-modal .essential-switch .slider {
  background: #E3E6ED;
}
.cookie-modal .essential-switch .slider:after {
  content: '✓';
  position: absolute;
  right: 8px; top: 2px;
  color: #F9B233;
  font-size: 1.16rem;
  font-weight: 600;
}
.cookie-modal .essential-switch input { display: none; }
.cookie-modal .essential-switch .slider { background: #D3D6DD !important; pointer-events: none; }
.cookie-modal .essential-switch .slider:before { background: #F9B233; }
.cookie-modal .essential-switch .slider:after { display: block; }
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 14px;
  margin-top: 14px;
}
.cookie-modal .cookie-btn {
  min-width: 110px;
}

@media (max-width: 600px) {
  .cookie-modal { padding: 22px 10px; }
  .cookie-banner { gap: 10px; font-size: 0.99rem; }
}

/* --- Animations for interactive elements --- */
.cta-btn, .service-card, .feature-grid li, .testimonial-card,
.package, .trainer-card, .cookie-btn, .cookie-settings-btn, .mobile-nav a {
  transition: box-shadow 0.17s, transform 0.14s, border 0.18s, background 0.18s, color 0.15s;
}

/*--- Custom scrollbar for mobile nav and modals ---*/
.mobile-menu, .cookie-modal {
  scrollbar-width: thin;
  scrollbar-color: #F9B233 #E3E6ED;
}
.mobile-menu::-webkit-scrollbar,
.cookie-modal::-webkit-scrollbar {
  width: 5px;
}
.mobile-menu::-webkit-scrollbar-thumb,
.cookie-modal::-webkit-scrollbar-thumb {
  background: #F9B233;
  border-radius: 10px;
}
.mobile-menu::-webkit-scrollbar-track,
.cookie-modal::-webkit-scrollbar-track {
  background: #E3E6ED;
}

/* --- Accessibility focus outlines --- */
a:focus, button:focus, .cta-btn:focus, .mobile-nav a:focus {
  outline: 2px solid #F9B233;
  outline-offset: 2px;
}

/* --- Spacing Utilities for Cards/Sections --- */
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container, .card-grid, .testimonial-list, .content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card, .service-card, .trainer-card, .package {
  margin-bottom: 20px;
  position: relative;
}
.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;
}

/* --- THANK YOU and other accent sections --- */
.thank-you {
  background: #F6F7FA;
  text-align: center;
  padding: 60px 0 46px 0;
}
.thank-you .cta-btn {
  margin-top: 16px;
}

/* --- Hide visually hidden (for cookie banner etc) --- */
.visually-hidden {
  position: absolute !important;
  height: 1px; width: 1px;
  overflow: hidden;
  clip: rect(1px,1px,1px,1px);
  white-space: nowrap;
}

/* --- Responsive font scale --- */
@media (max-width: 600px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.42rem; }
  .cta-btn, .service-card, .feature-grid li, .testimonial-card {
    font-size: 0.97rem;
  }
  .cookie-banner, .cookie-modal, .mobile-nav a {
    font-size: 1rem;
  }
}

/* --- END OF OSCILLOVERSE CSS --- */
