/* Fluxium Mind - SOFT PASTEL CSS THEME */

/* RESET & NORMALIZE */
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  min-height: 100vh;
  background: #F8FBFD;
  color: #1B2433;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  line-height: 1.7;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  -webkit-font-smoothing: antialiased;
  background-color: #f8fbfd;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}
ul, ol {
  margin-left: 1.5em;
}
a {
  color: #144458;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #48787C;
  text-decoration: underline;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #082940;
  margin-bottom: 14px;
}
h1 {
  font-size: 2.5rem;
  letter-spacing: 0.02em;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 14px;
}
h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}
p, li {
  color: #274256;
  font-size: 1rem;
}
strong {
  font-weight: 700;
  color: #664c13;
}

/* GLOBAL CONTAINER AND SECTION SPACING */
.container {
  width: 100%;
  padding: 0 18px;
  max-width: 1150px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
.section,
main > section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #FFFFFF;
  border-radius: 24px;
  box-shadow: 0 4px 20px rgba(60,80,80,0.06);
}

@media (max-width:768px) {
  .section,
  main > section {
    padding: 26px 6px;
    margin-bottom: 38px;
    border-radius: 14px;
  }
}

/* HEADER */
header {
  background: #f1f6fc;
  box-shadow: 0 3px 22px rgba(110,165,193,0.055);
  position: sticky;
  top: 0;
  z-index: 40;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 16px;
  padding-bottom: 16px;
}
header nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
}
header nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #387070;
  opacity: .95;
  border-radius: 12px;
  padding: 7px 13px;
  transition: background 0.13s, color 0.18s;
}
header nav a:hover,
header nav a:focus {
  background: #d2e6ec;
  color: #17425d;
}
header img[alt="Fluxium Mind"] {
  width: 135px; height: auto;
}
.cta-primary {
  background: #e0e9fa;
  color: #082940;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1.06rem;
  padding: 10px 28px;
  border: none;
  border-radius: 18px;
  box-shadow: 0 3px 18px rgba(100,180,160,0.07);
  margin-left: 10px;
  cursor: pointer;
  transition: background 0.19s, color 0.15s, box-shadow 0.19s;
  letter-spacing: 0.02em;
  text-decoration: none;
  outline: none;
  display: inline-block;
}
.cta-primary:active, .cta-primary:focus {
  outline: 2px solid #317094;
}
.cta-primary:hover {
  background: #e6fafe;
  color: #246a7c;
  box-shadow: 0 5px 24px rgba(78,119,134,0.17);
}
.cta-secondary {
  background: #F8F7FA;
  color: #0a4252;
  padding: 10px 26px;
  border-radius: 16px;
  border: 2px solid #e0e9fa;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 0.99rem;
  margin-top: 18px;
  box-shadow: 0 2px 9px rgba(170,180,220,0.13);
  transition: background .23s, color .2s, border .17s, box-shadow .2s;
  display: inline-block;
  text-decoration: none;
}
.cta-secondary:active, .cta-secondary:focus {
  outline: 1.5px solid #b8d6f4;
}
.cta-secondary:hover {
  background: #eafcff;
  color: #317187;
  border-color: #cee6fa;
  box-shadow: 0 4px 28px rgba(120,180,220,0.14);
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  font-size: 2.3rem;
  cursor: pointer;
  color: #317094;
  z-index: 101;
  margin-left: 18px;
  outline: none;
  transition: color .19s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  color: #082940;
}
.mobile-menu {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(235,244,247,0.96);
  pointer-events: none;
  opacity: 0;
  transform: translateX(100%);
  transition: opacity 0.3s, transform 0.3s;
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  padding-top: 0px;
}
.mobile-menu.active {
  pointer-events: auto;
  opacity: 1;
  transform: translateX(0);
}
.mobile-menu-close {
  background: #e4f2ff;
  color: #082940;
  border: none;
  border-radius: 50%;
  font-size: 2.2rem;
  width: 46px;
  height: 46px;
  margin: 20px 28px 14px 0;
  cursor: pointer;
  align-self: flex-end;
  transition: background .18s, color .19s;
  box-shadow: 0 2px 12px rgba(20,90,120,0.08);
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: #e0e7ef;
  color: #184961;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  align-items: center;
  padding: 16px 0;
}
.mobile-nav a {
  background: transparent;
  border-radius: 13px;
  width: 84vw;
  max-width: 360px;
  text-align: center;
  font-size: 1.16rem;
  color: #205A75;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  padding: 15px 0;
  transition: background .19s, color .17s;
  margin-bottom: 2px;
  border: none;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  background: #e8f8ff;
  color: #0e4455;
}
@media (max-width: 1020px) {
  header nav, .cta-primary {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
}
@media (min-width: 1021px) {
  .mobile-menu, .mobile-menu-toggle {
    display: none !important;
  }
}

/* MAIN LAYOUT FLEXBOX UTILS */
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  margin: 0 auto;
  max-width: 900px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.card {
  margin-bottom: 20px;
  position: relative;
}
.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;
}
@media (max-width: 768px) {
  .content-wrapper {
    max-width: 100vw;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}

/* FEATURED GRID FLEX LAYOUTS */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  justify-content: space-between;
  margin-bottom: 14px;
}
.feature-grid > div {
  flex-grow: 1;
  flex-basis: 260px;
  min-width: 230px;
  background: #f4fbf7;
  border-radius: 20px;
  box-shadow: 0 2px 12px rgba(50,110,100,0.06);
  padding: 24px 18px;
  margin-bottom: 15px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
  transition: background .15s, box-shadow .19s, transform .11s;
  border: 1px solid #e6f1ee;
}
.feature-grid > div:hover {
  background: #eafcf8;
  box-shadow: 0 6px 26px rgba(120,210,180,0.11);
  transform: translateY(-2px) scale(1.015);
}
.feature-grid img {
  width: 46px;
  height: 46px;
  margin-bottom: 4px;
  border-radius: 10px;
  background: #e3f3fc;
  box-shadow: 0 2px 7px rgba(120,190,190,0.10);
}
@media (max-width: 870px) {
  .feature-grid {
    flex-direction: column;
    gap: 16px;
  }
}

/* SERVICE LISTS */
.service-list, .service-cards, .seminar-list, .workshop-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 18px;
}
.service-list > div, .service-card, .seminar-card, .workshop-item {
  flex-basis: 290px;
  min-width: 210px;
  background: #f6fafd;
  border-radius: 16px;
  box-shadow: 0 1px 10px rgba(110,175,155,0.045);
  padding: 18px 18px 20px 18px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: 1.5px solid #e8efe9;
  transition: box-shadow .16s, background .13s, transform .11s;
}
.service-card:hover, .seminar-card:hover, .workshop-item:hover, .service-list > div:hover {
  background: #ebf7fa;
  box-shadow: 0 6px 20px rgba(120,210,220,0.11);
  transform: translateY(-2px) scale(1.012);
}

@media (max-width: 870px) {
  .service-list, .service-cards, .seminar-list, .workshop-list {
    flex-direction: column;
    gap: 16px;
  }
}

/* TESTIMONIALS */
.testimonial-list, .testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 8px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #FDFDFE;
  border-radius: 20px;
  box-shadow: 0 2px 10px rgba(70,110,140,0.05);
  border: 1.5px solid #e7f0f9;
  min-width: 230px;
  max-width: 400px;
  color: #193250;
  font-size: 1.08rem;
  margin-bottom: 22px;
  transition: box-shadow .15s, background .17s, transform .11s;
}
.testimonial-card p {
  color: #1e293a;
  font-size: 1.08rem;
}
.testimonial-card span {
  color: #317094;
  font-size: 0.97rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  opacity: 0.89;
  margin-top: 4px;
}
.testimonial-card:hover {
  background: #f1faff;
  box-shadow: 0 3px 18px rgba(80,190,190,0.14);
  transform: scale(1.018);
}
@media (max-width: 900px) {
  .testimonial-list, .testimonial-slider {
    flex-direction: column;
    gap: 14px;
  }
}

/* ABOUT+SECTION FLEX */
.about-summary {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.about-summary ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  list-style: none;
}
.about-summary ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f3f7fd;
  border-radius: 10px;
  padding: 10px 16px 10px 10px;
  font-size: 1.02rem;
  font-weight: 500;
  color: #2B4269;
}
.about-summary ul img {
  width: 28px; height: 28px;
  background: #e8f3fb;
  border-radius: 8px;
}

.founder-intro {
  background: #f9f3fe;
  border-radius: 14px;
  padding: 15px 14px;
  box-shadow: 0 1.5px 6px rgba(60,70,120,0.06);
  color: #163056;
  margin-top: 8px;
}

.contact-info-summary {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 12px;
  margin-bottom: 8px;
  background: #f5fcf9;
  border-radius: 12px;
  padding: 20px 13px;
  box-shadow: 0 1px 5px rgba(120,200,170, .07);
}
@media (max-width: 600px) {
  .about-summary ul {
    flex-direction: column;
    gap: 11px;
  }
  .contact-info-summary {
    padding: 12px 7px;
  }
}

/* SECTION / ARTICLE AND FLEX CONTAINER CLASSES */
.mission_statement, .brand_story, .growth_principles, .team-skills, .unique-approach, .benefits, .key-topics-overview, .category_filter, .recommended_reads, .map_location, .business_hours, .contact_recap, .terms_of_use_content, .user_requirements, .gdpr_overview, .data_subject_rights {
  background: #f6f9fd;
  border-radius: 16px;
  padding: 18px 14px;
  box-shadow: 0 1px 6px rgba(160, 200, 210, 0.08);
  margin-bottom: 14px;
}
.category_filter label, .category_filter select {
  font-size: 0.97rem;
}
@media (max-width:600px) {
  .mission_statement, .brand_story, .growth_principles, .team-skills, .unique-approach, .benefits, .key-topics-overview, .category_filter, .recommended_reads, .map_location, .business_hours, .contact_recap, .terms_of_use_content, .user_requirements, .gdpr_overview, .data_subject_rights {
    padding: 11px 7px;
    border-radius: 10px;
  }
}

/* BULLET LISTS & HARDCODED LIST STYLES */
ul {
  margin-bottom: 8px;
}
ul li, ol li {
  margin-bottom: 5px;
}
ul li::before {
  content: '⦿';
  color: #daa520;
  font-size: 0.9em;
  margin-right: 8px;
}

/* BLOG POST PREVIEW */
.blog_post_preview_list {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}
.blog-post-preview {
  background: #fcf8fa;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(150,90,160,0.04);
  padding: 17px 15px 17px 17px;
  min-width: 220px;
  flex-basis: 310px;
  margin-bottom: 20px;
  transition: background .13s, box-shadow .15s;
}
.blog-post-preview:hover {
  background: #f2f6fa;
  box-shadow: 0 3px 24px rgba(112,100,180,0.13);
}
.blog-post-preview a {
  color: #4967A6;
  margin-top: 8px;
  display: inline-block;
  font-weight: 600;
  text-decoration: underline;
  transition: color .14s;
}
.blog-post-preview a:hover {
  color: #082940;
}

@media (max-width: 870px) {
  .blog_post_preview_list {
    flex-direction: column;
    gap: 14px;
  }
}

/* NEWSLETTER SIGNUP */
.newsletter-signup-form {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin: 12px 0 14px 0;
}
.newsletter-signup-form input[type="email"] {
  font-size: 1.01rem;
  padding: 10px 13px;
  border-radius: 10px;
  border: 1.5px solid #c2daf1;
  outline: none;
  background: #f7fbff;
  width: 260px;
  margin-right: 10px;
  transition: border .18s, box-shadow .13s;
}
.newsletter-signup-form input[type="email"]:focus {
  border: 1.5px solid #bdd5e6;
}
.newsletter-signup-form button[type="submit"] {
  background: #e2f2ff;
  color: #25729d;
  border: none;
  border-radius: 10px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1.04rem;
  padding: 10px 22px;
  cursor: pointer;
  box-shadow: 0 1px 7px rgba(110,170,220,0.10);
  transition: background .19s, color .12s;
}
.newsletter-signup-form button[type="submit"]:hover {
  background: #d4edfd;
  color: #143947;
}

/* COOKIE CONSENT BANNER */
.cookie-consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  background: #f9f6fd;
  border-top: 2px solid #e7e1f5;
  padding: 26px 12px 18px 12px;
  box-shadow: 0 -2px 30px rgba(120,120,170,0.09);
  z-index: 500;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 1rem;
  transition: transform .33s ease, opacity .23s ease;
  opacity: 1;
  transform: translateY(0);
}
.cookie-consent-banner.hide {
  opacity: 0;
  transform: translateY(100%);
  pointer-events: none;
}
.cookie-consent-banner p {
  color: #1f263f;
  margin-right: 18px;
}
.cookie-consent-actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 0.98rem;
  padding: 7px 18px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  margin-right: 4px;
  box-shadow: 0 1px 5px rgba(120,170,220,0.06);
  transition: background .13s, color .13s, box-shadow .13s;
}
.cookie-btn.accept {
  background: #e9f5ee;
  color: #184a21;
}
.cookie-btn.accept:hover {
  background: #c5e4cb;
}
.cookie-btn.reject {
  background: #fff0f0;
  color: #a04242;
}
.cookie-btn.reject:hover {
  background: #ffe3e3;
}
.cookie-btn.settings {
  background: #f6f6fc;
  color: #536089;
  border: 1.2px solid #d3d6ea;
}
.cookie-btn.settings:hover {
  background: #e7f1fc;
  color: #233f57;
}
@media (max-width: 600px) {
  .cookie-consent-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 6px 14px 6px;
  }
}

/* COOKIE MODAL */
.cookie-modal {
  display: none;
  position: fixed;
  left: 50%; top: 50%;
  transform: translate(-50%, -52%) scale(1);
  background: #fbfaff;
  border: 2.5px solid #ebe4f6;
  border-radius: 21px;
  box-shadow: 0 10px 70px rgba(100,94,150,0.29);
  z-index: 800;
  max-width: 90vw;
  min-width: 290px;
  width: 370px;
  padding: 36px 28px 28px 28px;
  transition: opacity .22s, transform .22s;
  opacity: 0;
  pointer-events: none;
}
.cookie-modal.active {
  display: block;
  opacity: 1;
  pointer-events: auto;
  animation: cookieModalIn .35s cubic-bezier(.7,.25,.17,1.1);
}
@keyframes cookieModalIn {
  from { opacity: 0; transform: translate(-50%,-58%) scale(.97); }
  to   { opacity: 1; transform: translate(-50%,-52%) scale(1); }
}
.cookie-modal h2 {
  margin-top: 0;
  margin-bottom: 9px;
  font-size: 1.31rem;
}
.cookie-modal .close-modal {
  position: absolute;
  right: 18px; top: 14px;
  background: #eee8fd;
  border-radius: 50%;
  color: #734dad;
  border: none;
  width: 34px; height: 34px;
  font-size: 1.26rem;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background .14s, color .14s;
  box-shadow: 0 1px 4px rgba(100,70,190,0.09);
}
.cookie-modal .close-modal:hover {
  background: #f4e9ff;
  color: #415069;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 22px;
}
.cookie-categories label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.01rem;
  font-weight: 500;
  color: #25456a;
  margin-bottom: 5px;
}
.cookie-categories input[type='checkbox'] {
  accent-color: #c09ef9;
  width: 18px;
  height: 18px;
}
.cookie-essential {
  font-size: 0.97rem;
  color: #7b7795;
  margin-left: 28px;
  margin-bottom: 10px;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 16px;
  flex-direction: row;
  justify-content: flex-end;
}
@media (max-width:500px) {
  .cookie-modal {
    width: 98vw;
    min-width: 98vw;
    padding: 20px 8px 22px 8px;
  }
}

/* FOOTER */
footer {
  background: #f6faf8;
  color: #34727c;
  padding: 38px 0 8px 0;
  margin-top: 48px;
  box-shadow: 0 -2px 34px rgba(170,200,190, 0.04);
}
footer .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
footer nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 0.97rem;
  color: #477794;
  opacity: 0.92;
  border-radius: 10px;
  padding: 5px 10px;
  transition: background .11s, color .15s;
}
footer nav a:hover {
  background: #e9f9fc;
  color: #142946;
}
footer p {
  font-size: 0.92rem;
  color: #3b5172;
}
@media (max-width: 800px) {
  footer .container {
    flex-direction: column;
    gap: 13px;
    align-items: flex-start;
  }
}

/* PASTEL ACCENTS, SHADOWS, EFFECTS */
::-webkit-scrollbar {
  width: 14px;
  background: #f4f7fc;
}
::-webkit-scrollbar-thumb {
  background: #e6ecfd;
  border-radius: 14px;
}
::selection {
  background: #e1f8f9;
}

html,body {
  scroll-padding-top: 72px;
}

/* MICRO-ANIMATIONS */
.button-animate {
  transition: transform 0.16s cubic-bezier(.7,.25,.17,1.1), box-shadow 0.14s;
}
.button-animate:active {
  transform: scale(0.96);
  box-shadow: 0 0 0 #0000;
}

a, button, .cta-primary, .cta-secondary, .mobile-menu-toggle, .mobile-menu-close, .blog-post-preview a, .cookie-btn, .newsletter-signup-form button[type="submit"], .cookie-modal .close-modal {
  transition: background .17s, color .13s, box-shadow .18s;
}

/* ACCESSIBILITY: FOCUS STATES */
a:focus, button:focus, .cookie-btn:focus, input:focus {
  outline: 2px solid #97cdfd;
  outline-offset: 1.2px;
}

/* PASTEL COLOR PALETTE UTILS */
.pastel-bg-blue { background: #e6f6fa !important; }
.pastel-bg-green { background: #e9f5ee !important; }
.pastel-bg-lilac { background: #f4f3fd !important; }
.pastel-bg-yellow { background: #fffbe8 !important; }
.pastel-bg-pink { background: #fcefef !important; }
.pastel-bg-cyan { background: #e5f8fa !important; }
.pastel-bg-white { background: #fefefe !important; }
.pastel-bg-accent { background: #fff6e1 !important; }

/* RESPONSIVE SIZING -- MOBILE FIRST */
@media (max-width:600px) {
  h1 { font-size: 1.45rem; }
  h2 { font-size: 1.21rem; }
  h3 { font-size: 1.07rem; }
  .content-wrapper, .section, main > section { padding: 12px 5px; }
  .feature-grid > div, .service-card, .seminar-card, .workshop-item { min-width: unset; padding: 11px 7px; border-radius: 9px; }
  .testimonial-card { max-width: 98vw; padding: 13px 5px; border-radius: 12px; }
}

/* END OF FLUXIUM MIND SOFT PASTEL THEME */
