/* RESET & BASE TYPOGRAPHY */
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 {
  box-sizing: border-box;
  scroll-behavior: smooth;
  font-size: 16px;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  color: #212D43;
  background: #fff;
  line-height: 1.6;
  min-height: 100vh;
  letter-spacing: 0.02em;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #212D43;
  letter-spacing: 0.02em;
  font-weight: 700;
}
h1 {
  font-size: 2.3rem;
  margin-bottom: 20px;
  line-height: 1.15;
}
h2 {
  font-size: 1.7rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}
h4, h5, h6 {
  font-size: 1rem;
  margin-bottom: 8px;
}
p, ul, ol {
  font-size: 1rem;
  margin-bottom: 16px;
}
strong {
  font-weight: 700;
}
em {
  font-style: italic;
}
a {
  color: #F5C842;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #212D43;
  text-decoration: underline;
}
ul, ol {
  padding-left: 22px;
}

/* BRAND COLORS AS CSS CUSTOM PROPERTIES */
:root {
  --primary: #212D43;
  --secondary: #7EC7A2;
  --accent: #F5C842;
  --neutral-bg: #fff;
  --neutral-light: #F7F9FC;
  --neutral-mid: #F0F3F6;
  --danger: #e14d4d;
  --shadow: 0 4px 24px rgba(33,45,67,0.08);
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 8px;
}

/* CONTAINER & LAYOUTS */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  position: relative;
  padding: 28px 24px;
  transition: box-shadow 0.2s;
}
.card:hover {
  box-shadow: 0 6px 36px rgba(33,45,67,0.16);
}
.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;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 24px 20px;
  margin-bottom: 24px;
  background: var(--neutral-light);
  border-radius: var(--radius-md);
  box-shadow: 0 3px 12px rgba(33,45,67,0.07);
  position: relative;
  transition: box-shadow 0.2s, background 0.2s;
}
.testimonial-card strong {
  color: var(--secondary);
  font-size: 1.08rem;
}
.testimonial-card p {
  color: #212D43;
  font-weight: 500;
}
.testimonial-card:hover {
  box-shadow: 0 8px 40px rgba(33,45,67,0.14);
  background: #fffde7;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--neutral-bg);
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 14px 0 rgba(33,45,67,0.07);
  padding: 24px 20px;
  width: 100%;
  max-width: 320px;
  transition: transform 0.2s, box-shadow 0.2s;
  min-height: 220px;
}
.feature-item img {
  height: 38px;
  width: 38px;
  border-radius: 50%;
}
.feature-item:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 6px 20px rgba(33,45,67,0.13);
}

/* HERO SECTION */
.hero {
  background: linear-gradient(90deg, #7EC7A2 0%, #F5C842 100%);
  padding: 54px 0 54px 0;
  border-radius: 0 0 44px 44px;
}
.hero .container { max-width: 950px; }
.hero h1 {
  color: var(--primary);
  font-size: 2.5rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 900;
  letter-spacing: 0.01em;
  margin-bottom: 14px;
  text-shadow: 0 2px 6px rgba(252,225,80,0.13);
}
.hero p {
  color: #212D43;
  font-size: 1.12rem;
}

/* NAVIGATION */
header {
  width: 100%;
  background: var(--neutral-bg);
  box-shadow: 0 2px 14px 0 rgba(33,45,67,0.06);
  padding: 0;
  z-index: 10;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px 14px 16px;
}
.logo img {
  height: 44px;
}
.desktop-nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
.desktop-nav a {
  position: relative;
  font-size: 1rem;
  letter-spacing: 0.02em;
  color: #212D43;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  padding: 4px 8px;
  border-radius: 3px;
  font-weight: 500;
  transition: color 0.14s, background 0.14s;
}
.desktop-nav a:hover,
.desktop-nav a:focus {
  color: var(--accent);
  background: var(--neutral-light);
}
.cta-button {
  background: var(--primary);
  color: #fff;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  padding: 10px 32px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
  border: none;
  cursor: pointer;
  margin-left: 20px;
  box-shadow: 0 1px 8px 0 rgba(33,45,67,0.10);
  transition: background 0.2s, color 0.2s, transform 0.15s;
}
.cta-button:hover,
.cta-button:focus {
  background: var(--accent);
  color: var(--primary);
  transform: translateY(-3px) scale(1.04);
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  color: var(--primary);
  background: none;
  border: none;
  padding: 6px 18px 6px 6px;
  cursor: pointer;
  position: fixed;
  top: 24px;
  right: 18px;
  z-index: 40;
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(33,45,67,0.97);
  z-index: 100;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  transform: translateX(100%);
  transition: transform 0.33s cubic-bezier(.4,1,.56,1), opacity 0.25s;
  opacity: 0;
  overflow-y: auto;
}
.mobile-menu.open {
  display: flex;
  opacity: 1;
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: var(--accent);
  font-size: 2.1rem;
  padding: 18px 18px 0 14px;
  align-self: flex-end;
  cursor: pointer;
  transition: color 0.2s;
  outline: none;
}
.mobile-menu-close:hover {
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  align-items: flex-start;
  margin-top: 32px;
  width: 100%;
  padding-left: 40px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.4rem;
  border-radius: 4px;
  padding: 7px 2px 7px 0;
  transition: background 0.16s, color 0.16s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: rgba(245,200,66,0.12);
  color: var(--accent);
}

/* SHOW/HIDE NAV - RESPONSIVE */
@media (max-width: 1024px) {
  .desktop-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 1025px) {
  .mobile-menu, .mobile-menu-toggle {
    display: none !important;
  }
}

/* SECTIONS, SPACING, CARDS */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  width: 100%;
}
.text-section {
  max-width: 720px;
}
.courses-list {
  margin-bottom: 20px;
  list-style: disc inside;
}
.courses-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.course-card {
  background: var(--neutral-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  min-width: 240px;
  max-width: 320px;
  flex: 1 1 260px;
  align-items: flex-start;
  padding: 30px 24px;
  margin-bottom: 20px;
  gap: 13px;
  transition: box-shadow 0.2s, background 0.2s;
}
.course-card:hover {
  box-shadow: 0 8px 34px rgba(33,45,67,0.16);
  background: #fffde7;
}
.instructor-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 30px;
}
.instructor-profile {
  padding: 24px 18px 18px 18px;
  border-radius: var(--radius-lg);
  background: var(--neutral-mid);
  box-shadow: 0 2px 14px rgba(33,45,67,0.06);
  min-width: 210px;
  max-width: 300px;
  flex: 1 1 210px;
}

/****** FAQ - ACCORDION STYLE ********/
.faq {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: 16px;
}
.faq > div {
  background: var(--neutral-mid);
  border-radius: var(--radius-md);
  padding: 18px 18px 12px 24px;
  transition: box-shadow 0.17s, background 0.16s;
  box-shadow: 0 2px 12px rgba(33,45,67,0.05);
}
.faq h3 {
  color: var(--secondary);
  font-size: 1.07rem;
  margin-bottom: 7px;
}
.faq p {
  margin-bottom: 0;
}
.faq > div:hover, .faq > div:focus-within {
  background: #fffde7;
  box-shadow: 0 6px 36px rgba(33,45,67,0.10);
}

/********* CTA & SPECIAL SECTIONS ********/
.cta {
  align-items: center;
  background: linear-gradient(90deg, #F5C842 10%, #7EC7A2 90%);
  border-radius: var(--radius-lg);
  padding: 40px 20px;
  box-shadow: 0 4px 20px rgba(33,45,67,0.09);
  position: relative;
  gap: 24px !important;
}
.cta h2 {
  color: var(--primary);
  font-weight: 800;
  text-shadow: 0 2px 8px rgba(33,45,67,0.09);
}
.cta .cta-button {
  background: var(--primary);
  color: #fff;
  font-size: 1.14rem;
  margin-left: 0;
  margin-top: 8px;
  padding: 13px 36px;
}
.cta .cta-button:hover {
  color: var(--primary);
  background: #fff;
  border: 2px solid var(--accent);
}

/********* FOOTER *********/
footer {
  background: var(--primary);
  color: #fff;
  padding: 42px 0 0 0;
  font-size: 1rem;
}
footer .container {
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  padding-bottom: 32px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 0;
}
.footer-nav a {
  color: #fff;
  opacity: 0.9;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  transition: color 0.16s, opacity 0.16s;
}
.footer-nav a:hover,
.footer-nav a:focus {
  color: var(--accent);
  opacity: 1;
}
.footer-contact img {
  height: 45px;
  margin-bottom: 16px;
}
.footer-contact p {
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  font-size: 1rem;
}
.footer-contact img[alt*="icon"] {
  height: 16px;
  width: 16px;
  margin-right: 4px;
}

/***************** COOKIE CONSENT BANNER *****************/
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; width: 100vw;
  background: #fffbe9;
  color: #212D43;
  z-index: 1200;
  box-shadow: 0 -1px 12px 0 rgba(33,45,67,0.13);
  padding: 24px 20px 22px 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  transition: transform 0.33s, opacity 0.2s;
}
.cookie-banner.hide {
  opacity: 0;
  transform: translateY(100%);
  pointer-events: none;
}
.cookie-banner .cookie-message {
  font-size: 1rem;
  color: #212D43;
  max-width: 700px;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  border: none;
  border-radius: var(--radius-sm);
  padding: 8px 24px;
  cursor: pointer;
  transition: background 0.17s, color 0.17s;
  margin: 0;
}
.cookie-banner .accept {
  background: var(--secondary);
  color: #fff;
  font-weight: 700;
}
.cookie-banner .accept:hover {
  background: var(--primary);
  color: #fffde7;
}
.cookie-banner .reject {
  background: #e14d4d;
  color: #fff;
  font-weight: 700;
}
.cookie-banner .reject:hover {
  background: #b70022;
  color: #fff;
}
.cookie-banner .settings {
  background: var(--accent);
  color: var(--primary);
  font-weight: 600;
}
.cookie-banner .settings:hover {
  background: var(--secondary);
  color: #fff;
}

/******** COOKIE MODAL *********/
.cookie-modal {
  display: none;
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(33,45,67,0.88);
  z-index: 1300;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  opacity: 0;
  transition: opacity 0.19s;
}
.cookie-modal.open {
  display: flex;
  opacity: 1;
}
.cookie-modal-content {
  background: #fff;
  color: #212D43;
  border-radius: var(--radius-lg);
  max-width: 420px;
  min-width: 290px;
  padding: 36px 28px 22px 28px;
  box-shadow: 0 6px 36px rgba(33,45,67,0.22);
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: popIn 0.34s cubic-bezier(.4,1,.56,1);
  position: relative;
}
@keyframes popIn {
  0% { transform: scale(.80); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
.cookie-modal-content h2 {
  color: var(--secondary);
  margin-bottom: 14px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
  margin-bottom: 6px;
}
.cookie-category input[type="checkbox"] {
  accent-color: var(--secondary);
}
.cookie-category.disabled label {
  color: #bdbdbd;
}
.cookie-modal-content .modal-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 14px;
}
.cookie-modal-content button {
  padding: 8px 22px;
  border-radius: var(--radius-sm);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  background: var(--secondary);
  color: #fff;
  transition: background 0.18s;
}
.cookie-modal-content button:hover {
  background: var(--primary);
}
.cookie-modal-content .close {
  position: absolute; top: 16px; right: 18px;
  border: none;
  background: none;
  color: var(--danger);
  font-size: 1.6rem;
  cursor: pointer;
  padding: 2px;
}
.cookie-modal-content .close:hover {
  color: var(--primary);
}

/********* RESPONSIVE *********/
@media (max-width: 900px) {
  .container {
    max-width: 95%;
  }
  .features .feature-grid, .card-container,
  .courses-grid, .instructor-list {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
  .footer-nav {
    flex-direction: column;
    gap: 10px;
  }
  .footer-contact {
    max-width: 100%;
  }
  .content-wrapper, .cta {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  html { font-size: 15px; }
  section {
    padding: 36px 7vw;
    margin-bottom: 36px;
  }
  .hero {
    padding: 32px 0 38px 0;
    border-radius: 0 0 22px 22px;
  }
  .footer-contact p { font-size: 0.97rem; }
  .container {
    padding: 0 4vw;
  }
  .card, .testimonial-card, .feature-item, .course-card, .instructor-profile {
    min-width: 0;
    max-width: 100%;
    width: 100%;
    padding: 20px 12px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .content-grid {
    flex-direction: column;
    gap: 16px;
  }
  .footer-contact img {
    height: 36px;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 18px 10px 14px 10px;
    font-size: 0.96rem;
  }
}
@media (max-width: 600px) {
  html { font-size: 14px; }
  body { line-height: 1.60; }
  .hero h1 { font-size: 1.44rem; }
  h1 { font-size: 1.28rem; }
  h2 { font-size: 1.08rem; }
  .cta {
    font-size: 1rem;
    padding: 24px 10px;
  }
  .container {
    padding: 0 2vw;
  }
  section {
    padding: 24px 2vw;
    margin-bottom: 28px;
  }
  .footer-contact p, .footer-nav a {
    font-size: 0.92rem;
  }
}
/*********** CREATIVE ARTISTIC FLAIR ***********/
h1, h2 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
  letter-spacing: 0.01em;
  position: relative;
}
h1:after, h2:after {
  content: '';
  display: block;
  height: 5px;
  width: 44px;
  background: var(--accent);
  border-radius: 12px;
  margin-top: 5px;
  opacity: 0.93;
}
.cta h2:after {
  background: var(--secondary);
  width: 54px;
  margin-top: 6px;
  opacity: 1;
}
.feature-item h3,
.course-card h3,
.instructor-profile h3,
.faq h3 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: var(--secondary);
  letter-spacing: 0.01em;
  font-weight: 700;
}
.feature-item h3:after,
.course-card h3:after,
.instructor-profile h3:after,
.faq h3:after {
  display: none;
}
.card,
.course-card,
.instructor-profile,
.feature-item {
  background: linear-gradient(90deg, #fff 80%, #f5c84218 100%);
}
/********* BUTTONS & INTERACTIVE ELEMENTS *********/
button,
input[type="submit"],
.cta-button {
  outline: none;
}
button:active,
.cta-button:active {
  transform: scale(.98);
}

/********* IMAGE & ICON STYLE *********/
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
ul img, li img {
  margin-right: 7px;
  vertical-align: middle;
}

/********* MISC *********/
::-webkit-scrollbar {
  width: 9px;
  background: #F0F3F6;
}
::-webkit-scrollbar-thumb {
  background: #eaeaea;
  border-radius: 5px;
}

/***** VISUAL MICROINTERACTIONS *****/
.card, .feature-item, .course-card, .testimonial-card, .faq > div {
  will-change: box-shadow, background, transform;
  transition: box-shadow 0.22s, background 0.19s, transform 0.16s;
}

/******** VISUAL UNIQUE ACCENTS *********/
.feature-item:before {
  content: '';
  display: block;
  position: absolute;
  top: -14px; right: -14px;
  width: 38px; height: 38px;
  background: var(--accent);
  opacity: 0.12;
  border-radius: 50%;
  z-index: 1;
}

/* Decorative artistic shape for hero */
.hero:before {
  content: '';
  position: absolute;
  top: -38px; right: -62px;
  width: 140px; height: 140px;
  z-index: 0;
  background: radial-gradient(circle at 88% 22%, #fffde7 55px, #f5c84222 110px, transparent 140px);
  pointer-events: none;
}
.hero {
  position: relative;
  z-index: 2;
}

/***** Z-INDEX & LAYERING ******/
header, .mobile-menu, .cookie-banner, .cookie-modal { z-index: 102; }

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

/***** PRINT HELPER (if needed) *****/
@media print {
  .mobile-menu, .cookie-banner, .cookie-modal, .cta-button, .mobile-menu-toggle, header, footer {
    display: none !important;
  }
  section, main, .container { padding: 0 !important; margin: 0 !important; }
}

/* END CSS */
