/* 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;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  min-height: 100dvh;
  font-family: 'Lato', Arial, sans-serif;
  font-size: 16px;
  background: #F1F4F8;
  color: #21304C;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
* {
  box-sizing: border-box;
}
ul, ol {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  outline: none;
  transition: color 0.15s;
}
img {
  max-width: 100%;
  display: block;
}
button {
  border: none;
  background: none;
  font-family: inherit;
  cursor: pointer;
  padding: 0;
}
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  position: relative;
}
@media (max-width: 768px) {
  section {
    padding: 28px 10px;
    margin-bottom: 36px;
  }
}
.container {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 12px;
  width: 100%;
  box-sizing: border-box;
}

/* BRAND COLORS (for vibrant energetic accents) */
:root {
  --color-primary: #21304C;
  --color-secondary: #F1F4F8;
  --color-accent: #E6B052;
  --color-hot-magenta: #E84592;
  --color-cyan: #00C9C8;
  --color-electric-blue: #197EFF;
  --color-lime: #AFE315;
  --color-warning: #FF725C;
}


/****************************
 * TYPOGRAPHY
 ***************************/
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 16px;
  color: var(--color-primary);
}
h1 {
  font-size: 2.8rem;
  color: var(--color-electric-blue);
  margin-bottom: 18px;
  text-shadow: 2px 4px 18px rgba(0,160,212,0.10);
}
h2 {
  font-size: 2rem;
  color: var(--color-hot-magenta);
  margin-bottom: 14px;
}
h3 {
  font-size: 1.3rem;
  color: var(--color-primary);
  margin-bottom: 12px;
}
h4, h5, h6 {
  font-size: 1.1rem;
  color: var(--color-primary);
}
p, ul li, ol li {
  font-family: 'Lato', Arial, sans-serif;
  font-size: 1rem;
  color: var(--color-primary);
  margin-bottom: 10px;
}
p:last-child, ul li:last-child, ol li:last-child {
  margin-bottom: 0;
}
strong, b {
  font-weight: 700;
}

/* Responsive Type */
@media (max-width: 480px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.4rem; }
  h3 { font-size: 1.1rem; }
}


/****************************
 * LAYOUT & FLEX UTILITIES
 ***************************/
.card-container, .content-grid, .content-wrapper, .features, .footer-top, .footer-bottom, .testimonials .content-wrapper, .section .content-wrapper, .team .content-wrapper, .about-story .content-wrapper, .about-values .content-wrapper, .services-list .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.content-grid {
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .card-container, .content-grid, .content-wrapper, .features, .footer-top, .footer-bottom, .testimonials .content-wrapper, .section .content-wrapper, .team .content-wrapper, .about-story .content-wrapper, .about-values .content-wrapper, .services-list .content-wrapper {
    flex-direction: column;
    gap: 20px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}
.card {
  margin-bottom: 20px;
  position: relative;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: 24px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 28px rgba(46,210,248,0.12);
  min-width: 270px;
  max-width: 450px;
  min-height: 140px;
  margin-bottom: 20px;
  border-left: 5px solid var(--color-hot-magenta);
  transition: box-shadow 0.25s, border-color 0.20s;
}
.testimonial-card blockquote {
  color: var(--color-primary);
  font-size: 1.04rem;
  font-style: italic;
}
.testimonial-meta {
  color: var(--color-hot-magenta);
  font-weight: bold;
  font-size: 0.95rem;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 16px 48px rgba(46,210,248,0.17);
  border-left: 5px solid var(--color-electric-blue);
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 16px;
}

@media (max-width: 768px) {
  .testimonial-card {
    min-width: 0;
    max-width: 100%;
  }
}

/****************************
 * NAVIGATION BAR
 ***************************/
header {
  background: #fff;
  box-shadow: 0 2px 16px rgba(33,48,76,0.04);
  position: relative;
  z-index: 850;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
}
.main-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.main-nav li {
  display: flex;
  align-items: center;
}
.main-nav a img {
  height: 48px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: var(--color-primary);
  padding: 6px 10px;
  border-radius: 6px;
  transition: background .16s, color .15s;
}
.main-nav ul a:hover, .main-nav ul a:focus {
  background: var(--color-electric-blue);
  color: #fff;
}
.main-nav .cta-btn {
  margin-left: 16px;
}

/* CTA BUTTON STYLE */
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--color-accent);
  color: var(--color-primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  font-size: 1rem;
  letter-spacing: .02em;
  padding: 12px 30px;
  border-radius: 30px;
  box-shadow: 0 6px 18px rgba(232,69,146,0.10);
  border: 2px solid transparent;
  transition: background .15s, color .15s, border-color .18s, box-shadow .25s;
  cursor: pointer;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--color-hot-magenta);
  color: #fff;
  border-color: var(--color-accent);
  box-shadow: 0 0px 36px 4px rgba(33,48,76,0.06);
}

/* Hamburger (mobile menu) */
.mobile-menu-toggle {
  display: none;
  font-size: 2.3rem;
  color: var(--color-hot-magenta);
  background: #fff;
  border: 2px solid var(--color-electric-blue);
  border-radius: 10px;
  padding: 7px 18px;
  margin-left: auto;
  margin-right: 8px;
  z-index: 1101;
  transition: border-color .14s, background .17s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  border-color: var(--color-hot-magenta);
  background: var(--color-secondary);
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: fixed;
  z-index: 1100;
  background: #fff;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  transform: translateX(-100vw);
  opacity: 0;
  transition: transform 0.44s cubic-bezier(.7,0,.3,1), opacity 0.27s cubic-bezier(.7,0,.3,1);
  box-shadow: 0 0 60px 4px rgba(33,48,76,.10);
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2.7rem;
  color: var(--color-hot-magenta);
  background: none;
  border: none;
  margin: 22px 20px 12px 0;
  cursor: pointer;
  border-radius: 8px;
  transition: color .13s, background .14s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--color-electric-blue);
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  gap: 26px;
  padding: 22px 32px 0 32px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-primary);
  padding: 9px 0 9px 8px;
  border-radius: 6px;
  width: 100%;
  transition: background .11s, color .15s;
  margin-bottom: 1px;
  box-sizing: border-box;
}
.mobile-nav a:active, .mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-hot-magenta);
  color: #fff;
}

@media (max-width: 1080px) {
  .main-nav ul {
    gap: 12px;
  }
}
@media (max-width: 900px) {
  .main-nav ul {
    gap: 8px;
  }
}
@media (max-width: 900px) {
  .main-nav ul {
    display: none;
  }
  .main-nav .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 901px) {
  .mobile-menu,
  .mobile-menu-toggle {
    display: none !important;
  }
}

/****************************
 * HERO SECTIONS
 ***************************/
.hero {
  display: flex;
  background: linear-gradient(90deg, #E6B052 0%, #197EFF 98%);
  background-size: 205% 100%;
  background-position: right center;
  border-radius: 0 0 36px 36px;
  box-shadow: 0 0px 80px -24px rgba(33,48,76,0.25);
  min-height: 350px;
  padding-top: 70px;
  position: relative;
}
.hero .container {
  width: 100%;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 180px;
  gap: 22px;
}
.hero h1, .hero p {
  color: #fff;
}
.hero h1 {
  text-shadow: 0 6px 28px rgba(33,48,76,0.16);
  font-size: 2.8rem;
  margin-bottom: 16px;
  color: #fff;
  letter-spacing: -2px;
}
.hero p {
  font-size: 1.25rem;
  letter-spacing: .01em;
  margin-bottom: 5px;
}
.hero .cta-btn {
  background: #fff;
  color: var(--color-hot-magenta);
  border: 2px solid var(--color-hot-magenta);
}
.hero .cta-btn:hover, .hero .cta-btn:focus {
  background: var(--color-hot-magenta);
  color: #fff;
  border-color: #fff;
}
@media (max-width: 700px) {
  .hero {
    padding-top: 30px;
    min-height: 170px;
    border-radius: 0 0 18px 18px;
    background-size: 340% 100%;
  }
  .hero h1 {
    font-size: 1.8rem;
  }
  .hero .content-wrapper {
    gap: 12px;
    min-height: 90px;
  }
}

/****************************
 * LISTS & FEATURES
 ***************************/
.features .content-wrapper ul,
.section .content-wrapper ul,
.product-features .content-wrapper ul,
.features-list ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.features .content-wrapper ul li::before,
.section .content-wrapper ul li::before,
.product-features .content-wrapper ul li::before {
  content: "★";
  color: var(--color-lime);
  margin-right: 8px;
  font-size: 1.2em;
  vertical-align: middle;
  font-family: 'Montserrat', Arial, sans-serif;
}
.features .content-wrapper ul li,
.section .content-wrapper ul li,
.product-features .content-wrapper ul li {
  font-size: 1.05rem;
  color: var(--color-primary);
  font-weight: 500;
}

/****************************
 * SERVICES & CARDS
 ***************************/
.service-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 28px rgba(33,48,76,0.12);
  padding: 28px 22px 22px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 260px;
  max-width: 460px;
  margin-bottom: 20px;
  gap: 8px;
  border-left: 7px solid var(--color-electric-blue);
  transition: box-shadow .23s, border-color .18s, transform .16s;
  position: relative;
}
.service-card h3 {
  color: var(--color-electric-blue);
  margin-bottom: 6px;
}
.service-card span {
  font-size: 1.18rem;
  margin-top: 10px;
  color: var(--color-hot-magenta);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
}
.service-card:hover, .service-card:focus-within {
  box-shadow: 0 16px 42px rgba(33,48,76,0.20);
  border-left: 7px solid var(--color-hot-magenta);
  transform: translateY(-3px) scale(1.022);
}
@media (max-width: 768px) {
  .service-card {
    min-width: 0;
    max-width: 100%;
    padding: 18px 10px 16px 10px;
  }
}

/****************************
 * CTA BANNER
 ***************************/
.cta-banner {
  background: var(--color-lime);
  color: #21304C;
  border-radius: 20px;
  box-shadow: 0 6px 28px rgba(175,227,21,0.11);
  text-align: center;
  padding: 44px 16px;
}
.cta-banner h2 {
  color: var(--color-electric-blue);
}
.cta-banner .cta-btn {
  margin-top: 16px;
  background: var(--color-hot-magenta);
  color: #fff;
  border: 2px solid #fff;
}
.cta-banner .cta-btn:hover {
  background: #fff;
  color: var(--color-hot-magenta);
  border-color: var(--color-hot-magenta);
}

/****************************
 * FOOTER
 ***************************/
footer {
  background: var(--color-primary);
  color: #fff;
  padding: 0 0 0 0;
  position:relative;
}
.footer-top, .footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 24px 0 10px 0;
}
.footer-top img {
  height: 42px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  opacity: .82;
  transition: opacity .22s, color .2s;
}
.footer-nav a:hover, .footer-nav a:focus {
  opacity: 1;
  color: var(--color-accent);
}
.footer-bottom {
  font-size: 0.98rem;
  border-top: 1px solid rgba(241,244,248,.075);
  padding: 16px 0 16px 0;
}
.company-info p {
  color: #fff;
  margin-bottom: 6px;
}
.company-info a {
  color: var(--color-accent);
  text-decoration: underline;
}
.social-icons {
  display: flex;
  gap: 18px;
}
.social-icons img {
  width: 28px; height: 28px;
  filter: brightness(85%) drop-shadow(0px 2px 5px rgba(175,227,21,0.05));
  transition: filter .18s;
}
.social-icons img:hover {
  filter: brightness(112%) drop-shadow(0 0 8px #E6B05299);
}
@media (max-width: 760px) {
  .footer-top, .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
    align-items: center;
  }
  .footer-nav {
    justify-content: center;
    gap: 12px;
  }
}

/****************************
 * SECTIONS: About, Contact, Support
 ***************************/
.about, .about-story, .about-values, .team, .product-features, .course-list, .support-services, .contact, .directions, .confirmation {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 1px 10px rgba(33,48,76,0.10);
}
.text-section ul, .contact-info-snippet ul, .contact-details-block ul, .contact-info ul {
  margin-top: 10px;
  margin-bottom: 13px;
}
.text-section ul li, .contact-info-snippet ul li, .contact-details-block ul li, .contact-info ul li {
  color: var(--color-primary);
  margin-bottom: 8px;
}
@media (max-width: 640px) {
  .about, .about-story, .about-values, .team, .product-features, .course-list, .support-services, .contact, .directions, .confirmation {
    padding: 20px 3px;
    border-radius: 16px;
  }
}

/****************************
 * LEGAL/INFO TEXT BLOCKS
 ***************************/
.legal {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 1px 12px rgba(33,48,76,0.07);
  padding: 36px 20px 36px 20px;
}
.legal h1 {
  color: var(--color-hot-magenta);
}
.legal h2, .legal h3 {
  margin-top: 24px;
  color: var(--color-electric-blue);
}
@media (max-width: 480px) {
  .legal {
    border-radius: 11px;
    padding: 20px 6px 22px 6px;
  }
}

/****************************
 * CONTACT BRIEF SECTIONS
 ***************************/
.contact-brief, .consulting-callout {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 1px 10px rgba(33,48,76,0.09);
}
.contact-info-snippet {
  margin-bottom: 14px;
}

/****************************
 * COOKIE CONSENT BANNER & MODAL
 ***************************/
.cookie-banner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  position: fixed;
  bottom: 0; left: 0; right:0;
  width: 100vw;
  background: #21304C;
  color: #fff;
  box-shadow: 0 -2px 40px 0 rgba(33,48,76,0.13);
  padding: 18px 20px;
  z-index: 2200;
  gap: 16px;
  font-family: 'Lato', Arial, sans-serif;
  font-size: 1.05rem;
  transition: transform .35s, opacity .23s;
}
.cookie-banner.hide {
  pointer-events: none;
  opacity: 0;
  transform: translateY(100%);
}
.cookie-banner__text {
  flex: 2 1 260px;
}
.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}
.cookie-btn {
  background: var(--color-accent);
  color: #21304C;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 9px 16px;
  border-radius: 7px;
  border: none;
  margin-left: 0;
  transition: background .13s, color .13s;
  cursor: pointer;
  outline: none;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: var(--color-hot-magenta);
  color: #fff;
}
.cookie-btn.secondary {
  background: #fff;
  color: var(--color-primary);
  border: 1.5px solid var(--color-hot-magenta);
}
.cookie-btn.secondary:hover {
  background: var(--color-hot-magenta);
  color: #fff;
}

/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed;
  z-index: 2300;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: rgba(33,48,76,0.58);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .23s;
}
.cookie-modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  background: #fff;
  color: var(--color-primary);
  border-radius: 18px;
  max-width: 440px;
  min-width: 300px;
  width: 90vw;
  box-shadow: 0 6px 44px rgba(33,48,76,0.21);
  padding: 38px 28px 28px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  font-size: 1.08rem;
  animation: modalPopIn .34s cubic-bezier(.6,0,.3,1);
}
@keyframes modalPopIn {
  0% { transform: scale(0.75) translateY(70px); opacity: 0; }
  60% { transform: scale(1.04) translateY(-16px); opacity: .7; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal h2 {
  color: var(--color-electric-blue);
  font-size: 1.35rem;
  margin-bottom: 8px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 11px;
}
.cookie-category label {
  font-size: 1rem;
  font-weight: 600;
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--color-hot-magenta);
}
.cookie-category input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: var(--color-electric-blue);
}
.cookie-category.essential label {
  color: var(--color-lime);
}
.cookie-modal .cookie-btn {
  margin-top: 8px;
}
.cookie-modal-close {
  position: absolute;
  top: 14px; right: 18px;
  color: var(--color-hot-magenta);
  font-size: 2.1rem;
  background: none;
  border: none;
  padding: 1px 8px;
  border-radius: 8px;
  cursor: pointer;
  transition: background .16s, color .16s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: var(--color-electric-blue);
  color: #fff;
}
@media (max-width: 480px) {
  .cookie-modal {
      padding: 22px 8px 16px 8px;
      border-radius: 10px;
  }
}

/****************************
 * GENERAL TRANSITIONS
 ***************************/
section, .footer-top, .footer-bottom, .service-card, .cta-banner, .about, .about-story, .about-values, .team, .product-features, .course-list, .support-services, .contact, .directions {
  transition: box-shadow 0.2s, border-radius 0.21s;
}

/****************************
 * SMALL UTILS
 ***************************/
.gap-10 { gap: 10px; }
.gap-20 { gap: 20px; }
.mt-20 { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }
.mb-32 { margin-bottom: 32px; }
.text-center { text-align: center; }
.fs-18 { font-size: 1.125rem; }
.fs-20 { font-size: 1.25rem; }

/****************************
 * ACCESSIBILITY & FOCUS
 ***************************/
a:focus, button:focus {
  outline: 2px dashed var(--color-accent);
  outline-offset: 3px;
  z-index: 5;
}

/****************************
 * THANK YOU / CONFIRMATION
 ***************************/
.confirmation {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 22px rgba(33,48,76,0.13);
}
.confirmation h1 {
  color: var(--color-hot-magenta);
}
.confirmation p {
  margin-bottom: 20px;
}

/****************************
 * RESPONSIVE LAYOUT MEDIA QUERIES
 ***************************/
@media (max-width: 1100px) {
  .container { max-width: 97vw; }
}
@media (max-width: 900px) {
  .container { max-width: 99vw; }
}
@media (max-width: 480px) {
  html, body { font-size: 15px; }
  .cta-btn, .cookie-btn { font-size: 0.98rem; padding: 10px 17px; }
}

/****************************
 * PRINT
 ***************************/
@media print {
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal-overlay { display:none !important; }
  section { box-shadow:none !important; border:none !important; }
}

/* END CSS */
