/* 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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #F5F3EA;
  color: #284D40;
  font-family: 'Open Sans', Arial, sans-serif;
  min-height: 100vh;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

input, button, textarea, select {
  font-family: inherit;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

a:focus {
  outline: 2px solid #B7C7A8;
  outline-offset: 2px;
}

/* BRAND VARIABLES */
:root {
  --color-primary: #284D40;
  --color-secondary: #B7C7A8;
  --color-accent: #F5F3EA;
  --color-dark: #284D40;
  --color-light: #FFFFFF;
  --color-vibrant1: #C85488;
  --color-vibrant2: #2578B5;
  --color-vibrant3: #FFB957;
  --color-gray: #919488;
  --font-display: 'Roboto Slab', serif;
  --font-body: 'Open Sans', Arial, sans-serif;
}

/* CONTAINER + LAYOUT */
.container {
  width: 100%;
  max-width: 1200px;
  padding: 0 20px;
  margin: 0 auto;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-accent);
  border-radius: 24px;
  box-shadow: 0 6px 32px 0 rgba(40,77,64,0.06);
  position: relative;
}

/* LAYOUTS (FLEXBOX ONLY) */
.card-container,
.feature-grid,
.course-grid,
.team-list,
.offer-list,
.blog-posts-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}

.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;
  margin-bottom: 20px;
  background: var(--color-light);
  border-radius: 20px 60px 25px 60px;
  box-shadow: 0 2px 16px 0 rgba(40,77,64,0.12);
  border-left: 6px solid var(--color-vibrant1);
}

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

.card {
  margin-bottom: 20px;
  position: relative;
}

.course-card, .offer-card, .blog-post-card, .team-member {
  background: var(--color-light);
  border-radius: 24px;
  box-shadow: 0 2px 16px 0 rgba(40,77,64,0.12);
  padding: 32px 24px;
  margin-bottom: 20px;
  flex: 1 1 260px;
  min-width: 260px;
  max-width: 32%;
  transition: transform 0.18s, box-shadow 0.18s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.course-card:hover,
.offer-card:hover,
.blog-post-card:hover,
.team-member:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 8px 32px 0 rgba(200,84,136,0.13);
}

.blog-post-card a {
  color: var(--color-primary);
  font-weight: 600;
  text-decoration: underline dotted var(--color-vibrant1);
  margin-top: 18px;
  font-size: 16px;
}
.blog-post-card a:hover {
  color: var(--color-vibrant2);
}

.text-section {
  max-width: 700px;
}

.map-placeholder {
  display: flex;
  align-items: center;
  gap: 16px;
  border-radius: 16px;
  background: var(--color-secondary);
  color: var(--color-primary);
  padding: 16px 20px;
  margin: 30px 0 0 0;
  font-size: 16px;
  font-weight: 500;
}

/***************************
  TYPOGRAPHY
***************************/
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--color-primary);
  line-height: 1.15;
  letter-spacing: 0.01em;
  font-weight: 700;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 18px;
  color: var(--color-vibrant1);
  text-shadow: 2px 2px 0 #F5F3EA, 10px 8px 0 rgba(40,77,64,0.03);
  font-family: 'Roboto Slab', serif;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
  color: var(--color-vibrant2);
  font-style: italic;
  font-family: 'Roboto Slab', serif;
}
h3 {
  font-size: 1.35rem;
  margin-bottom: 8px;
  color: var(--color-primary);
  font-family: 'Roboto Slab', serif;
}
h4, h5, h6 {
  font-size: 1.05rem;
  margin-bottom: 6px;
}
p, li, ul, ol, td, th {
  font-family: var(--font-body);
  font-size: 1.125rem;
  color: var(--color-dark);
  margin-bottom: 12px;
}
p {
  line-height: 1.7;
  margin-bottom: 20px;
}
strong {
  color: var(--color-vibrant1);
}

ul, ol {
  padding-left: 22px;
  margin-bottom: 12px;
}

li {
  margin-bottom: 10px;
  list-style: square outside var(--color-secondary);
}

blockquote {
  border-left: 6px solid var(--color-vibrant2);
  padding-left: 20px;
  font-size: 1.25rem;
  color: var(--color-vibrant2);
  font-family: var(--font-display);
  margin: 24px 0;
  background: #f0f5f5;
}

/***************************
  HEADER + NAVIGATION
***************************/
header {
  background: var(--color-light);
  border-bottom: 2px solid var(--color-secondary);
  padding: 0;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 20px;
}
header img {
  max-height: 48px;
  margin-right: 20px;
}
nav {
  display: flex;
  gap: 22px;
  align-items: center;
  font-family: var(--font-body);
  font-size: 1rem;
}
nav a {
  padding: 0 6px 2px 6px;
  border-radius: 6px;
  color: var(--color-dark);
  position: relative;
  font-weight: 600;
  transition: color 0.15s, background 0.15s;
}
nav a:hover, nav a.active {
  color: var(--color-vibrant1);
  background: var(--color-accent);
}
nav .cta-primary {
  background: var(--color-vibrant1);
  color: #fff;
  padding: 10px 22px;
  border-radius: 24px;
  font-size: 1.1rem;
  box-shadow: 0 4px 24px 0 rgba(40,77,64,0.08);
  margin-left: 8px;
  transition: background 0.18s, box-shadow 0.18s, transform 0.16s;
}
nav .cta-primary:hover,
nav .cta-primary:focus {
  background: var(--color-vibrant2);
  color: #fff;
  transform: scale(1.05);
  box-shadow: 0 8px 32px rgba(37,120,181,0.14);
}

/* Mobile Burger */
.mobile-menu-toggle {
  background: var(--color-vibrant2);
  color: #fff;
  border: none;
  font-size: 2.2rem;
  line-height: 1;
  border-radius: 50%;
  padding: 6px 13px;
  cursor: pointer;
  margin-left: 16px;
  display: none;
  transition: background 0.16s;
}
.mobile-menu-toggle:hover {
  background: var(--color-vibrant1);
}

/***************************
  MOBILE MENU
***************************/
.mobile-menu {
  position: fixed;
  top: 0; left: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(40,77,64,0.86);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.7,0,.3,1);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.menu-open {
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu-close {
  background: var(--color-light);
  color: var(--color-vibrant1);
  font-size: 2.2rem;
  border: none;
  margin: 22px 30px 18px 0;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  cursor: pointer;
  box-shadow: 0 4px 32px rgba(0,0,0,0.08);
  transition: background 0.16s;
  z-index: 2;
}
.mobile-menu-close:hover {
  background: var(--color-vibrant1);
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  padding: 30px 44px;
  width: 100vw;
}
.mobile-nav a {
  color: #fff;
  background: transparent;
  font-size: 1.38rem;
  border-radius: 10px;
  padding: 8px 12px;
  transition: background 0.15s, color 0.15s;
}
.mobile-nav a:hover {
  color: var(--color-vibrant3);
  background: rgba(197,84,136,0.09);
}

/***************************
  HERO SECTIONS
***************************/
.hero {
  background: linear-gradient(124deg, #F5F3EA 70%, #B7C7A8 130%);
  padding: 60px 0 55px 0;
  margin-bottom: 60px;
  border-radius: 0 0 60px 60px;
  min-height: 240px;
  box-shadow: 0 8px 28px 0 rgba(40,77,64,0.08);
  position: relative;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 0 6px;
  max-width: 700px;
}
.hero h1 {
  font-size: 2.8rem;
  color: var(--color-vibrant1);
  margin-bottom: 8px;
}
.hero p {
  color: var(--color-primary);
  font-size: 1.28rem;
  font-style: italic;
}

/***************************
  BUTTONS & CTA
***************************/
.cta-primary,
.cta-secondary {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.12rem;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 12px 28px;
  border-radius: 30px;
  margin-top: 8px;
  box-shadow: 0 3px 16px 0 rgba(200,84,136,0.07);
  transition: background 0.12s, color 0.12s, box-shadow 0.14s, transform 0.12s;
  text-align: center;
}
.cta-primary {
  background: var(--color-vibrant1);
  color: #fff;
}
.cta-primary:hover,
.cta-primary:focus {
  background: var(--color-vibrant2);
  box-shadow: 0 8px 36px 0 rgba(37,120,181,0.13);
  color: #fff;
}
.cta-secondary {
  background: var(--color-light);
  color: var(--color-primary);
  border: 2px solid var(--color-vibrant2);
}
.cta-secondary:hover,
.cta-secondary:focus {
  background: var(--color-vibrant2);
  color: #fff;
}

/***************************
  CARDS
***************************/
.card {
  background: var(--color-light);
  border-radius: 24px;
  box-shadow: 0 2px 16px rgba(40,77,64,0.10);
  padding: 24px 18px;
  margin-bottom: 20px;
  min-width: 260px;
  transition: box-shadow 0.12s;
}
.card:hover {
  box-shadow: 0 8px 32px rgba(200,84,136,0.12);
}

.card-content,
.content-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}

/***************************
  FEATURES
***************************/
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
  justify-content: flex-start;
}
.feature {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: var(--color-light);
  border-radius: 20px 50px 20px 40px;
  box-shadow: 0 2px 12px 0 rgba(40,77,64,0.09);
  padding: 24px 22px 18px 22px;
  min-width: 215px;
  max-width: 275px;
  flex: 1 1 215px;
  margin-bottom: 10px;
  position: relative;
  border-left: 5px solid var(--color-vibrant2);
  transition: box-shadow 0.14s, transform 0.14s;
}
.feature img {
  width: 44px;
  margin-bottom: 14px;
}
.feature h3 {
  color: var(--color-vibrant2);
  font-size: 1.15rem;
  margin-bottom: 7px;
}
.feature:hover {
  box-shadow: 0 8px 26px rgba(197,84,136,0.09);
  transform: translateY(-2px) scale(1.025);
}

/***************************
  TEAM MEMBERS
***************************/
.team-list {
  gap: 24px;
  margin-top: 14px;
  width: 100%;
}
.team-member {
  background: var(--color-light);
  border-radius: 19px 40px 26px 48px;
  box-shadow: 0 2px 16px rgba(37,120,181,0.10);
  flex: 1 1 215px;
  min-width: 215px;
  max-width: 270px;
  padding: 26px 18px 20px 24px;
  margin-bottom: 20px;
  font-size: 1.08rem;
  position: relative;
  border-right: 5px solid var(--color-vibrant2);
  transition: box-shadow 0.14s, transform 0.14s;
}
.team-member h3 {
  color: var(--color-vibrant1);
  font-size: 1.19rem;
}

/***************************
  TABLES / PRICING
***************************/
.pricing-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 12px;
  margin-bottom: 30px;
}
.pricing-table th, .pricing-table td {
  background: var(--color-light);
  padding: 18px 20px;
  text-align: left;
  font-size: 1rem;
  border-radius: 14px 5px;
  box-shadow: 0 1px 4px 0 rgba(37,120,181,0.05);
}
.pricing-table th {
  font-size: 1.07rem;
  background: var(--color-secondary);
  color: var(--color-primary);
  font-weight: 700;
}
.pricing-table tr td {
  border-left: 3px solid var(--color-vibrant2);
}

/***************************
  TESTIMONIALS
***************************/
.testimonials {
  margin-bottom: 60px;
  margin-top: 10px;
}
.testimonials .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0px;
}
.testimonial-card {
  box-shadow: 0 2px 16px 0 rgba(40,77,64,0.19);
  background: var(--color-light);
  border-radius: 20px 60px 25px 60px;
  border-left: 6px solid var(--color-vibrant2);
  margin-bottom: 24px;
  transition: box-shadow 0.14s, transform 0.12s;
  display: flex;
  flex-direction: column;
  position: relative;
  gap: 14px;
}
.testimonial-card p {
  font-style: italic;
  color: var(--color-primary);
  font-size: 1.11rem;
  margin-bottom: 6px;
}
.testimonial-meta {
  font-size: 1rem;
  color: var(--color-gray);
  font-family: var(--font-body);
  font-style: normal;
  margin-left: 2px;
}
.testimonial-card:hover {
  box-shadow: 0 6px 32px 0 rgba(37,120,181,0.11);
  transform: scale(1.025);
}

/***************************
  FAQ LISTS
***************************/
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 18px;
}
.faq-list li {
  background: var(--color-accent);
  border-left: 5px solid var(--color-vibrant2);
  padding: 14px 16px;
  border-radius: 14px 20px 20px 8px;
  font-size: 1.075rem;
  font-style: italic;
  list-style: none;
  margin-bottom: 8px;
}

/***************************
  FOOTER
***************************/
footer {
  background: var(--color-primary);
  color: var(--color-accent);
  padding: 36px 0 20px 0;
  font-size: 0.97rem;
  border-radius: 38px 38px 0 0;
  margin-top: 70px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 16px;
}
.footer-nav a {
  color: var(--color-accent);
  text-decoration: underline wavy var(--color-vibrant1);
  transition: color 0.12s;
  font-size: 1.04rem;
}
.footer-nav a:hover {
  color: var(--color-vibrant3);
}
.footer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  color: var(--color-accent);
  font-size: 0.98rem;
  opacity: 0.78;
}

/***************************
  COOKIE BANNER & MODAL
***************************/
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 2400;
  background: var(--color-primary);
  color: var(--color-accent);
  padding: 24px 18px 20px 18px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 22px;
  box-shadow: 0 -5px 36px 0 rgba(40,77,64,0.21);
  border-radius: 30px 30px 0 0;
  font-size: 1rem;
  animation: cookie-pop 0.4s cubic-bezier(.66,0,.34,1);
}
@keyframes cookie-pop {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-banner-text {
  max-width: 600px;
}
.cookie-banner-actions {
  display: flex;
  flex-direction: row;
  gap: 10px;
  flex-shrink: 0;
}
.cookie-btn {
  font-size: 1rem;
  border: none;
  outline: none;
  margin-left: 0;
  border-radius: 22px;
  padding: 9px 19px;
  font-family: var(--font-body);
  font-weight: 600;
  background: var(--color-vibrant2);
  color: #fff;
  box-shadow: 0 2px 12px rgba(37,120,181,0.06);
  cursor: pointer;
  transition: background 0.13s, transform 0.13s;
}
.cookie-btn:hover,
.cookie-btn:focus {
  background: var(--color-vibrant1);
  color: #fff;
  transform: scale(1.06);
}
.cookie-btn.secondary {
  background: var(--color-secondary);
  color: var(--color-primary);
  border: 1.5px solid var(--color-vibrant2);
}
.cookie-btn.secondary:hover {
  background: var(--color-vibrant2);
  color: #fff;
}

.cookie-modal-overlay {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(40,77,64,0.82);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s;
}
.cookie-modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  background: var(--color-accent);
  border-radius: 26px;
  box-shadow: 0 8px 60px 0 rgba(40,77,64,0.19);
  padding: 38px 36px 22px 36px;
  max-width: 400px;
  width: 90vw;
  min-width: 250px;
  color: var(--color-primary);
  font-family: var(--font-body);
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  animation: cookie-fadein 0.3s ease;
}
@keyframes cookie-fadein {
  from { transform: scale(0.93); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}
.cookie-modal h3 {
  font-family: var(--font-display);
  color: var(--color-primary);
  font-size: 1.18rem;
  margin-bottom: 10px;
}
.cookie-modal-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-modal-list label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.08rem;
  font-weight: 500;
}
.cookie-switch {
  position: relative;
  width: 40px;
  height: 22px;
}
.cookie-switch input[type="checkbox"] {
  opacity: 0;
  width: 0; height: 0;
}
.cookie-slider {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--color-vibrant2);
  border-radius: 22px;
  transition: background 0.18s;
}
.cookie-switch input:checked + .cookie-slider {
  background: var(--color-vibrant1);
}
.cookie-slider:before {
  position: absolute;
  content: '';
  left: 4px; top: 3px;
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.20s;
  box-shadow: 0 2px 6px 0 rgba(40,77,64,0.12);
}
.cookie-switch input:checked + .cookie-slider:before {
  transform: translateX(16px);
}

.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 10px;
  margin-top: 10px;
  justify-content: flex-end;
}
.cookie-modal-close {
  position: absolute;
  top: 12px;
  right: 18px;
  background: transparent;
  border: none;
  color: var(--color-vibrant2);
  font-size: 2rem;
  cursor: pointer;
}
.cookie-modal-close:hover {
  color: var(--color-vibrant1);
}

/***************************
  MISC & UTILS
***************************/
.map-placeholder img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  margin-right: 6px;
}
h1.thankyou {
  color: var(--color-vibrant2);
}
.thankyou-section {
  background: linear-gradient(95deg, #F5F3EA 60%, #C85488 140%);
  padding: 54px 30px 50px 30px;
  margin-bottom: 60px;
  border-radius: 40px 24px 60px 30px;
}

/***************************
  RESPONSIVE
***************************/
@media (max-width: 1020px) {
  .feature-grid, .card-container, .course-grid, .offer-list, .team-list, .blog-posts-grid {
    gap: 18px;
  }
  .feature, .course-card, .offer-card, .team-member, .blog-post-card {
    max-width: 49%;
  }
}

@media (max-width: 768px) {
  .section {
    margin-bottom: 40px;
    padding: 20px 6px;
  }
  header .container {
    padding: 13px 6px;
  }
  nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
  .feature-grid, .card-container, .course-grid, .offer-list, .team-list, .blog-posts-grid {
    flex-direction: column;
    gap: 16px;
  }
  .feature, .course-card, .offer-card, .team-member, .blog-post-card {
    max-width: 100%;
    min-width: 0;
    padding: 24px 10px 18px 16px;
  }
  .text-image-section, .content-grid {
    flex-direction: column;
    gap: 16px;
  }
  .hero {
    padding: 42px 0 32px 0;
    border-radius: 0 0 32px 32px;
  }
  .thankyou-section {
    padding: 34px 10px 32px 10px;
    border-radius: 20px 10px 32px 10px;
  }
  .footer-nav, .footer-meta {
    gap: 12px;
    flex-direction: column;
    align-items: flex-start;
  }
  .cookie-banner {
    flex-direction: column;
    gap: 10px;
    padding: 16px 8px 14px 8px;
    font-size: 0.97em;
  }
}

@media (max-width:540px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.4rem; }
  .hero h1 { font-size: 2rem; }
  .map-placeholder {
    font-size: 0.96rem;
    padding: 12px 7px;
  }
  .footer-nav a { font-size: 0.99rem; }
  .container { padding: 0 5px; }
  .section { padding: 16px 4px; }
}

/* Decorative Unique Artistic Elements */
.feature:after, .testimonial-card:before {
  content: '';
  display: block;
  position: absolute;
  pointer-events: none;
}
.feature:after {
  top: -16px;
  right: 12px;
  width: 48px; height: 18px;
  background: var(--color-vibrant3);
  border-radius: 10px 38px 12px 30px;
  opacity: 0.20;
  z-index: 1;
}
.testimonial-card:before {
  top: -18px; left: -24px;
  width: 62px; height: 18px;
  background: var(--color-vibrant1);
  border-radius: 20px 42px 17px 18px;
  opacity: 0.12;
}

/*********** END ***********/
