/* RESET & BASE STYLES ================================================================================ */
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
*, *::before, *::after {
  box-sizing: inherit;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
  background: #FAFAFA;
}
footer p {
  color: white;
}
body {
  font-family: 'Open Sans', Arial, sans-serif;
  background: #FAFAFA;
  color: #223045;
  min-height: 100vh;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #293D5A;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #60A9A6;
  text-decoration: underline;
}
ul, ol {
  padding-left: 1.5em;
  margin: 1em 0;
}
li:not(:last-child) {
  margin-bottom: 0.5em;
}

::-webkit-input-placeholder { color: #293D5A; }
::-moz-placeholder { color: #293D5A; }
:-ms-input-placeholder { color: #293D5A; }
::placeholder { color: #293D5A; }


/* BRAND TYPOGRAPHY ================================================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  color: #293D5A;
  font-weight: 700;
  letter-spacing: 0.01em;
  margin-top: 0;
  margin-bottom: 12px;
}
h1 { font-size: 2.5rem; line-height: 1.1; margin-bottom: 24px; }
h2 { font-size: 2rem; line-height: 1.15; margin-bottom: 20px; }
h3 { font-size: 1.3rem; line-height: 1.2; margin-bottom: 12px; margin-top: 20px; }
h4, h5, h6 { font-size: 1rem; margin-bottom: 8px; }
p, ul, ol {
  color: #223045;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 16px;
  font-family: 'Open Sans', Arial, sans-serif;
}
strong, b {
  color: #293D5A;
}
subheadline, .subheadline {
  font-size: 1.18rem;
  color: #60A9A6;
  font-weight: 500;
  margin-bottom: 20px;
}


/* CONTAINER LAYOUTS ================================================================================ */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding-left: 22px;
  padding-right: 22px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

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

/* CARD & FLEXBOX PATTERNS ========================================================================= */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  background: #fff;
  box-shadow: 0 2px 10px rgba(60, 64, 70, 0.10);
  border-radius: 22px;
  position: relative;
  padding: 28px 26px;
  min-width: 260px;
  transition: box-shadow 0.25s, transform 0.22s;
}
.card:hover {
  box-shadow: 0 8px 28px 0 rgba(60,90,170,0.14);
  transform: translateY(-3px) scale(1.015);
}

.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;
  background: #fffbe9;
  border-left: 6px solid #F2E87B;
  border-radius: 22px;
  box-shadow: 0 2px 14px rgba(220,197,20,0.10);
  margin-bottom: 20px;
  flex: 1 1 320px;
  transition: box-shadow 0.18s, transform 0.19s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 32px rgba(242,232,123,0.16);
  transform: translateY(-2px) scale(1.01);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #f4faff;
  border-radius: 20px;
  padding: 22px 20px;
  min-width: 220px;
  box-shadow: 0 1px 10px rgba(96,169,166, 0.06);
  margin-bottom: 20px;
}


/* HERO & CTA ====================================================================================== */
.hero {
  background: #60A9A6 linear-gradient(120deg, #60A9A6 60%, #F2E87B 100%);
  color: #223045;
  padding: 60px 0 46px 0;
  border-bottom-left-radius: 60px 80px;
  border-bottom-right-radius: 80px 100px;
  position: relative;
  overflow: hidden;
}
.hero .content-wrapper {
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
  margin-bottom: 0;
}
.hero h1, .hero .subheadline {
  color: #293D5A;
  text-shadow: 0 2px 12px rgba(250,250,220,0.09);
}
.hero .cta.primary {
  margin-top: 24px;
}

.cta, .cta.primary {
  display: inline-flex;
  align-items: center;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.16rem;
  padding: 13px 35px;
  border-radius: 32px;
  background: #F2E87B;
  color: #293D5A;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(242,232,123,0.13);
  transition: background 0.2s, color 0.18s, box-shadow 0.2s, transform 0.2s;
  margin: 14px 0 0 0;
  outline: none;
  letter-spacing: 0.02em;
}
.cta.primary:hover, .cta.primary:focus, .mobile-nav a.cta.primary:hover {
  background: #60A9A6;
  color: #fff;
  box-shadow: 0 8px 20px rgba(96,169,166,0.09);
  text-decoration: none;
  transform: translateY(-2px) scale(1.03);
}
.cta.secondary {
  background: #293D5A;
  color: #fff;
}
.cta.secondary:hover, .cta.secondary:focus {
  background: #F2E87B;
  color: #293D5A;
}


/* NAVIGATION & HEADER ============================================================================= */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 18px rgba(60, 92, 130, 0.07);
  z-index: 100;
  position: relative;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
  padding-top: 12px;
  padding-bottom: 12px;
  gap: 20px;
}
.logo {
  height: 44px;
  display: flex;
  align-items: center;
}
.logo img {
  height: 44px;
  width: auto;
  display: block;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.05rem;
  color: #293D5A;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 16px;
  transition: background 0.16s, color 0.17s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #F2E87B;
  color: #60A9A6;
}
.main-nav .cta.primary {
  margin-left: 18px;
}
.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  background: #F2E87B;
  color: #293D5A;
  border: none;
  border-radius: 12px;
  padding: 7px 14px;
  margin-left: 16px;
  cursor: pointer;
  transition: background 0.2s, color 0.15s, box-shadow 0.15s;
  z-index: 500;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #60A9A6;
  color: #fff;
  box-shadow: 0 4px 8px rgba(96,169,166,0.15);
}

/* --- Mobile menu overlay --- */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #293D5A;
  color: #fff;
  z-index: 700;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 0;
  transform: translateX(-100%);
  transition: transform 0.30s cubic-bezier(.69,0,0,1), box-shadow 0.19s;
  box-shadow: 0 2px 32px rgba(60,60,80,0.13);
}
.mobile-menu.active {
  transform: translateX(0%);
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2rem;
  background: transparent;
  border: none;
  color: #F2E87B;
  margin: 20px 24px 10px 0;
  cursor: pointer;
  transition: color 0.18s;
  z-index: 800;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #fffbe9;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  align-items: flex-start;
  padding: 38px 38px 0 32px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1.3rem;
  padding: 14px 0 14px 0;
  border-bottom: 1px solid rgba(250,250,250,0.10);
  width: 100%;
  transition: color 0.15s, background 0.16s;
  border-radius: 0px;
  letter-spacing: 0.01em;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #60A9A6;
  color: #293D5A;
}
.mobile-nav a.cta.primary {
  background: #F2E87B;
  color: #293D5A;
  border-radius: 21px;
  text-align: center;
  margin-top: 12px;
  margin-bottom: 7px;
  font-size: 1.25rem;
}

/* PAGE SECTIONS & FLEX LAYOUTS ==================================================================== */
.features, .services, .about, .team, .contact, .cta, .confirmation, .legal, .testimonials {
  width: 100%;
}
.features .feature-grid,
.features .content-wrapper > .feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 18px;
}
.feature {
  flex: 1 1 250px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 6px rgba(96,169,166, 0.10);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
  padding: 30px 20px 26px 24px;
  margin-bottom: 20px;
  transition: box-shadow 0.20s, transform 0.20s;
  border-left: 6px solid #60A9A6;
}
.feature img {
  width: 40px; height: 40px;
  margin-bottom: 8px;
}
.feature:hover {
  box-shadow: 0 10px 30px rgba(96,169,166,0.18);
  transform: translateY(-3px) scale(1.027);
}

.service-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.service-list li {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2.5px 8px rgba(96,169,166, 0.10);
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 250px;
  transition: box-shadow 0.19s, transform 0.17s;
  margin-bottom: 20px;
}
.service-list li:hover {
  box-shadow: 0 8px 28px rgba(96,169,166,0.14);
  transform: translateY(-3px) scale(1.03);
}
.price {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  color: #60A9A6;
  font-weight: 700;
  background: #F2E87B;
  border-radius: 12px;
  padding: 3px 15px;
  margin-top: 8px;
  letter-spacing: 0.01em;
  display: inline-block;
}

.text-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.opportunity-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 28px;
  width: 100%;
}
.opportunity-grid > div {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 8px rgba(96,169,166,0.08);
  padding: 26px 20px;
  flex: 1 1 230px;
  margin-bottom: 20px;
}

.course-filters {
  margin-top: 24px;
  background: #f4faff;
  padding: 17px 18px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 0.98rem;
}
.course-filters ul {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}
.course-filters li {
  background: #60A9A6;
  color: #fff;
  padding: 4px 14px;
  border-radius: 11px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95em;
  letter-spacing: 0.01em;
}

.contact-map {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 15px;
  background: #f4faff;
  border-radius: 13px;
  padding: 12px 14px;
}
.contact-map img {
  width: 36px;
  height: 36px;
}

.confirmation .content-wrapper {
  align-items: center;
  text-align: center;
  gap: 26px;
}

/* TESTIMONIALS =================================================================================== */
.testimonials .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.testimonial-card p {
  color: #293D5A;
  font-size: 1.12rem;
  font-style: italic;
  margin-bottom: 7px;
}
.testimonial-details {
  font-size: 1rem;
  color: #947F32;
  font-weight: 600;
  font-style: normal;
  padding-left: 2px;
  font-family: 'Montserrat', 'Open Sans', sans-serif;
}

/* FOOTER ========================================================================================= */
footer {
  background: #293D5A;
  color: #fff;
  margin-top: 90px;
  padding: 44px 0 34px 0;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-nav,
.footer-legal {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer-nav a,
.footer-legal a {
  color: #F2E87B;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  letter-spacing: 0.01em;
  font-size: 1.05rem;
  transition: color 0.17s;
}
.footer-nav a:hover, .footer-nav a:focus, .footer-legal a:hover {
  color: #60A9A6;
}
.footer-contact {
  flex: 1 1 260px;
  font-size: 0.98rem;
}
.footer-contact a {
  color: #60A9A6;
  text-decoration: underline;
  word-break: break-word;
}
.footer-social {
  display: flex;
  gap: 18px;
  margin-top: 8px;
}
.footer-social img {
  width: 28px;
  height: 28px;
  filter: brightness(1.13) drop-shadow(0px 0px 2px #F2E87B);
  transition: filter 0.14s, transform 0.16s;
}
.footer-social img:hover {
  filter: brightness(1.3) drop-shadow(0px 2px 8px #60A9A6);
  transform: scale(1.08);
}

/* LEGAL (POLICY) PAGES =========================================================================== */
.legal {
  background: #fffde7;
  border-radius: 33px;
  box-shadow: 0 2px 20px rgba(96,169,166, 0.10);
  margin-bottom: 48px;
  padding: 44px 22px 48px 22px;
}
.legal h1 {
  color: #293D5A;
  font-size: 2.15rem;
  margin-bottom: 22px;
}
.legal h2, .legal h3 {
  color: #60A9A6;
  font-weight: bold;
  margin-top: 30px;
}
.legal ul {
  margin-bottom: 24px;
}


/* COOKIE CONSENT BANNER =========================================================================== */
.cookie-banner {
  position: fixed;
  left: 30px; right: 30px; bottom: 34px;
  background: #fff;
  color: #293D5A;
  border-radius: 22px;
  box-shadow: 0 10px 28px rgba(96,169,166,0.13);
  z-index: 9999;
  padding: 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
  transition: transform 0.25s, opacity 0.25s;
  opacity: 1;
  pointer-events: auto;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(45px);
}
.cookie-banner strong {
  color: #60A9A6;
}
.cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 8px 22px;
  border-radius: 16px;
  border: none;
  cursor: pointer;
  margin-top: 2px;
  transition: background 0.18s, color 0.16s, box-shadow 0.17s;
}
.cookie-btn.accept {
  background: #60A9A6;
  color: #fff;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #293D5A;
  color: #F2E87B;
}
.cookie-btn.reject {
  background: #F2E87B;
  color: #293D5A;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #293D5A;
  color: #F2E87B;
}
.cookie-btn.settings {
  background: #fff;
  color: #60A9A6;
  border: 1.5px solid #60A9A6;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #60A9A6;
  color: #fff;
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(41,61,90,0.28);
  z-index: 10010;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.25s;
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal-content {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 10px 38px rgba(96,169,166,0.20);
  padding: 34px 26px 28px 28px;
  max-width: 400px;
  width: 94vw;
  color: #293D5A;
  position: relative;
  animation: cookie-modal-bounce 0.42s cubic-bezier(.9,.1,.48,1.08);
}
@keyframes cookie-modal-bounce {
  0% { transform: scale(0.88) translateY(35px); opacity: 0; }
  60% { transform: scale(1.03) translateY(-8px); opacity: 1; }
  80% { transform: scale(0.97) translateY(6px); }
  100% { transform: scale(1) translateY(0); }
}
.cookie-modal-close {
  position: absolute;
  top: 14px; right: 17px;
  background: #F2E87B;
  color: #293D5A;
  border: none;
  border-radius: 9px;
  font-size: 1.5rem;
  padding: 2px 8px;
  cursor: pointer;
  transition: background 0.16s, color 0.15s;
  z-index: 20010;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #293D5A;
  color: #F2E87B;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin: 23px 0 17px 0;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 1.05em;
}
.cookie-category label {
  font-weight: 500;
  color: #60A9A6;
  cursor: pointer;
  user-select: none;
}
.cookie-category input[type='checkbox'] {
  accent-color: #60A9A6;
  width: 16px; height: 16px;
  vertical-align: middle;
}
.cookie-category.essential label {
  color: #b2b2b2;
  cursor: default;
  margin-right: 3px;
}
.cookie-category.essential input[type='checkbox'] {
  pointer-events: none;
}

.cookie-modal .cookie-btn-row {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}


/* ARTISTIC CREATIVE ELEMENTS ===================================================================== */
.hero::before, .hero::after {
  content: '';
  position: absolute;
  z-index: 1;
}
.hero::before {
  left: -40px; top: 15%;
  width: 110px; height: 110px;
  border-radius: 50%;
  background: #F2E87B;
  opacity: 0.26;
}
.hero::after {
  right: -32px; top: 3%;
  width: 64px; height: 64px;
  border-radius: 45%;
  background: #fff;
  opacity: 0.12;
}

.features .feature-grid::before {
  content: '';
  position: absolute;
  z-index: 0;
  pointer-events: none;
}

/* Creative brush underline for headings */
h2, .features h2, .about h2, .services h2 {
  position: relative;
  display: inline-flex;
}
h2::after, .features h2::after, .about h2::after, .services h2::after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 66%;
  height: 11px;
  border-radius: 8px 14px 14px 8px;
  background: #F2E87B;
  opacity: 0.48;
  z-index: -1;
}

/* Artistic font effect for CTA headlines */
.cta h2, .cta h1 {
  font-family: 'Montserrat', cursive, sans-serif;
  color: #60A9A6;
  text-shadow: 1px 1px 0 #F2E87B, 0 8px 20px #fffbe9;
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 0.03em;
  margin-bottom: 20px;
}


/* RESPONSIVE DESIGN ============================================================================== */
@media (max-width: 990px) {
  .container {
    max-width: 98vw;
    padding-left: 14px;
    padding-right: 14px;
  }
  .main-nav {
    gap: 15px;
  }
  footer .container {
    gap: 18px;
  }
  .features .feature-grid, .testimonials .content-wrapper {
    gap: 16px;
  }
}
@media (max-width: 820px) {
  .main-nav a, .footer-nav a {
    font-size: 1rem;
    padding-left: 5.5px; padding-right: 5.5px;
  }
  .footer-legal a {
    font-size: 1rem;
  }
  .hero {
    padding: 44px 0 32px 0;
  }
}
@media (max-width: 720px) {
  .container {
    padding-left: 4px;
    padding-right: 4px;
  }
  .section {
    padding: 32px 2px;
  }
  .footer-contact{
    font-size: 0.91rem;
  }
  .cookie-banner {
    left: 6px; right: 6px;
    padding: 18px 10px;
    font-size: 0.97em;
  }
  .cookie-modal-content {
    padding: 17px 6px 15px 8px;
    font-size: 0.97em;
  }
}
@media (max-width: 600px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .features .feature-grid, .testimonials .content-wrapper, .opportunity-grid {
    flex-direction: column;
    gap: 16px;
  }
  .content-grid {
    flex-direction: column;
    gap: 12px;
  }
  .testimonial-card {
    flex-direction: column;
    gap: 11px;
    padding: 16px 11px;
  }
  .opportunity-grid > div {
    padding: 17px 8px;
  }
}
@media (max-width: 500px) {
  h1 { font-size: 1.42rem; }
  h2 { font-size: 1.11rem; }
  .footer-social img {
    width: 20px; height: 20px;
  }
  .cookie-modal-content {
    max-width: 95vw;
    font-size: 0.93em;
  }
  .cta, .cta.primary {
    padding: 10px 19px;
    font-size: 1rem;
  }
}
@media (max-width: 400px) {
  .cookie-banner {
    font-size: 0.87em;
  }
}

/* RESPONSIVE FLEX DIRECTIONS SWITCH */
@media (max-width: 900px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    text-align: left;
  }
}

/* Reduce footer stacks on mobile */
@media (max-width: 700px) {
  footer .container {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
    padding-top: 20px;
    padding-bottom: 12px;
  }
  .footer-social {
    margin-bottom: 6px;
  }
}

/* --- Helper transitions and micro-interactions --- */
button, .cta, .mobile-menu-toggle, .cookie-btn {
  transition: background 0.15s, color 0.14s, box-shadow 0.16s, transform 0.15s;
}

/* Artistic font Fallbacks optimized for web */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  src: local('Montserrat'), url('https://fonts.gstatic.com/s/montserrat/v25/JTUQjIg1_i6t8kCHKm4532VJOt5-QNFgpC0.woff2') format('woff2');
}
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  src: local('Open Sans'), url('https://fonts.gstatic.com/s/opensans/v17/mem8YaGs126MiZpBA-U1Ug.woff2') format('woff2');
}

/* END */
