/* --- 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,
main, menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html, body { height: 100%; font-size: 16px; background: #F2F6FB; }
body { min-height: 100vh; font-family: 'Nanum Gothic', 'Noto Sans KR', Apple SD Gothic Neo, sans-serif; background: #F2F6FB; color: #1a2233; line-height: 1.8; }
img { max-width: 100%; display: block; border-style: none; }
button, input, textarea, select { font: inherit; border: none; outline: none; background: none; }
a { color: inherit; text-decoration: none; transition: color 0.2s; }
ul, ol, li { list-style: none; }
strong { font-weight: 700; }

/* --- BRAND VARIABLES (no CSS custom properties for compatibility) --- */
:root {
  /* Not used for CSS var, but reference values: */
  /* Primary: #205493, Secondary: #F2F6FB, Accent: #F28C28 */
}

/* --- TYPOGRAPHY & FONTS --- */
body, input, textarea, select, button {
  font-family: 'Nanum Gothic', 'Noto Sans KR', Apple SD Gothic Neo, sans-serif;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Noto Sans KR', 'Nanum Gothic', Apple SD Gothic Neo, sans-serif;
  color: #205493;
  font-weight: bold;
  letter-spacing: -0.5px;
  line-height: 1.2;
}
h1 { font-size: 2.5rem; margin-bottom: 20px; }
h2 { font-size: 2rem; margin-bottom: 18px; }
h3 { font-size: 1.35rem; margin-bottom: 12px; }
h4, h5, h6 { font-size: 1.1rem; }
p, li, dl, dd, dt { font-size: 1rem; margin-bottom: 0.7em; color: #24314a; }

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.35rem; }
  h3 { font-size: 1.05rem; }
}

/* --- LINKS & BUTTONS --- */
a, .primary-btn {
  transition: color 0.2s, background 0.2s, box-shadow 0.18s;
}
.primary-btn, button, .cta {
  font-family: 'Noto Sans KR', 'Nanum Gothic', Apple SD Gothic Neo, sans-serif;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #F28C28;
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 24px;
  padding: 12px 32px;
  margin-top: 8px;
  margin-bottom: 8px;
  box-shadow: 0 4px 16px 0 rgba(242,140,40, 0.12);
  cursor: pointer;
  border: none;
  transition: background 0.24s, box-shadow 0.2s, transform 0.15s;
  text-shadow: 0 1px 0 rgba(0,0,0,0.03);
}
.primary-btn:hover, .primary-btn:focus, .cta:hover, .cta:focus {
  background: #205493;
  color: #fff;
  box-shadow: 0 6px 16px 0 rgba(32,84,147, 0.13);
  transform: translateY(-2px) scale(1.03);
}

.main-nav a, .footer-nav a, .footer-legal a {
  font-family: 'Noto Sans KR', 'Nanum Gothic', Apple SD Gothic Neo, sans-serif;
  font-size: 1.05rem;
  margin: 0 22px 0 0;
  color: #205493;
  font-weight: 500;
  padding: 2px 3px;
  position: relative;
}
.main-nav a:last-child, .footer-nav a:last-child, .footer-legal a:last-child { margin-right: 0; }
.main-nav a:hover, .footer-nav a:hover, .footer-legal a:hover {
  color: #F28C28;
}


/* --- CONTAINERS & SECTIONS --- */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}

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

.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
}

@media (max-width: 768px) {
  .section { padding: 28px 10px; }
  .container { padding-left: 8px; padding-right: 8px; }
  .content-wrapper { gap: 20px; }
}

/* --- HEADER / NAVIGATION --- */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 18px 0 rgba(32,84,147, 0.06);
  z-index: 110;
  position: sticky;
  top: 0;
}
header .container {
  min-height: 68px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-top: 10px;
  padding-bottom: 10px;
}
.logo img {
  height: 42px;
  width: auto;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}
.main-nav a { position: relative; padding: 4px 3px; }
.main-nav a:hover:after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: #F28C28;
  border-radius: 1px;
}

.mobile-menu-toggle { display: none; background: none; border: none; font-size: 2rem; color: #F28C28; margin-left: 15px; z-index: 100; cursor: pointer; }

@media (max-width: 980px) {
  .main-nav { gap: 12px; }
  .logo img { height: 36px; }
}
@media (max-width: 800px) {
  .main-nav { gap: 6px; font-size: 0.97rem; }
  .primary-btn {
    font-size: 1rem; padding: 11px 22px;
  }
}
@media (max-width: 768px) {
  .main-nav { display: none; }
  .primary-btn { display: none; }
  .mobile-menu-toggle { display: block; }
}

/* --- MOBILE OVERLAY MENU --- */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; bottom: 0; right: 0;
  width: 100vw;
  height: 100vh;
  background: #205493;
  color: #fff;
  z-index: 2100;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  transform: translateX(-100vw);
  transition: transform 0.38s cubic-bezier(.84,-0.03,.42,1.02);
  overflow-y: auto;
  visibility: hidden;
}
.mobile-menu.open {
  transform: translateX(0);
  visibility: visible;
}
.mobile-menu-close {
  background: transparent;
  color: #fff;
  font-size: 2.1rem;
  border: none;
  margin: 24px 26px 18px 0;
  cursor: pointer;
  z-index: 2110;
  align-self: flex-end;
}
.mobile-nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
  margin-top: 22px;
  padding-left: 40px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.2rem;
  font-family: 'Noto Sans KR', 'Nanum Gothic', sans-serif;
  font-weight: 500;
  border-radius: 6px;
  padding: 8px 18px 8px 2px;
  transition: background 0.19s, color 0.15s;
}
.mobile-nav a:active, .mobile-nav a:focus, .mobile-nav a:hover {
  background: #F28C28;
  color: #fff8ef;
}

@media (min-width: 769px) {
  .mobile-menu { display: none !important; }
}


/* --- HERO SECTION --- */
.hero {
  width: 100%;
  background: linear-gradient(95deg, #F2F6FB 0%, #e0eaf7 70%, #ffe2c1 100%);
  padding: 70px 0 60px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.hero .content-wrapper {
  color: #205493;
  align-items: center;
  text-align: center;
  gap: 28px;
}
.hero h1 {
  font-size: 2.7rem;
  color: #205493;
  letter-spacing: -1.2px;
  font-family: 'Noto Sans KR', 'Nanum Gothic', sans-serif;
  margin-bottom: 12px;
  line-height: 1.18;
  text-shadow: 2px 4px 18px #ebf1fa;
}
.hero p {
  font-size: 1.16rem;
  color: #2d325c;
  margin-bottom: 18px;
}
.hero .primary-btn {
  margin-top: 12px;
  font-size: 1.18rem;
  padding: 14px 40px;
  background: #F28C28;
  color: #fff;
  border-radius: 52px;
  font-weight: bold;
  letter-spacing: 0.3px;
  box-shadow: 0 8px 32px 0 rgba(242,140,40,0.18);
  text-shadow: 0 2px 8px #fff4ea;
}
.hero .primary-btn:hover {
  background: #205493;
  color: #F28C28;
  box-shadow: 0 14px 32px 0 rgba(32,84,147,0.18);
}
@media (max-width: 768px) {
  .hero { padding: 44px 0 30px 0; }
  .hero h1 { font-size: 1.45rem; }
  .hero .primary-btn { padding: 10px 20px; font-size: 1rem; }
}

/* --- FEATURE GRID --- */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin: 28px 0 0 0;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 2px 22px 0 rgba(32,84,147,0.08);
  padding: 28px 28px 22px 28px;
  flex: 1 1 220px;
  min-width: 240px;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, transform 0.15s;
  border: 3px solid transparent;
  position: relative;
  z-index: 1;
}
.feature-item:hover {
  box-shadow: 0 6px 30px 0 rgba(242,140,40, 0.17);
  border: 3px solid #F28C28;
  transform: translateY(-3px) scale(1.025);
}
.feature-item img {
  width: 44px; height: 44px;
  margin-bottom: 8px;
}
.feature-item h3 {
  color: #205493;
  font-size: 1.17rem;
  margin-bottom: 5px;
  font-family: 'Noto Sans KR', 'Nanum Gothic', sans-serif;
}
.feature-item p {
  font-size: 1rem;
  color: #36445e;
  margin-bottom: 0;
}
@media (max-width: 900px) {
  .feature-grid { gap: 18px; }
  .feature-item { padding: 20px; min-width: 180px; }
}
@media (max-width: 600px) {
  .feature-grid { flex-direction: column; gap: 15px; }
  .feature-item { min-width: 0; width: 100%; }
}

/* --- CARD CONTAINERS --- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 20px 0 rgba(32,84,147,0.07);
  overflow: hidden;
  transition: box-shadow 0.15s, transform 0.14s;
}
.card:hover {
  box-shadow: 0 7px 28px 0 rgba(242,140,40,0.14);
  transform: scale(1.03);
}

/* --- TESTIMONIALS --- */
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 18px;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #fff9ee;
  border-radius: 16px;
  box-shadow: 0 2px 18px 0 rgba(32,84,147,0.07);
  padding: 24px 28px;
  margin-bottom: 20px;
  min-width: 260px; 
  max-width: 420px;
  flex: 1 1 320px;
  color: #22203b;
  transition: box-shadow 0.11s, transform 0.1s;
  border: 2px solid #f1b565;
}
.testimonial-card:hover {
  box-shadow: 0 9px 28px 0 rgba(32,84,147,0.13);
  transform: scale(1.025);
  border-color: #F28C28;
}
.testimonial-stars {
  display: flex;
  gap: 3px;
  min-width: 82px;
}
.testimonial-card p {
  color: #1a2233;
  font-size: 1.02rem;
  margin-bottom: 0;
}
.testimonial-author {
  display: block;
  color: #F28C28;
  font-size: 0.97rem;
  margin-top: 8px;
  font-weight: 700;
  font-family: 'Noto Sans KR', 'Nanum Gothic', sans-serif;
  letter-spacing: -0.05em;
}
@media (max-width:768px) {
  .testimonial-list { flex-direction: column; gap: 15px; }
  .testimonial-card { max-width: 98vw; min-width: 0; }
}

/* --- CTA SECTION --- */
.cta {
  background: #205493;
  color: #fff;
  border-radius: 28px;
  margin-bottom: 60px;
  box-shadow: 0 9px 38px 0 rgba(32,84,147,0.13);
}
.cta .content-wrapper {
  align-items: center;
  text-align: center;
  color: #fff;
  gap: 15px;
}
.cta h2 { color: #ffe7c0; text-shadow: 0 2px 14px #183a61; }
.cta p { color: #fff5e6; font-size: 1.12rem; }
.cta .primary-btn {
  background: #F28C28;
  color: #fff;
  font-size: 1.15rem;
  box-shadow: 0 7px 40px 0 rgba(242,140,40,0.21);
}
.cta .primary-btn:hover { background: #fff; color: #205493;  }

@media (max-width: 768px) {
  .cta { border-radius: 16px; }
  .cta h2 { font-size: 1.18rem; }
}

/* --- MISC REUSABLE LAYOUTS --- */
.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;
}
@media (max-width: 768px) {
  .content-grid, .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
}

/* --- INSTRUCTORS (About page) --- */
.instructor-list {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 15px;
}
.instructor-item {
  background: #e7effa;
  border-radius: 16px;
  padding: 20px 19px 18px 19px;
  flex: 1 1 240px;
  min-width: 180px;
  margin-bottom: 18px;
  box-shadow: 0 2px 13px rgba(32,84,147,0.08);
  font-family: 'Noto Sans KR', 'Nanum Gothic', sans-serif;
  color: #205493;
  font-weight: 600;
  transition: box-shadow 0.13s, transform 0.1s;
}
.instructor-item:hover {
  box-shadow: 0 8px 24px #20549321;
  transform: scale(1.02);
}

/* --- ACCREDITATION LOGOS (About) --- */
.accred-logos {
  display: flex; flex-wrap: wrap; gap: 18px; margin-top: 20px; }
.accred-logos img { height: 38px; width: auto; filter: grayscale(0.15) drop-shadow(0 0 3px #d4e7f8); transition: filter 0.16s; }
.accred-logos img:hover { filter: grayscale(0) brightness(1.15) drop-shadow(0 2px 7px #F28C28cc); }
@media (max-width:640px) { .accred-logos { gap:7px; } }

/* --- ARTICLES / RESOURCES --- */
.articles-list, .downloadable-guides, .tips-highlight {
  background: #fff;
  border-radius: 20px;
  padding: 24px 20px 18px 18px;
  margin-bottom: 22px;
  box-shadow: 0 2px 16px #20549313;
}
.articles-list ul, .downloadable-guides ul, .tips-highlight ul {
  padding-left: 16px;
  color: #205493;
}

/* --- FAQ ACCORDION --- */
.faq-accordion { width: 100%; margin-bottom: 20px; }
.faq-item {
  background: #f6fafd;
  border-radius: 12px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px #F28C2810;
  padding: 17px 23px 13px 23px;
  cursor: pointer;
  transition: box-shadow 0.14s, background 0.18s;
}
.faq-item h3 {
  margin-bottom: 8px;
  color: #205493;
  font-size: 1.13rem;
}
.faq-item .faq-body { color: #22203b; font-size: 1rem; margin-bottom: 0; }
.faq-item:hover {
  background: #fff6ee;
  box-shadow: 0 5px 24px #F28C2821;
}

/* --- CONTACT PAGE --- */
.contact-info ul {
  display: flex; flex-direction: column; gap: 13px;
  margin-bottom: 18px;
}
.contact-info li {
  display: flex; align-items: center; gap: 14px;
  color: #205493;
  font-size: 1.04rem;
}
.contact-info img { width: 18px; height: 18px; margin-right: 7px; filter: drop-shadow(0 0 2px #F28C2823); }
.map, .business-hours { margin-top: 16px; }
.map { background: #e0eaf7; border-radius: 8px; padding: 12px 18px; color: #205493de; }
.business-hours { color: #523908; font-weight: 600; }

/* --- LEGAL TEXT SECTION --- */
.legal-text {
  font-size: 1.01rem;
  background: #fff;
  border-radius: 10px;
  padding: 20px; color: #1a2233;
  box-shadow: 0 2px 13px #2054930c;
}

/* --- THANK YOU PAGE --- */
.success-message {
  background: #e8fff7;
  border-left: 5px solid #205493;
  border-radius: 8px;
  color: #04624e;
  padding: 20px 20px 18px 16px;
  margin-bottom: 23px;
  font-weight: 500;
  font-size: 1.1rem;
}
.next-steps ul {
  list-style: inside disc;
  color: #F28C28;
  padding-left: 14px;
}

/* --- FOOTER --- */
footer {
  width: 100%;
  background: #fff;
  margin-top: 70px;
  border-top: 2px solid #e2e8f6;
  box-shadow: 0 -3px 21px #20549309;
  font-family: 'Nanum Gothic','Noto Sans KR', sans-serif;
}
.footer-top {
  display: flex; flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
  padding-top: 30px;
  padding-bottom: 20px;
}
.footer-top a img {
  width: 50px;
  height: 50px;
  margin-bottom: 4px;
}
.footer-nav, .footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-nav a, .footer-legal a {
  color: #205493;
  font-size: 1rem;
  font-weight: 400;
}
.footer-nav a:hover, .footer-legal a:hover {
  color: #F28C28;
}
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 10px;
  font-size: 0.98rem;
  color: #8b95a4;
}
.contact-info {
  display: flex; flex-direction: column;
  gap: 10px; color: #1a2233;
}
.contact-info span {
  display: flex; align-items: center;
  gap: 9px;
  font-size: 0.98rem;
}
.contact-info img { width: 17px; height: 17px; margin-right: 6px; filter: drop-shadow(0 0 2px #F28C2817); }
.copyright { color: #1D3557; font-size: 0.99rem; font-family: 'Nanum Gothic',sans-serif; opacity: .7; }
@media (max-width: 900px) {
  .footer-top { gap: 14px; flex-direction: column; align-items: flex-start; }
}
@media (max-width: 768px) {
  .footer-top, .footer-bottom { flex-direction: column; gap: 12px; align-items: flex-start; }
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 9999;
  background: #fff;
  box-shadow: 0 -3px 22px #20549325;
  padding: 18px 16px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  min-height: 60px;
  font-size: 1rem;
  font-family: 'Nanum Gothic', 'Noto Sans KR', sans-serif;
  animation: cookie-fadein 0.8s cubic-bezier(.19,.63,.46,1.11);
}
@keyframes cookie-fadein {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.cookie-banner-content {
  flex: 3 1 400px;
  color: #24314a;
  margin-right: 12px;
}
.cookie-banner-btns {
  display: flex;
  flex-direction: row;
  gap: 12px;
}
.cookie-btn, .cookie-settings-btn {
  background: #F28C28;
  color: #fff;
  border-radius: 22px;
  padding: 8px 17px;
  font-size: 1rem;
  font-family: 'Noto Sans KR', 'Nanum Gothic', sans-serif;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 1px 8px #20549313;
  transition: background 0.16s, color 0.14s;
  border: none;
}
.cookie-btn.reject {
  background: #d82119;
}
.cookie-btn:hover, .cookie-settings-btn:hover {
  background: #205493;
  color: #fff8ef;
}
@media (max-width: 700px) {
  .cookie-banner { flex-direction: column; align-items: stretch; gap: 10px; font-size:0.98rem; }
  .cookie-banner-content { margin-right: 0; }
}

/* --- COOKIE MODAL --- */
.cookie-modal-overlay {
  position: fixed; left:0;top:0;right:0;bottom:0;
  background: rgba(30,34,44,0.56);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInModal 0.25s cubic-bezier(.39,-0.17,.68,1.41);
}
@keyframes fadeInModal {
  from { opacity: 0; } to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 10px 44px #20549329;
  padding: 28px 30px;
  min-width: 320px;
  max-width: 90vw;
  color: #205493;
  font-family: 'Noto Sans KR','Nanum Gothic',sans-serif;
}
.cookie-modal h3 { margin-bottom: 14px; color: #F28C28; }
.cookie-modal .cookie-modal-section {
  margin-bottom: 14px;
  padding: 12px 0 7px 0;
  border-bottom: 1px solid #e6e6e6;
}
.cookie-modal .cookie-modal-section:last-child { border-bottom: none; }
.cookie-modal label {
  display: flex; align-items: center; gap: 10px;
  font-size: 1.09rem;
  font-weight: 500;
}
.cookie-modal input[type='checkbox'] {
  accent-color: #205493;
  width: 18px; height: 18px; margin-right: 7px;
}
.cookie-modal-actions {
  margin-top: 17px;
  display: flex; gap: 13px;
}
.cookie-modal-btn {
  background: #F28C28;
  color: #fff;
  border-radius: 20px;
  padding: 8px 18px;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 18px #20549310;
  transition: background 0.18s;
}
.cookie-modal-btn:hover { background: #205493; color: #fff; }
.cookie-modal-btn.cancel {
  background: #c0c4c9;
  color: #374760;
}
.cookie-modal-btn.cancel:hover { background: #F28C28; color: #fff; }

@media (max-width: 450px) {
  .cookie-modal { padding: 12px 4vw; min-width: 0; }
}

/* --- ANIMATIONS --- */
.card, .testimonial-card, .feature-item, .instructor-item,
.section, .button, .cta, .faq-item, .articles-list, .downloadable-guides, .tips-highlight {
  transition: box-shadow 0.16s, background 0.18s, transform 0.15s;
}

/* --- VISUAL ARTISTIC EFFECTS AND UNIQUE ELEMENTS --- */
.hero {
  position: relative;
  /* Add subtle artistic overlay elements */
}
.hero:before {
  content: '';
  position: absolute;
  left: 0; right: -50px; top: -80px;
  height: 320px;
  background: #F28C28;
  opacity: 0.06;
  border-radius: 0 0 340px 0 / 0 0 110px 0;
  z-index: 0;
  pointer-events: none;
}
.hero:after {
  content: '';
  position: absolute;
  right: -75px; bottom: -75px;
  width: 220px; height: 220px;
  background: #205493;
  opacity: 0.08;
  border-radius: 220px 0 220px 220px;
  z-index: 0;
  pointer-events: none;
}

.card, .testimonial-card, .feature-item, .instructor-item {
  border-radius: 18px;
  box-shadow: 0 4px 22px #2054930b;
}

/* --- VISUAL HIERARCHY & SPACING --- */
.card, .feature-item, .testimonial-card, .instructor-item {
  margin-bottom: 20px;
  transition: box-shadow 0.13s, transform 0.13s, border 0.12s;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  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;
}

/* --- OVERLAY (images/icons) --- */
/* Use filter and shadow on icons for artistic look */
.feature-item img, .footer-top img, .contact-info img {
  filter: drop-shadow(0 1px 3px #F28C2840);
}

/* --- MISC --- */
::-webkit-input-placeholder { color: #9ba2b1; }
::-moz-placeholder { color: #9ba2b1; }
:-ms-input-placeholder { color: #9ba2b1; }
::placeholder { color: #9ba2b1; }

/* --- REQUIRE FOCUS STYLES --- */
a:focus, .primary-btn:focus, button:focus, .cta:focus {
  outline: 2px solid #F28C28;
  outline-offset: 2px;
  background: #fffbea;
  color: #205493 !important;
}


/* --- END --- */
