/* =============================================================
   FRESH VOLT - Scandinavian Clean UI (Flexbox only)
   Author: Senior CSS Developer
   ============================================================= */
/* 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, menu, 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;
}
html {
  font-size: 16px;
  box-sizing: border-box;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  background: #F9F6F2;
  color: #1A2232;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.66;
  min-height: 100vh;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
}
a {
  color: #1EC8B7;
  background: none;
  text-decoration: none;
  transition: color .2s;
  font-weight: 600;
}
a:hover, a:focus {
  color: #12736C;
  text-decoration: underline;
  outline: none;
}
ul, ol {
  list-style-position: inside;
  margin-left: 0;
  margin-bottom: 1.4em;
}
img {
  max-width: 100%;
  vertical-align: middle;
  border-radius: 6px;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #1A2232;
  margin-bottom: 16px;
  line-height: 1.15;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2rem;
  margin-top: 0;
}
h2 {
  font-size: 1.5rem;
  margin-top: 30px;
}
h3 {
  font-size: 1.18rem;
}
h4, h5, h6 {
  font-size: 1rem;
}
p, li {
  font-size: 1rem;
  margin-bottom: 14px;
}
blockquote {
  font-style: italic;
  border-left: 3px solid #1EC8B7;
  padding-left: 18px;
  color: #1A2232;
  margin-bottom: 12px;
}
strong {
  font-weight: 700;
  color: #1A2232;
}
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* =============================================================
   CORE LAYOUT SECTIONS
   ============================================================= */
.section,
main > section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.text-section {
  max-width: 790px;
  margin: 0 auto 24px auto;
  text-align: left;
}
.text-section:last-child {
  margin-bottom: 0;
}

/* Card/Feature layouts */
.card-container,
.card-grid,
.feature-grid,
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 20px;
}
.card, .feature-grid li, .service-list li {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px 0 rgba(26,34,50,0.06);
  padding: 28px 28px 22px;
  margin-bottom: 20px;
  position: relative;
  flex: 1 1 246px;
  min-width: 220px;
  transition: box-shadow .18s, transform .15s;
  display: flex;
  flex-direction: column;
}
.card:hover, .feature-grid li:hover, .service-list li:hover {
  box-shadow: 0 8px 32px 0 rgba(26,34,50,.15);
  transform: translateY(-4px) scale(1.015);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Feature grid specific */
.feature-grid {
  flex-direction: row;
  gap: 24px;
  justify-content: flex-start;
  align-items: stretch;
  flex-wrap: wrap;
}
.feature-grid li {
  flex: 1 1 220px;
  min-width: 200px;
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 15px;
  border: none;
  margin: 0;
  padding: 26px 20px 16px 20px;
}
.feature-grid img {
  width: 42px;
  margin-bottom: 10px;
}

.service-list {
  flex-direction: row;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 24px;
}
.service-list li {
  flex: 1 1 270px;
  min-width: 230px;
  background: #fff;
  border-radius: 11px;
  box-shadow: 0 2px 10px 0 rgba(26,34,50,0.05);
  margin: 0;
  padding: 26px 16px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  transition: box-shadow .18s, transform .15s;
}
.service-price {
  margin-top: 14px;
  color: #1EC8B7;
  font-size: 1rem;
  font-weight: bold;
}

.card {
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 2px 12px 0 rgba(26,34,50,0.09);
  padding: 26px 22px 18px 22px;
  margin-bottom: 20px;
}
.card:last-child {margin-bottom:0;}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  align-items: flex-start;
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

/* Testimonial cards */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 2px 9px 0 rgba(26,34,50,0.08);
  padding: 20px;
  margin-bottom: 20px;
  color: #1A2232;
  font-size: 1.06rem;
  line-height: 1.6;
}
.testimonial-card blockquote {
  color: #23293B;
  margin: 0;
  font-size: 1rem;
}
.testimonial-card span {
  font-size: 0.97rem;
  font-weight: 600;
  color: #1A2232;
  margin-left: 10px;
  opacity: .8;
}

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 1001;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 28px;
  background: #fff;
  color: #1A2232;
  box-shadow: 0 -2px 20px rgba(26,34,50,.09);
  border-top: 1px solid #e4e4e4;
  padding: 20px 16px;
  width: 100vw;
  transition: transform .32s cubic-bezier(.39,.58,.57,1), opacity .3s;
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
}
.cookie-banner .cookie-text {
  flex: 1 1 0%;
  font-size: 0.97rem;
  color: #23303E;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  z-index: 1101;
  background: rgba(30, 45, 55, 0.20);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: all;
  opacity: 1;
  transition: opacity .3s;
}
.cookie-modal.hide { opacity: 0; pointer-events: none; }
.cookie-modal .cookie-modal-content {
  background: #fff;
  border-radius: 11px;
  box-shadow: 0 4px 50px rgba(26,34,50,.25);
  max-width: 440px;
  width: 95vw;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  right: 18px;
  top: 14px;
  background: none;
  color: #1A2232;
  font-size: 1.5rem;
  border: none;
  cursor: pointer;
  padding: 4px;
  opacity: 0.7;
  transition: opacity .15s;
}
.cookie-modal .cookie-modal-close:hover {opacity: 1;}
.cookie-modal .cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}
.cookie-modal label {
  cursor: pointer;
  font-weight: 600;
  color: #1A2232;
}
.cookie-modal input[type='checkbox'] {
  accent-color: #1EC8B7;
  width: 18px;
  height: 18px;
  margin-right: 6px;
}
.cookie-modal .cookie-switch[disabled], .cookie-modal .cookie-switch[aria-disabled='true'] {opacity: .65;}
.cookie-category .explanation {
  font-size: 0.9rem;
  color: #8B939E;
}


/* ===================
   NAVIGATION & HEADER
   =================== */
header {
  background: #F9F6F2;
  border-bottom: 1px solid #E5E5E1;
  position: relative;
}
.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  padding: 12px 0 10px 0;
  height: 68px;
}
.logo {
  display: flex;
  align-items: center;
  height: 48px;
}
.logo img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
}
.main-nav ul {
  display: flex;
  gap: 22px;
  flex-direction: row;
  align-items: center;
}
.main-nav ul li {
  list-style: none;
  font-size: 1rem;
}
.main-nav ul li a {
  color: #1A2232;
  padding: 5px 3px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  border-radius: 4px;
  font-weight: 600;
  transition: color .17s, background .14s;
}
.main-nav ul li a:hover,
.main-nav ul li a:focus {
  color: #1EC8B7;
  background: #edfaf7;
}

.btn-primary {
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 10.5px 30px;
  border-radius: 22px;
  background: #1EC8B7;
  color: #fff !important;
  font-size: 1.07rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  border: none;
  outline: none;
  transition: background .16s, box-shadow .18s, color .16s;
  box-shadow: 0 2px 10px rgba(26,200,183,0.07);
  cursor: pointer;
  text-align: center;
  display: inline-block;
  margin-left: 10px;
}
.btn-primary:hover, .btn-primary:focus {
  background: #13948b;
  color: #fff;
  box-shadow: 0 6px 24px rgba(26,200,183,0.15);
  text-decoration: none;
}

/* =====================
   MOBILE NAVIGATION
   ===================== */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 22px;
  top: 16px;
  z-index: 1002;
  background: #fff;
  color: #1A2232;
  border: none;
  border-radius: 10px;
  font-size: 2.1rem;
  padding: 7px 13px 7px 13px;
  box-shadow: 0 1px 8px rgba(26,34,50,0.10);
  cursor: pointer;
  transition: background .13s, color .14s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #F2F8F8;
  color: #1EC8B7;
  outline: 2px solid #1EC8B7;
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: fixed;
  top: 0; left: 0;
  right: 0; bottom: 0;
  background: #fff;
  z-index: 1310;
  min-height: 100vh;
  transform: translateX(-100vw);
  transition: transform .34s cubic-bezier(.39,.58,.57,1), opacity .24s;
  opacity: 0;
  box-shadow: 0 0 70px 0 rgba(26,34,50,0.15);
  padding: 0px 0px 0px 0px;
}
.mobile-menu.active {
  transform: translateX(0);
  opacity: 1;
}
.mobile-menu .mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  margin: 30px 28px 10px 0;
  font-size: 2.1rem;
  color: #1A2232;
  cursor: pointer;
  transition: color .13s, background .14s;
  padding: 6px 14px;
  border-radius: 12px;
}
.mobile-menu .mobile-menu-close:hover,
.mobile-menu .mobile-menu-close:focus {
  color: #1EC8B7;
  background: #edfaf7;
  outline: none;
}
.mobile-menu .mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100vw;
  margin-top: 30px;
  padding-left: 36px;
}
.mobile-menu .mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.2rem;
  color: #1A2232;
  text-decoration: none;
  padding: 14px 0;
  width: 88vw;
  display: block;
  border-radius: 7px;
  transition: background .13s, color .16s;
}
.mobile-menu .mobile-nav a:focus,
.mobile-menu .mobile-nav a:hover {
  background: #edfaf7;
  color: #1EC8B7;
}
.mobile-menu.active {
  box-shadow: 0 0 70px 5px rgba(26,34,50,0.18);
}

/* Hide desktop nav in mobile */
@media (max-width: 979px) {
  .main-nav ul,
  .main-nav > .btn-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 980px) {
  .mobile-menu {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: none;
  }
}

/* ===============================
   FOOTER
   =============================== */
footer {
  background: #f3f0ec;
  border-top: 1px solid #e7e5e3;
  font-size: 0.96rem;
  color: #1A2232;
  margin-top: 50px;
}
footer .content-wrapper {
  padding: 36px 0 16px 0;
  gap: 24px;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-brand {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 13px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  color: #1A2232;
  letter-spacing: 0.04em;
  margin-bottom: 9px;
}
.footer-brand img {
  width: 36px;
  height: 36px;
}
.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 7px;
  min-width: 180px;
}
.footer-menu li {
  list-style: none;
}
.footer-menu li a {
  color: #1A2232;
  text-decoration: none;
  opacity: 0.88;
  font-size: 0.98rem;
  font-weight: 500;
  transition: color .16s, opacity .13s;
}
.footer-menu li a:hover, .footer-menu li a:focus {
  color: #1EC8B7;
  opacity: 1;
  text-decoration: underline;
}
.footer-contact {
  margin-top: 4px;
  min-width: 220px;
}
.footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-contact ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  line-height: 1.4;
}
.footer-contact img {
  width: 18px;
  height: 18px;
}
.footer-copy {
  flex-basis: 100%;
  margin-top: 25px;
  font-size: 0.92rem;
  color: #8B939E;
  text-align: left;
  opacity: 0.9;
}

/* ===================
   CONTACT DETAILS 
   =================== */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 12px;
}
.contact-details li {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 1rem;
}
.contact-details a {
  color: #1EC8B7;
}
.location-map {
  margin: 18px 0 2px 0;
  font-size: 0.97rem;
  color: #314158;
  display: flex;
  align-items: center;
  gap: 7px;
}
.opening-hours {
  margin: 7px 0 0 0;
  font-size: 0.97rem;
  color: #314158;
  display: flex;
  align-items: center;
  gap: 7px;
}

/* ===================
   UTILITY CLASSES & LISTS
   =================== */
.faq,
.tips-list,
.value-list,
.guide-list,
.best-practices,
.key-principles,
.course-overview,
.workshop-details,
.team-bios,
.project-briefs,
.next-steps,
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style-type: disc;
  margin-bottom: 16px;
  margin-left: 16px;
}
.process-steps {
  list-style-type: decimal;
  gap: 10px;
  margin-bottom: 24px;
}
.project-briefs ul {
  margin-left: 16px;
  list-style-type: disc;
  gap: 6px;
}

/* ===================
   FORMS (if present)
   =================== */
input, textarea, select {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  padding: 11px 14px;
  border-radius: 7px;
  border: 1px solid #d6dadb;
  background: #f8f8f8;
  margin-bottom: 16px;
}
input:focus,
textarea:focus {
  outline: 2px solid #1EC8B7;
  border-color: #1EC8B7;
  background: #fff;
}

/* ===================
   RESPONSIVE DESIGN
   =================== */
@media (max-width: 1159px) {
  .container {
    max-width: 98vw;
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (max-width: 979px) {
  .feature-grid, .service-list, .card-container, .card-grid {
    flex-direction: column;
    gap: 20px;
  }
}
@media (max-width: 768px) {
  html { font-size: 15px; }
  h1 { font-size: 1.37rem; }
  h2 { font-size: 1.11rem; }
  .content-wrapper, .footer .content-wrapper {
    gap: 16px;
    flex-direction: column;
    align-items: flex-start !important;
  }
  .footer-menu,
  .footer-contact,
  .footer-copy,
  .footer-brand {
    margin-bottom: 16px;
  }
  .section,
  main > section {
    padding: 22px 6px;
    margin-bottom: 36px;
  }
  .testimonial-card {
    flex-direction: column;
    gap: 9px;
    font-size: 1rem;
    padding: 18px 8px;
  }
  .feature-grid li, .service-list li, .card {
    padding: 14px 10px 13px 10px;
    min-width: 0;
    font-size: 0.99rem;
  }
  .logo img {
    width: 41px;
    height: 41px;
  }
  .mobile-menu {
    padding-top: 9vw;
  }
  .mobile-menu-toggle {
    font-size: 1.6rem;
    right: 10px;
    top: 12px;
    padding: 6px 10px;
  }
  .cookie-banner {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
    padding: 17px 8px;
    font-size: 0.97rem;
  }
  .cookie-banner .cookie-actions {
    flex-direction: column;
    gap: 9px;
    align-items: flex-start;
  }
  .cookie-modal .cookie-modal-content {
    padding: 18px 10px;
    gap: 14px;
  }
}
@media (max-width: 480px) {
  .container { padding-left: 2px; padding-right: 2px; }
  .cookie-modal .cookie-modal-content {
    max-width: 98vw;
  }
}
.text-image-section,
.card-content {
  flex-direction: column;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: center;
    gap: 22px;
  }
  .card-content {
    align-items: flex-start;
  }
}

/* ===================
   MICRO-INTERACTIONS
   =================== */
.btn-primary, .service-list li, .feature-grid li, .card {
  transition: box-shadow .18s, transform .15s, background .18s, color .16s;
}

/* ===================
   SELECTION COLORS
   =================== */
::selection { background: #83e8dd; color: #1A2232; }
::-moz-selection { background: #83e8dd; color: #1A2232; }

/* -- End of CSS -- */