/* 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, 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;
}

main {
padding-top: 50px;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, main, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #fff;
 
  color: #181818;
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 400;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
*, *:before, *:after {
  box-sizing: inherit;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #181818;
  text-decoration: none;
  transition: color 0.2s;
}
ul, ol {
  list-style: none;
}

/* BASE TYPOGRAPHY */
h1, h2, h3, h4 {
  font-family: 'Merriweather', Georgia, serif;
  font-weight: 700;
  margin-bottom: 16px;
  color: #111111;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.6rem;
  line-height: 1.15;
  margin-bottom: 20px;
  color: #181818;
}
h2 {
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: 18px;
  color: #222;
}
h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 10px;
}
h4 {
  font-size: 1.1rem;
  font-weight: 700;
}

body, p, li {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  color: #333;
}
p {
  margin-bottom: 16px;
  color: #222;
  line-height: 1.7;
}
strong, b {
  font-weight: 700;
}

blockquote {
  font-family: 'Merriweather', Georgia, serif;
  font-size: 1.25rem;
  color: #181818;
  border-left: 4px solid #181818;
  padding-left: 20px;
  margin: 0 0 16px 0;
  background: #FAFAFA;
  font-style: italic;
}

/* LAYOUT CONTAINER & FLEX SETTINGS */
.container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 20px;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0;
}

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

/* HERO & CONTENT STYLES */
.text-section {
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 22px;
    align-items: stretch;
  }
}

/* CARD LAYOUTS AND FLEXBOX GRIDS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 6px 28px rgba(0,0,0,0.07);
  margin-bottom: 20px;
  padding: 32px 28px 24px 28px;
  position: relative;
  min-width: 260px;
  flex: 1 1 290px;
  transition: box-shadow 0.2s, background 0.2s;
}
.card:hover {
  background: #F4F4F4;
  box-shadow: 0 12px 34px rgba(14,14,14,0.13);
  z-index: 2;
}

/* FEATURE GRID */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.feature {
  background: #faf9f6;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.03);
  padding: 24px;
  flex: 1 1 220px;
  min-width: 210px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, transform 0.18s;
}
.feature img {
  height: 40px;
  width: 40px;
  filter: grayscale(100%) contrast(140%);
  margin-bottom: 10px;
}
.feature:hover {
  box-shadow: 0 6px 28px rgba(0,0,0,0.10);
  transform: translateY(-3px) scale(1.01);
  background: #f0f0f0;
}

/* SERVICES/COURSE LISTS */
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.service-list li {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 14px rgba(0,0,0,0.04);
  padding: 25px 23px 15px 23px;
  flex: 1 1 320px;
  min-width: 220px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}
.service-list .service-cta {
  margin-top: 6px;
  font-size: 1rem;
  color: #fff;
  background: #22495A;
  border-radius: 24px;
  padding: 6px 18px;
  transition: background 0.2s, color 0.2s;
  font-family: 'Open Sans', Arial, sans-serif;
  letter-spacing: 0.02em;
  font-weight: 600;
}
.service-list .service-cta:hover {
  background: #181818;
  color: #faf9f6;
}

/* TABLE STYLING */
table {
  width: 100%;
  margin: 22px 0 24px 0;
  border-collapse: collapse;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.04);
}
thead {
  background: #f7f7f7;
}
th, td {
  padding: 14px 18px 14px 14px;
  font-size: 1rem;
  color: #181818;
  text-align: left;
  font-family: 'Open Sans', Arial, sans-serif;
}
th {
  font-weight: 700;
  letter-spacing: 0.01em;
}
tbody tr {
  border-bottom: 1px solid #ececec;
}
tbody tr:last-child {
  border-bottom: none;
}

/* MAIN TESTIMONIAL CARDS */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #faf9f6;
  border-radius: 16px;
  margin-bottom: 20px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  transition: box-shadow 0.16s, background 0.16s;
  min-width: 220px;
  flex: 1 1 400px;
}
.testimonial-card:hover {
  background: #f1f1f1;
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
}
.testimonial-card blockquote {
  color: #181818;
  background: none;
  border-left: 4px solid #222;
  font-size: 1.10rem;
  padding-left: 16px;
  margin: 0;
  font-style: italic;
  font-family: 'Merriweather', Georgia, serif;
}
.testimonial-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  font-size: 0.98rem;
  color: #222;
  font-family: 'Open Sans', Arial, sans-serif;
}
.testimonial-meta strong {
  color: #222;
}
@media (max-width: 800px) {
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* BUTTONS AND CTA ELEMENTS */
.cta-btn {
  display: inline-block;
  padding: 12px 32px;
  background: #181818;
  color: #faf9f6;
  font-family: 'Merriweather', Georgia, serif;
  letter-spacing: 0.04em;
  font-size: 1.15rem;
  font-weight: 700;
  border: none;
  border-radius: 32px;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, transform 0.12s;
  margin-top: 14px;
  box-shadow: 0 2px 16px rgba(34,73,90,0.06);
  outline: none;
}
.cta-btn:hover, .cta-btn:focus {
  background: #22495A;
  color: #fff;
  box-shadow: 0 5px 24px rgba(14,14,14,0.13);
  transform: translateY(-2px) scale(1.02);
}

.cta-box {
  margin-top: 18px;
  display: flex;
  gap: 18px;
}

/* HEADER & NAVIGATION */
header {
  background: #fff;
  border-bottom: 1px solid #ececec;
  box-shadow: 0 2px 10px rgba(0,0,0,0.025);
  position: sticky;
  top: 0; left: 0; right: 0;
  z-index: 80;
}
header .container {
  height: 93px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.logo-link img {
  height: 48px;
  margin-right: 12px;
}
.desktop-nav {
  display: flex;
  gap: 22px;
  align-items: center;
  flex-wrap: wrap;
  margin-left: 24px;
}
.desktop-nav a {
  color: #181818;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1.02rem;
  position: relative;
  padding: 4px 8px;
  border-radius: 6px;
  transition: color 0.14s, background 0.14s;
}
.desktop-nav a:hover, .desktop-nav a:focus {
  background: #faf9f6;
  color: #22495A;
}

@media (max-width: 1040px) {
  header .container {
    height: auto;
    flex-direction: row;
    align-items: flex-start;
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .desktop-nav {
    gap: 14px;
    margin-left: 12px;
  }
}
@media (max-width: 820px) {
  .desktop-nav,
  .cta-btn {
    display: none !important;
  }
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  color: #181818;
  cursor: pointer;
  border-radius: 8px;
  padding: 8px 10px;
  transition: background 0.2s, color 0.2s;
  z-index: 130;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #f1f1f1;
  color: #22495A;
}
@media (max-width: 820px) {
  .mobile-menu-toggle {
    display: inline-block;
  }
}

.mobile-menu {
  position: fixed;
  top: 0; right: 0; bottom: 0; left: 0;
  background: rgba(24,24,24,0.98);
  color: #faf9f6;
  z-index: 120;
  transform: translateX(100%);
  transition: transform 0.36s cubic-bezier(0.65,0,0.35,1);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 0;
  overflow-y: auto;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 1.95rem;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  margin: 28px 32px 0 0;
  border-radius: 7px;
  transition: background 0.2s, color 0.2s;
  z-index: 140;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: #333;
  color: #A4BC69;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 34px;
  padding: 44px 28px 28px 44px;
  align-items: flex-start;
  margin-top: 35px;
  width: 100%;
}
.mobile-nav a {
  color: #faf9f6;
  font-size: 1.30rem;
  font-family: 'Merriweather', Georgia, serif;
  padding: 8px 0;
  letter-spacing: 0.005em;
  font-weight: 700;
  transition: color 0.18s, background 0.18s;
  border-radius: 4px;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  color: #A4BC69;
  background: #202020;
}

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

/* FOOTER STYLES */
footer {
  background: #181818;
  color: #faf9f6;
  padding: 48px 0 20px 0;
}
footer .container {
  width: 100%;
  padding: 0 20px;
}
footer .content-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 38px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  min-width: 210px;
}
.footer-brand img {
  width: 48px;
  filter: brightness(4) grayscale(0.5);
}
.footer-brand p {
  color: #FAF9F6;
  font-size: 1.08rem;
  margin-bottom: 0;
  font-family: 'Merriweather', Georgia, serif;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.footer-nav, .privacy-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-nav a, .privacy-nav a {
  color: #faf9f6;
  font-size: 0.99rem;
  font-family: 'Open Sans', Arial, sans-serif;
  opacity: 0.91;
  transition: color 0.18s, text-decoration 0.16s;
}
.footer-nav a:hover, .privacy-nav a:hover {
  color: #A4BC69;
  text-decoration: underline;
}
.footer-contact {
  margin-top: 0;
  min-width: 210px;
}
.footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer-contact li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.97rem;
  color: #faf9f6;
  font-family: 'Open Sans', Arial, sans-serif;
  opacity: 0.88;
}
.footer-contact img {
  width: 20px;
  opacity: 0.75;
  margin-right: 6px;
}
.footer-social {
  display: flex;
  flex-direction: row;
  gap: 18px;
  align-items: center;
  margin-top: 14px;
}
.footer-social a img {
  width: 32px;
  height: 32px;
  filter: grayscale(1) brightness(11);
  opacity: 0.8;
  transition: filter 0.18s, opacity 0.18s;
}
.footer-social a:hover img {
  filter: grayscale(0) brightness(1.3);
  opacity: 1;
}
@media (max-width: 1100px) {
  footer .content-wrapper {
    gap: 26px;
    flex-wrap: wrap;
    flex-direction: row;
  }
}
@media (max-width: 1020px) {
  footer .content-wrapper {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
}

/* SECTION/GENERAL SPACING & FLEX CLASSES */
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 22px;
}

/* LIST STYLES */
ul, ol {
  margin-bottom: 16px;
  margin-left: 0;
}
ul li, ol li {
  margin-bottom: 10px;
  padding-left: 28px;
  position: relative;
  font-size: 1rem;
  line-height: 1.6;
  color: #292929;
}
ul li:before {
  content: '\2022';
  color: #A4BC69;
  font-size: 1.15em;
  position: absolute;
  left: 0;
  top: 2px;
  font-weight: 600;
}
ol {
  counter-reset: olig;
}
ol li:before {
  content: counter(olig) ". ";
  counter-increment: olig;
  color: #22495A;
  font-size: 1.04em;
  position: absolute;
  left: 0;
  font-family: 'Merriweather', Georgia, serif;
}

/* ICON IMAGE IN LIST */
ul li img {
  height: 22px;
  width: 22px;
  object-fit: contain;
  display: inline-block;
  margin-right: 7px;
  vertical-align: middle;
  filter: grayscale(100%) contrast(130%);
}

/* MICROINTERACTIONS & TRANSITIONS */
button, a, .service-list .service-cta, .cta-btn, .card, .feature {
  transition: all 0.18s cubic-bezier(0.51,0.13,0.57,1.0);
}

/* ACCENT COLORS */
::-webkit-selection {
  background: #22495A;
  color: #faf9f6;
}
::selection {
  background: #22495A;
  color: #faf9f6;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1000px) {
  .container {
    max-width: 96vw;
  }
}
@media (max-width: 800px) {
  .container {
    max-width: 99vw;
    padding: 0 9px;
  }
  .feature, .service-list li, .testimonial-card, .card {
    min-width: 180px !important;
    padding: 18px !important;
  }
}
@media (max-width: 600px) {
  h1 {
    font-size: 1.6rem;
  }
  h2 {
    font-size: 1.2rem;
  }
  .card, .feature, .service-list li, .testimonial-card {
    padding: 13px !important;
    font-size: 1em;
  }
  .section {
    padding: 24px 7px;
    margin-bottom: 30px;
  }
  .footer-brand img {
    width: 34px;
  }
  .footer-social a img {
    width: 23px;
    height: 23px;
  }
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  width: 100vw;
  background: #faf9f6;
  color: #222;
  padding: 24px 20px 18px 20px;
  z-index: 1002;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 -3px 14px rgba(14,14,14,0.11);
  border-top: 2px solid #22495A;
  transition: transform 0.35s cubic-bezier(0.65,0,0.35,1), opacity 0.18s;
}
.cookie-banner.hide {
  transform: translateY(110%);
  opacity: 0;
}
.cookie-banner-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  max-width: 1180px;
}
.cookie-banner-buttons {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-top: 10px;
}
.cookie-btn {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1.01rem;
  font-weight: 600;
  border-radius: 24px;
  border: none;
  padding: 8px 22px;
  color: #faf9f6;
  background: #22495A;
  cursor: pointer;
  margin-left: 0;
  transition: background 0.18s, color 0.18s;
}
.cookie-btn.accept {
  background: #22495A;
  color: #faf9f6;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #181818;
  color: #faf9f6;
}
.cookie-btn.reject {
  background: #A4BC69;
  color: #181818;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #8E9E48;
  color: #faf9f6;
}
.cookie-btn.settings {
  background: #fff;
  color: #22495A;
  border: 1px solid #22495A;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #f0f0f0;
  color: #181818;
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(24,24,24,0.65);
  z-index: 1100;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  transition: opacity 0.3s;
}
.cookie-modal.hide {
  display: none;
  opacity: 0;
}
.cookie-modal-content {
  background: #fff;
  color: #181818;
  max-width: 400px;
  width: 92vw;
  border-radius: 20px;
  padding: 34px 28px 28px 28px;
  box-shadow: 0 10px 44px rgba(14,14,24,0.20);
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
}
.cookie-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: none;
  border: none;
  font-size: 1.57rem;
  color: #22495A;
  cursor: pointer;
  border-radius: 6px;
  transition: background 0.16s, color 0.16s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #ededed;
  color: #181818;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.05rem;
  margin-bottom: 0;
}
.cookie-category label {
  font-weight: 600;
  letter-spacing: 0.01em;
  color: #22495A;
}
.cookie-category input[type="checkbox"] {
  width: 19px;
  height: 19px;
  accent-color: #22495A;
}
.cookie-category .essential {
  color: #181818;
  font-weight: 700;
  font-style: italic;
  opacity: 0.79;
  cursor: not-allowed;
}
.cookie-modal-actions {
  margin-top: 10px;
  display: flex;
  flex-direction: row;
  gap: 16px;
  justify-content: flex-end;
}

/* MISC */
::-webkit-scrollbar {
  width: 9px;
}
::-webkit-scrollbar-thumb {
  background: #e0e0e0;
  border-radius: 15px;
}
::-webkit-scrollbar-track {
  background: #faf9f6;
  border-radius: 12px;
}

/* PRINT / ACCESSIBILITY */
@media print {
  nav.desktop-nav, .mobile-menu-toggle, .cookie-banner, .footer-social {display:none;}
  body {background:#fff !important; color:#222 !important;}
}

/* UTILITIES */
.mt-0 {margin-top: 0 !important;}
.mb-0 {margin-bottom: 0 !important;}
.mt-10 {margin-top: 10px !important;}
.mb-20 {margin-bottom: 20px !important;}
.d-flex {display: flex !important;}
.align-center {align-items: center !important;}

/**** END THEME ****/
