/* =======================================================
   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, 
main, 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, main, menu, nav, section {
  display: block;
}
body {
  line-height: 1.55;
  background: #F5F8FA;
  color: #234C63;
  font-family: 'Roboto', Arial, sans-serif;
  min-height: 100vh;
}
ul, ol {
  list-style: none;
}
a {
  background-color: transparent;
  text-decoration: none;
  color: #234C63;
  transition: color 0.18s cubic-bezier(.65,.05,.36,1);
}
img {
  border-style: none;
  max-width: 100%;
  display: block;
}
button {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}
input, textarea, select {
  font-family: inherit;
}

/* ================ BRANDED COLOR VARIABLES ================ */
:root {
  --primary: #234C63;
  --secondary: #D7A423;
  --accent: #F5F8FA;
  --text: #1A232B;
  --muted: #b2b9be;
  --cta-hover: #205066;
  --card-shadow: 0 2px 12px rgba(35,76,99,0.10);
  --border-radius: 18px;
}

/* ================ TYPOGRAPHY (CREATIVE, ARTISTIC FLARE) ================ */
h1, .h1 {
  font-family: 'Montserrat', 'Arial Rounded MT Bold', 'Arial', sans-serif;
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.15;
  letter-spacing: -0.012em;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  h1, .h1 { font-size: 2rem; }
}
h2, .h2 {
  font-family: 'Montserrat', 'Arial Rounded MT Bold', 'Arial', sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 14px;
  line-height: 1.2;
}
@media (max-width: 768px) {
  h2, .h2 { font-size: 1.5rem; }
}
h3, .h3 {
  font-family: 'Montserrat', 'Arial Rounded MT Bold', 'Arial', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 10px;
  line-height: 1.2;
}
h4, .h4 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.12rem;
  font-weight: 600;
  color: var(--primary);
}
p, li, blockquote {
  color: var(--text);
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  margin-bottom: 16px;
  line-height: 1.7;
}
strong, b {
  font-weight: 700;
  color: var(--primary);
}
small {
  font-size: 0.875rem;
  color: var(--muted);
}
blockquote {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.06rem;
  color: var(--primary);
  font-style: italic;
  border-left: 5px solid var(--secondary);
  background: rgba(215,164,35,0.10);
  padding: 16px 22px;
  margin: 0 0 8px 0;
  border-radius: 0 24px 24px 0;
  box-shadow: 0 2px 8px rgba(35,76,99,0.04);
}
.subheadline {
  font-size: 1.25rem;
  font-weight: 400;
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--primary);
  margin-bottom: 20px;
  letter-spacing: 0.01em;
}
.level {
  color: var(--secondary);
  font-weight: 700;
  font-size: 1em;
  letter-spacing: 0.02em;
}


/* ================ LAYOUT CONTAINER PATTERNS ================ */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  box-shadow: var(--card-shadow);
  border-radius: var(--border-radius);
  padding: 32px 28px;
  min-width: 240px;
}
.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;
  background: #fff;
  padding: 20px;
  border-radius: 16px;
  margin-bottom: 20px;
  box-shadow: 0 3px 12px rgba(35,76,99,0.11);
  border-left: 6px solid var(--secondary);
  transition: box-shadow 0.22s cubic-bezier(.65,.05,.36,1);
}
.testimonial-card:hover {
  box-shadow: 0 8px 24px rgba(215,164,35,0.13), 0 3px 18px rgba(35,76,99,0.19);
}
.testimonial-details {
  font-weight: 600;
  color: var(--primary);
  font-size: 1rem;
  margin-left: auto;
  letter-spacing: 0.005em;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--card-shadow);
  padding: 22px 26px;
  margin-bottom: 20px;
  position: relative;
}
.features ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.features li {
  flex: 1 1 220px;
  background: #fff;
  border-radius: var(--border-radius);
  padding: 32px 19px 22px 19px;
  box-shadow: var(--card-shadow);
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-width: 200px;
  max-width: 270px;
  position: relative;
  transition: box-shadow 0.22s;
}
.features li img {
  height: 44px; width: 44px; margin-bottom: 18px;
}
.features li:hover {
  box-shadow: 0 8px 24px rgba(35,76,99,0.10), 0 4px 18px rgba(215,164,35,0.15);
  transform: translateY(-3px) scale(1.03);
}
.courses .course-card, .course-card {
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--card-shadow);
  padding: 27px 22px;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  min-width: 240px;
  max-width: 360px;
  transition: box-shadow 0.2s;
}
.courses .course-card:hover {
  box-shadow: 0 8px 26px rgba(215,164,35,0.13), 0 4px 19px rgba(35,76,99,0.11);
  transform: translateY(-2px) scale(1.015);
}

.text-section {
  margin-bottom: 16px;
  font-size: 1rem;
  color: var(--text);
  line-height: 1.74;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 18px 0 16px 0;
}
.contact-detail, .contact-info > div {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.03rem;
  color: var(--primary);
}

/* ============= HERO SECTIONS ============== */
.hero {
  background: linear-gradient(110deg, var(--primary) 55%, var(--secondary) 120%);
  color: #fff;
  border-radius: 0 0 60px 60px;
  padding: 50px 0 50px 0;
  margin-bottom: 48px;
  position: relative;
  overflow: hidden;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 18px;
}
.hero h1, .hero .subheadline {
  color: #fff;
}
.hero a.btn-primary {
  margin-top: 18px;
  background: #fff;
  color: var(--primary);
  font-weight: 700;
  box-shadow: 0 4px 24px rgba(35,76,99,0.10);
}

/* ============== HEADER & NAVIGATION =============== */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 3px 14px rgba(35,76,99,0.08);
  position: sticky;
  top: 0;
  z-index: 10010;
} 
header .container {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  padding-top: 15px;
  padding-bottom: 15px;
  gap: 18px;
  position: relative;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: 35px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1.1rem;
  color: var(--primary);
  padding: 6px 6px 6px 6px;
  border-radius: 10px;
  transition: background 0.20s, color 0.20s;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--secondary);
  color: #fff;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--secondary);
  color: #234C63;
  border-radius: 38px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.13rem;
  padding: 11px 32px;
  margin-left: 18px;
  letter-spacing: 0.03em;
  box-shadow: 0 2px 12px rgba(215,164,35,0.08);
  border: none;
  outline: none;
  transition: background 0.2s, color 0.2s, box-shadow 0.18s;
}
.btn-primary:hover, .btn-primary:focus {
  background: #fcd546;
  color: var(--primary);
  box-shadow: 0 6px 18px rgba(33,62,120,0.16);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  background: var(--primary);
  color: #fff;
  border-radius: 38px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 10px 24px;
  margin-top: 10px;
  margin-bottom: 2px;
  letter-spacing: 0.01em;
  box-shadow: 0 2px 12px rgba(35,76,99,0.09);
  border: none;
  outline: none;
  transition: background 0.19s, color 0.19s, box-shadow 0.19s;
}
.btn-secondary:hover, .btn-secondary:focus { 
  background: var(--secondary);
  color: var(--primary);
  box-shadow: 0 6px 18px rgba(33,62,120,0.13);
}
/* ============= MOBILE NAV ============= */
.mobile-menu-toggle {
  display: none;
  font-size: 2.1rem;
  background: rgba(35,76,99,0.06);
  border-radius: 50%;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  color: var(--secondary);
  transition: background 0.15s, color 0.15s;
  z-index: 11041;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: var(--secondary);
  color: #fff;
}
.mobile-menu {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: #fff;
  z-index: 12000;
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(.64,.09,.36,1);
  box-shadow: 8px 0 34px rgba(35,76,99,0.15);
}
.mobile-menu.open { transform: translateX(0); }

.mobile-menu-close {
  align-self: flex-end;
  color: var(--primary);
  font-size: 2.2rem;
  margin: 22px 36px 10px 0;
  background: none;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  transition: background 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--secondary);
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  align-items: stretch;
  padding: 18px 38px;
  margin-top: 20px;
}
.mobile-nav a {
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.3rem;
  font-weight: 600;
  padding: 18px 0 10px 3px;
  border-bottom: 1px solid var(--accent);
  transition: color 0.17s;
}
.mobile-nav a:last-child {
  border-bottom: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--secondary);
}
@media (max-width: 980px) {
  .main-nav {
    display: none;
  }
  .btn-primary {
    margin-left: 2px;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 981px) {
  .mobile-menu { display: none !important; }
}

/* ============= SECTIONS: ABOUT, TEAM, COURSE ============== */
.section, .policy-section {
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--card-shadow);
  margin-bottom: 56px;
}
.unique-features ul, .learning-benefits ul {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}
.unique-features li, .learning-benefits li {
  background: #fffbea;
  border-radius: 15px;
  padding: 18px 20px;
  flex: 1 1 200px;
  min-width: 180px;
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.04rem;
  margin-bottom: 9px;
  line-height: 1.66;
  box-shadow: 0 1px 6px rgba(215,164,35,0.10);
  transition: box-shadow 0.18s;
}
.unique-features li:hover, .learning-benefits li:hover {
  box-shadow: 0 8px 18px rgba(35,76,99,0.07), 0 4px 14px rgba(215,164,35,0.13);
  transform: scale(1.03);
}
.policy-section {
  background: #fff;
  box-shadow: var(--card-shadow);
  border-radius: var(--border-radius);
  margin-bottom: 48px;
  padding: 40px 20px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.faq-item {
  background: #fff;
  border-left: 5px solid var(--secondary);
  border-radius: 0 14px 14px 0;
  box-shadow: 0 2px 8px rgba(35,76,99,0.04);
  padding: 20px 22px;
  margin-bottom: 10px;
  transition: box-shadow 0.17s;
}
.faq-item h3 {
  margin-bottom: 11px;
  color: var(--primary);
  font-size: 1.19rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
}
.faq-item p {
  color: var(--text);
}
.faq-item:hover {
  box-shadow: 0 8px 19px rgba(215,164,35,0.14), 0 3px 12px rgba(35,76,99,0.07);
  transform: translateY(-2px) scale(1.018);
}

.key-skills ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.key-skills li {
  background: #E5EEF5;
  color: var(--primary);
  border-radius: 12px;
  padding: 7px 18px;
  font-size: 1.01rem;
  margin-bottom: 8px;
}


/* ================ FOOTER ================ */
footer {
  background: var(--primary);
  color: #fff;
  padding: 48px 0 10px 0;
  border-radius: 60px 60px 0 0;
  margin-top: 55px;
  box-shadow: 0 -2px 20px rgba(35,76,99,0.08);
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-logo img {
  height: 49px;
  margin-bottom: 12px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.03rem;
  transition: color 0.16s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--secondary);
}
.footer-contact {
  gap: 8px;
  display: flex;
  flex-direction: column;
}
.footer-contact > div {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.98rem;
  color: #fff;
}
.footer-social {
  display: flex;
  gap: 20px;
}
.footer-copyright {
  width: 100%;
  text-align: left;
  margin-top: 28px;
  font-size: 0.99rem;
  color: #e6e9eb;
}

/* ================ RESPONSIVE DESIGN ================ */
@media (max-width: 980px) {
  .container {
    max-width: 96vw;
    padding-left: 10px;
    padding-right: 10px;
  }
  footer .container {
    flex-direction: column;
    gap: 22px;
  }
  .footer-contact, .footer-nav, .footer-social {
    flex-direction: row;
    gap: 14px;
  }
  .section, .policy-section {
    padding: 28px 7px;
  }
}
@media (max-width: 768px) {
  .features ul, .unique-features ul, .learning-benefits ul, .key-skills ul {
    flex-direction: column;
    gap: 16px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 21px;
    align-items: flex-start;
  }
  .container {
    padding-left: 5px;
    padding-right: 5px;
  }
  .hero {
    padding: 37px 0 36px 0;
    border-radius: 0 0 34px 34px;
  }
}
@media (max-width: 600px) {
  .footer-copyright { font-size: 0.91rem; text-align: center; }
  .footer-logo img { margin: 0 auto; }
}

/* ================ ANIMATIONS & HOVER EFFECTS ================ */
a, .btn-primary, .btn-secondary, .features li, .unique-features li, .learning-benefits li, .testimonial-card, .faq-item, .card {
  transition: box-shadow 0.20s cubic-bezier(.65,.05,.36,1), color 0.17s, background 0.17s, transform 0.13s;
}
.btn-primary:active, .btn-secondary:active {
  transform: scale(0.98);
}

/* =========== COOKIE CONSENT BANNER ============ */
.cookie-banner {
  position: fixed;
  left: 0; bottom: 0; right: 0;
  background: #fffbea;
  color: var(--primary);
  box-shadow: 0 -6px 24px rgba(35,76,99,0.13);
  padding: 18px 16px 18px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  z-index: 14000;
  animation: cookiebanner-in 0.7s cubic-bezier(.76,.12,.24,1);
}
@keyframes cookiebanner-in {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.cookie-consent-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 22px;
  border-radius: 28px;
  font-size: 1.02rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  cursor: pointer;
  border: none;
  outline: none;
  transition: background 0.16s, color 0.16s;
  margin-top: 2px;
}
.cookie-consent-accept {
  background: var(--secondary);
  color: var(--primary);
}
.cookie-consent-accept:hover, .cookie-consent-accept:focus {
  background: #fff1b6;
  color: var(--primary);
}
.cookie-consent-reject {
  background: #fff;
  color: var(--primary);
  border: 1.5px solid var(--secondary);
}
.cookie-consent-reject:hover, .cookie-consent-reject:focus {
  background: #efe6ca;
}
.cookie-consent-settings {
  background: none;
  border: 1px solid var(--muted);
  color: var(--primary);
}
.cookie-consent-settings:hover, .cookie-consent-settings:focus {
  background: #fff4c3;
}
/* Cookie Modal Popup */
.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(35,76,99,0.36);
  z-index: 15000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cookie-modal {
  background: #fff;
  border-radius: 24px;
  max-width: 430px;
  width: 95vw;
  padding: 33px 28px 28px 28px;
  box-shadow: 0 12px 36px rgba(215,164,35,0.13), 0 5px 22px rgba(35,76,99,0.19);
  display: flex;
  flex-direction: column;
  gap: 24px;
  animation: cookiemodal-in 0.33s cubic-bezier(.84,.03,.16,1);
  z-index: 16000;
}
@keyframes cookiemodal-in {
  from { transform: translateY(60px) scale(0.97); opacity: 0; }
  to { transform: translateY(0) scale(1); opacity: 1; }
}
.cookie-modal-header {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--primary);
}
.cookie-modal-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 9px;
  font-size: 1.03rem;
}
.cookie-modal-category .cookie-toggle {
  accent-color: var(--secondary);
  width: 40px; height: 22px;
}
.cookie-modal-actions {
  display: flex;
  gap: 13px;
  justify-content: flex-end;
}
.cookie-modal-close {
  background: none;
  border: none;
  color: #b2b9be;
  font-size: 2rem;
  position: absolute;
  right: 28px; top: 17px;
  cursor: pointer;
  border-radius: 50%;
  width: 38px; height: 38px;
  transition: background 0.14s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus { background: #ececec; }
/* =================== ARTISTIC & CREATIVE TOUCHES ================== */
.hero, footer {
  /* Subtle hand-drawn borders (artistic element) */
  box-shadow: 0 8px 32px rgba(215,164,35,0.09), 0 2px 16px rgba(35,76,99,0.11);
}
.section:before, .section:after {
  content: '';
  display: block;
  width: 50px; height: 3px;
  border-radius: 5px;
  background: var(--secondary);
  opacity: 0.40;
  margin-bottom: 20px;
  margin-top: 0px;
}
.section:after { display: none; }
.section:first-child:before { display: none; }

@media (max-width: 600px) {
  .cookie-banner { padding: 15px 6px; }
  .cookie-modal {
    padding: 21px 6px 21px 6px;
    min-width: 0;
    width: 97vw;
    max-width: 420px;
  }
}

/* =================== MICRO-INTERACTIONS ================== */
.btn-primary, .btn-secondary, .cookie-consent-btn {
  transition: background 0.22s, color 0.2s, box-shadow 0.2s, transform 0.14s;
}
.btn-primary:active, .btn-secondary:active, .cookie-consent-btn:active {
  box-shadow: 0 1px 8px rgba(35,76,99,0.08);
  transform: scale(0.97);
}
.features li, .unique-features li {
  transition: box-shadow 0.19s, transform 0.12s;
}
.features li:active, .unique-features li:active {
  transform: scale(0.98);
}

/* =================== UTILITIES/HELPER CLASSES ================== */
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mt-16 { margin-top: 16px !important; }
.mb-16 { margin-bottom: 16px !important; }
.d-flex { display: flex !important; }
.flex-wrap { flex-wrap: wrap !important; }

/* =================== ACCESIBILITY & CONTRAST IN TESTIMONIALS ==================*/
.testimonial-card, .testimonial-card blockquote {
  background: #fff !important;
  color: var(--primary) !important;
  border-left: 6px solid var(--secondary);
}
.testimonial-card blockquote {
  color: #234C63 !important;
}
.testimonial-card .testimonial-details {
  color: var(--secondary);
}

/* =================== MISC ================== */
::-webkit-input-placeholder { color: #b2b9be; opacity: 1; }
:-ms-input-placeholder      { color: #b2b9be; opacity: 1; }
::placeholder              { color: #b2b9be; opacity: 1; }

/* =================== END OF STYLE ================== */