/* ========================
   RESET & BASE STYLES
======================== */
html {
  box-sizing: border-box;
  font-size: 16px;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #214B6B;
  background: #F5F8F8;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  line-height: 1.7;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: #4F7CA3;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #1a3f5c;
}
ul, ol {
  margin-left: 1.1em;
  margin-bottom: 16px;
}
ul li, ol li {
  margin-bottom: 8px;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #1d3244;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
h1 { font-size: 2.5rem; margin-bottom: 16px; }
h2 { font-size: 2rem; margin-bottom: 14px; }
h3 { font-size: 1.25rem; margin-bottom: 10px; }
h4 { font-size: 1rem; margin-bottom: 8px; }

/* ========================
   MAIN LAYOUT
======================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
main {
  flex: 1 1 auto;
}
.content-wrapper {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.text-section {
  max-width: 700px;
  margin: 0 auto;
}

/* ========================
   FLEX SPACING/ALIGNMENT
======================== */
.features, .services, .testimonials, .about, .hero, .contact, .legal, .thank-you {
  margin-bottom: 60px;
  padding: 40px 0 0 0;
}
.card-container, .feature-grid, .content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 16px rgba(33,75,107,0.08);
  padding: 28px 22px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 250px;
  max-width: 370px;
  transition: box-shadow 0.2s, transform 0.18s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 8px 32px rgba(33,75,107,0.12);
  transform: translateY(-4px) scale(1.013);
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #fffbe6;
  border-radius: 18px;
  box-shadow: 0 2px 10px rgba(33,75,107,0.08);
  padding: 20px 26px;
  margin-bottom: 20px;
  min-width: 270px;
  max-width: 530px;
  border-left: 6px solid #8CC6DF;
  color: #163c54;
}
.testimonial-meta {
  display: flex;
  gap: 12px;
  align-items: center;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #4F7CA3;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fcf6fa;
  border-radius: 18px;
  box-shadow: 0 1px 6px rgba(140,198,223,0.10);
  padding: 24px 18px;
  min-width: 240px;
  max-width: 320px;
  flex: 1 1 220px;
  margin-bottom: 20px;
  transition: box-shadow 0.18s;
}
.feature-item img {
  width: 40px;
  height: 40px;
  margin-bottom: 6px;
}
.feature-item:hover {
  box-shadow: 0 4px 14px rgba(140,198,223,0.14);
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}

.feature-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 10px;
}
.feature-icons img {
  width: 38px;
  height: 38px;
  opacity: 0.78;
  transition: opacity 0.18s;
}
.feature-icons img:hover {
  opacity: 1;
}

/* ========================
   NAVIGATION & HEADER
======================== */
header {
  background: linear-gradient(120deg, #EAE9FD 0%, #CDECF6 80%);
  box-shadow: 0 1px 12px rgba(140,198,223,.08);
  width: 100%;
  padding-top: 14px;
  padding-bottom: 14px;
  position: relative;
  z-index: 10;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.logo {
  display: flex;
  align-items: center;
  gap:10px;
}
.logo img {
  height: 48px;
  width: auto;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #1d3244;
  opacity: 0.87;
  padding: 6px 12px;
  border-radius: 12px;
  transition: background 0.18s, color 0.18s;
}
.main-nav a:hover, .main-nav a:focus {
  color: #214B6B;
  background: #e4f5fa;
  opacity: 1;
}
.cta-btn {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background: #8CC6DF;
  border: none;
  border-radius: 20px;
  padding: 12px 28px;
  box-shadow: 0 2px 8px rgba(140,198,223,0.18);
  cursor: pointer;
  transition: background 0.18s, transform 0.16s, box-shadow 0.15s;
  margin-left: 10px;
}
.cta-btn:hover, .cta-btn:focus {
  background: #214B6B;
  color: #F5F8F8;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 6px 20px rgba(33,75,107,0.16);
}

/* ========================
   HERO SECTION
======================== */
.hero {
  background: linear-gradient(105deg, #F6F6FA 10%, #F2F7FF 80%);
  border-radius: 0 0 50px 50px / 0 0 24px 24px;
  min-height: 390px;
  display: flex;
  align-items: center;
  margin-bottom: 60px;
  box-shadow: 0 2px 16px rgba(140,198,223,0.1);
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero h1 {
  color: #214B6B;
  font-size: 2.5rem;
  font-family:'Montserrat', Arial, sans-serif;
  font-weight: 700;
  margin-bottom: 18px;
}
.hero p {
  font-size: 1.25rem;
  color: #335c73;
  max-width: 600px;
  margin-bottom: 28px;
  opacity: 0.86;
}
.hero .cta-btn {
  font-size: 1.1rem;
  padding: 13px 32px;
  border-radius: 22px;
}

/* ========================
   SECTION STYLES
======================== */
.about, .features, .services, .contact, .thank-you, .legal {
  background: transparent;
}

.services ul, .features ul, .legal ul, .about ul, .about ol, .contact ul {
  margin-bottom: 18px;
  padding-left: 20px;
}
.services ul li, .features ul li, .about ul li, .about ol li, .contact ul li {
  list-style: disc;
  margin-bottom: 8px;
  font-size: 1.04rem;
  line-height: 1.6;
}
.services ul.service-list, .services ul.workshop-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 24px;
}
.service-list li, .workshop-list li {
  background: #f8f9fa;
  border-radius: 15px;
  box-shadow: 0 1px 6px rgba(140,198,223,0.08);
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 10px;
  color: #24547A;
}
.service-list li h3, .workshop-list li h3 {
  color: #417487;
  font-size: 1.21rem;
}
.service-list li span, .workshop-list li span {
  font-size: 1.09rem;
  color: #7FAAC0;
  font-family: 'Montserrat', Arial, sans-serif;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: #f7fafd;
  border-radius: 13px;
  box-shadow: 0 1px 8px rgba(140,198,223,0.08);
  margin: 28px 0 0 0;
  font-size: 1rem;
  overflow: hidden;
}
.pricing-table th,
.pricing-table td {
  padding: 15px 16px;
  border-bottom: 1px solid #e6ecf2;
}
.pricing-table th {
  background: #e6f5fa;
  color: #214B6B;
  font-family: 'Montserrat', Arial, sans-serif;
}
.pricing-table tr:last-child td {
  border-bottom: none;
}

.why-workshops-section {
  margin-top: 27px;
  background: #edf9f7;
  border-radius: 14px;
  padding: 18px 20px;
  font-size: 1.08rem;
  color: #3b709b;
}

/*****************************
  CARDS & CONTAINERS
*****************************/
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 0 auto;
  justify-content: center;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

/*****************************
  CONTACT INFORMATION
*****************************/
.contact-info {
  background: #fcf7fb;
  border-radius: 12px;
  box-shadow: 0 1px 6px rgba(140,198,223,0.08);
  padding: 16px 18px;
  margin-bottom: 20px;
  color: #215076;
}
.map-address {
  background: #e6f5fa;
  border-radius: 12px;
  padding: 10px 16px;
  margin-bottom: 10px;
  font-size: 1rem;
  color: #347499;
}
.opening-hours {
  font-family: 'Montserrat', Arial, sans-serif;
  margin: 18px 0 8px 0;
  font-size: 1.04rem;
  color: #417487;
}

/*****************************
  FOOTER
*****************************/
footer {
  background: linear-gradient(120deg, #CCE1F5 0%, #F5F8F8 100%);
  border-radius: 32px 32px 0 0 / 13px 13px 0 0;
  margin-top: 60px;
  box-shadow: 0 -2px 10px rgba(33,75,107,0.08);
  padding-top: 30px;
  padding-bottom: 18px;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}
.footer-brand img {
  width: 46px;
  height: 46px;
  margin-bottom: 2px;
}
.footer-links nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
  justify-content: center;
  align-items: center;
}
.footer-links a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #214B6B;
  opacity: 0.8;
  font-size: 0.96rem;
  transition: color 0.15s, opacity 0.15s;
  padding: 4px 8px;
  border-radius: 7px;
}
.footer-links a:hover, .footer-links a:focus {
  color: #7FAAC0;
  opacity: 1;
  background: #f1f7f9;
}
.footer-social {
  display: flex;
  gap: 12px;
  align-items: center;
}
.footer-social img {
  width: 24px;
  height: 24px;
  opacity: 0.7;
  transition: opacity 0.15s;
}
.footer-social img:hover {
  opacity: 1;
}
.footer-legal {
  margin-top: 6px;
  color: #5e87a8;
  font-size: 0.94rem;
  opacity: 0.75;
}

/*****************************
    MOBILE NAVIGATION
*****************************/
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 23px;
  right: 22px;
  z-index: 50;
  width: 48px;
  height: 48px;
  background: #8CC6DF;
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 2rem;
  cursor: pointer;
  box-shadow: 0 2px 9px rgba(140,198,223,0.15);
  transition: background 0.15s, transform 0.14s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #214B6B;
  transform: scale(1.08);
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1000;
  background: #F5F8F8;
  transform: translateX(-101vw);
  transition: transform 0.33s cubic-bezier(.53,.21,.36,.8);
  box-shadow: 5px 0 40px 4px rgba(33,75,107,0.14);
  padding: 32px 24px 0 24px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #214B6B;
  font-size: 2.5rem;
  align-self: flex-end;
  cursor: pointer;
  margin-bottom: 20px;
  padding: 6px 12px;
  border-radius: 12px;
  transition: background 0.14s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #e6f5fa;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 100%;
  align-items: flex-start;
  margin-top: 24px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.22rem;
  color: #214B6B;
  padding: 10px 18px 10px 8px;
  border-radius: 8px;
  width: 100%;
  transition: background 0.13s, color 0.16s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #e4f5fa;
  color: #1d3244;
}

/*****************************
    COOKIE CONSENT BANNER
*****************************/
.cookie-banner {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: fixed;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  background: #fff;
  border: 1.5px solid #e6ecf2;
  border-radius: 20px;
  box-shadow: 0 4px 32px rgba(140,198,223,0.18);
  z-index: 1600;
  width: calc(100vw - 32px);
  max-width: 500px;
  padding: 22px 18px 14px 18px;
  font-size: 1rem;
  gap: 20px;
  animation: fadeInUp 0.44s cubic-bezier(.24,.65,.47,1.18);
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.98) translateX(-50%);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1) translateX(-50%);
  }
}
.cookie-banner p {
  color: #214B6B;
  font-size: 1rem;
  margin-bottom: 7px;
}
.cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  width: 100%;
  justify-content: flex-end;
}
.cookie-btn, .cookie-settings-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  outline: none;
  padding: 8px 19px;
  border-radius: 16px;
  cursor: pointer;
  transition: background 0.16s, color 0.16s;
}
.cookie-btn.accept {
  background: #8CC6DF;
  color: #fff;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #214B6B;
  color: #F5F8F8;
}
.cookie-btn.reject {
  background: #e9cde6;
  color: #6c5077;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #b987b4;
  color: #fff;
}
.cookie-settings-btn {
  background: #fffbe6;
  color: #686248;
  border: 1px solid #e6ecf2;
}
.cookie-settings-btn:hover, .cookie-settings-btn:focus {
  background: #fff4bc;
}

/*********************/
/* Cookie Modal Popup */
/*********************/
.cookie-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(33,75,107,0.36);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}
.cookie-modal-overlay.open {
  display: flex;
}
.cookie-modal {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 8px 48px rgba(33,75,107,0.19);
  max-width: 430px;
  width: 93vw;
  padding: 32px 26px 22px 26px;
  position: relative;
  animation: cookieModalIn 0.44s cubic-bezier(.19,.57,.58,1.09);
}
@keyframes cookieModalIn {
  from { opacity: 0; transform: scale(0.94) translateY(30px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
.cookie-modal h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.5rem;
  margin-bottom: 14px;
  color: #214B6B;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.cookie-category input[type=checkbox]:not(:disabled) {
  accent-color: #8CC6DF;
}
.cookie-category label {
  font-size: 1rem;
  color: #163c54;
}
.cookie-category .cookie-essential-label {
  opacity: 0.6;
  font-style: italic;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 10px;
  margin-top: 18px;
  justify-content: flex-end;
}
.cookie-modal .close-modal {
  position: absolute;
  top: 18px;
  right: 20px;
  font-size: 1.7rem;
  background: none;
  border: none;
  color: #214B6B;
  cursor: pointer;
  opacity: 0.75;
  padding: 4px 8px;
  border-radius: 8px;
  transition: background 0.15s;
}
.cookie-modal .close-modal:hover {
  opacity: 1;
  background: #e4f5fa;
}

/*****************************
   PASTEL SOFT MOOD/DECORATION
*****************************/
body, .section, .about, .features, .services, .contact, .award-highlight {
  background: #F5F8F8;
}
.section {
  background: #F8FBFE;
  border-radius: 30px;
  box-shadow: 0 4px 18px rgba(140,198,223,0.09);
}

/*****************************
   ANIMATION
*****************************/
a, .cta-btn, .main-nav a, .card, .feature-item, .footer-links a, .cookie-btn, .cookie-settings-btn {
  transition-property: color, background, box-shadow, transform, opacity;
  transition-duration: 0.17s;
}

/*****************************
   FORMS & MODALS (BASICS)
*****************************/
input, textarea, select, button {
  font-family: inherit;
  font-size: 1rem;
}
button:focus {
  outline: 2px solid #8CC6DF;
  outline-offset: 2px;
}

/*****************************
   SPECIAL CLASSES
*****************************/
.faq-teaser, .pricing-info, .pricing-details {
  background: #e6f5fa;
  border-radius: 12px;
  padding: 16px 20px;
  margin: 20px 0 0 0;
}

/*****************************
   RESPONSIVE DESIGN (mobile-first)
*****************************/
@media (max-width: 1024px) {
  .container { padding-left: 16px; padding-right: 16px; }
  .footer-links nav { gap: 10px 10px; }
}
@media (max-width: 900px) {
  .main-nav a { font-size: 0.97rem; }
  .footer-links nav { flex-wrap: wrap; gap: 8px 8px; }
}
@media (max-width: 860px) {
  .main-nav { gap: 10px; }
  .feature-grid, .card-container, .content-grid {
    gap: 18px;
    flex-wrap: wrap;
  }
  .feature-item, .card {
    min-width: 190px;
    padding: 18px 13px;
  }
}
@media (max-width: 780px) {
  .main-nav, .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .footer-links nav {
    flex-direction: column;
    gap: 3px;
    align-items: center;
  }
  .hero h1 { font-size: 2.05rem; }
  .content-wrapper {
    gap: 18px;
  }
}
@media (max-width: 768px) {
  .section, .features, .services, .about, .contact, .legal, .thank-you {
    margin-bottom: 40px;
    padding: 24px 0 0 0;
    border-radius: 12px;
  }
  .feature-grid, .card-container, .content-grid {
    flex-direction: column;
    gap: 18px;
  }
  .feature-item, .card {
    min-width: 0;
    max-width: 100%;
    width: 100%;
  }
  .container { padding-left: 8px; padding-right: 8px; }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}
@media (max-width: 540px) {
  body { font-size: 15px; }
  .hero {
    min-height: 220px;
    padding: 18px 0 8px 0;
    border-radius: 0 0 20px 20px / 0 0 18px 18px;
  }
  .footer-brand img {
    width: 34px;
    height: 34px;
  }
  .footer-social img { width: 20px; height: 20px; }
  .testimonials .testimonial-card, .feature-item, .card {
    padding: 13px 9px;
  }
  .cookie-banner {
    padding: 17px 10px 12px 10px;
    font-size: 0.97rem;
  }
  .cookie-modal {
    padding: 20px 6px 12px 11px;
    width: 97vw;
  }
}

/*****************************
   PRINT ADJUSTMENTS
*****************************/
@media print {
  .mobile-menu-toggle, .mobile-menu, .cookie-banner, .cookie-modal-overlay, header, footer { display:none !important; }
  main { padding: 0; }
}
