/* Luminex Dollar Professional Corporate CSS Styles */

/* ==================== 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, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.15;
  height: 100%;
  background: #F7F7FF;
}
body {
  min-height: 100vh;
  font-family: 'Roboto', Arial, sans-serif;
  color: #23395B;
  background: #F7F7FF;
  line-height: 1.6;
  font-size: 16px;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul, ol {
  list-style: none;
  padding-left: 0;
}
a {
  color: #17BEBB;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #23395B;
  text-decoration: underline;
}

/* ==================== BRAND COLORS (CSS VARIABLES) ==================== */
:root {
  --color-primary: #23395B;
  --color-secondary: #17BEBB;
  --color-accent: #F7F7FF;
  --color-bg: #F7F7FF;
  --color-bg-alt: #e7eef7;
  --color-dark: #182342;
  --color-gray: #eef2f6;
  --color-border: #c8d0e0;
  --color-success: #14937a;
  --color-danger: #dc2f3a;
  --color-btn-hover: #1b2b48;
  --color-shadow: rgba(35,57,91,0.06);
  --color-shadow-hover: rgba(23,190,187,0.11);
}

/* ==================== TYPOGRAPHY ==================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  color: #23395B;
  margin-bottom: 16px;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.15;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}
h4, h5, h6 {
  font-size: 1.1rem;
}
p, ul, ol {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  margin-bottom: 14px;
}
strong {
  font-weight: 700;
  color: #23395B;
}

/* ==================== CONTAINER LAYOUT ==================== */
.container {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  justify-content: flex-start;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 18px var(--color-shadow);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ==================== FLEXBOX LAYOUTS ==================== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.card {
  background: #fff;
  border: 1.5px solid var(--color-border);
  border-radius: 10px;
  box-shadow: 0 2px 12px var(--color-shadow);
  padding: 24px 18px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 250px;
  flex: 1 1 270px;
  transition: box-shadow 0.22s, border 0.18s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 6px 20px var(--color-shadow-hover);
  border-color: var(--color-secondary);
}
.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;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #F7F7FF;
  border-radius: 10px;
  border: 1.5px solid var(--color-border);
  margin-bottom: 24px;
  box-shadow: 0 2px 12px var(--color-shadow);
  color: #23395B;
  transition: transform 0.17s, box-shadow 0.18s;
}
.testimonial-card:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 6px 18px var(--color-shadow-hover);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
/* Preview for course-cards menus */
.course-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.course-card {
  background: #fff;
  border: 1.5px solid var(--color-border);
  border-radius: 12px;
  box-shadow: 0 2px 10px var(--color-shadow);
  padding: 30px 20px 22px 20px;
  flex: 1 1 320px;
  min-width: 260px;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, border 0.18s;
}
.course-card:hover {
  border-color: var(--color-secondary);
  box-shadow: 0 5px 20px var(--color-shadow-hover);
}
.team-bios {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 24px;
}
.team-bios > div {
  background: #F7F7FF;
  border: 1.5px solid var(--color-border);
  border-radius: 10px;
  padding: 18px;
  min-width: 210px;
  flex: 1 1 220px;
  box-shadow: 0 1.5px 8px var(--color-shadow);
}
.footer-top, .footer-bottom, .newsletter-signup {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
}
.footer-top {
  justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 1.5px solid var(--color-border);
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.footer-bottom {
  font-size: 0.98em;
  gap: 32px;
  margin-bottom: 14px;
  flex-wrap: wrap;
  color: #23395B;
}
.newsletter-signup {
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  width: 100%;
  padding-top: 8px;
}

/* ==================== NAVIGATION ==================== */
header {
  background: #fff;
  border-bottom: 1.5px solid var(--color-border);
  padding: 0;
  position: relative;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
  min-height: 0;
}
.logo {
  display: flex;
  align-items: center;
  height: 54px;
  margin-right: 24px;
}
.logo img {
  height: 44px;
  width: auto;
}
.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 500;
}
.main-nav a {
  color: #23395B;
  font-size: 1rem;
  padding: 8px 10px;
  border-radius: 4px;
  transition: background .16s, color .18s;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--color-secondary);
  color: #fff;
}
.main-nav .cta.primary {
  background: var(--color-primary);
  color: #fff;
  padding: 10px 22px;
  font-size: 1.07em;
  font-weight: bold;
  border-radius: 6px;
  box-shadow: 0 1.5px 7px var(--color-shadow);
  transition: background 0.18s;
  margin-left: 10px;
}
.main-nav .cta.primary:hover, .main-nav .cta.primary:focus {
  background: var(--color-secondary);
  color: #23395B;
}

/* Hamburger mobile menu toggle */
.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  font-size: 2.1rem;
  color: var(--color-primary);
  cursor: pointer;
  padding: 6px 12px;
  transition: color .17s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  color: var(--color-secondary);
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 9999;
  flex-direction: column;
  align-items: flex-start;
  padding: 30px 24px 60px 24px;
  box-shadow: 0 6px 40px rgba(35,57,91,0.13);
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(.8,0,.1,1);
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #23395B;
  font-size: 2rem;
  align-self: flex-end;
  cursor: pointer;
  margin-bottom: 24px;
  transition: color .15s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: var(--color-secondary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
}
.mobile-nav a {
  color: #23395B;
  font-size: 1.15em;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  padding: 14px 0;
  border-radius: 5px;
  transition: background .13s, color .17s;
}
.mobile-nav a:active,
.mobile-nav a:hover {
  background: var(--color-secondary);
  color: #fff;
}

@media (max-width: 1050px) {
  .main-nav {
    gap: 14px;
  }
}
@media (max-width: 900px) {
  .main-nav {
    gap: 8px;
  }
}
@media (max-width: 850px) {
  header .container {
    padding: 0 10px;
  }
  .main-nav {
    gap: 6px;
  }
}

@media (max-width: 900px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* ==================== BUTTONS & CTA ==================== */
.cta,
button,
input[type="submit"] {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  border: none;
  outline: none;
  border-radius: 6px;
  padding: 12px 30px;
  cursor: pointer;
  font-size: 1.05rem;
  display: inline-block;
  transition: background 0.22s, color .2s, box-shadow .17s;
  box-shadow: 0 2px 8px var(--color-shadow);
}
.cta.primary {
  background: var(--color-primary);
  color: #fff;
}
.cta.primary:hover,
.cta.primary:focus {
  background: var(--color-secondary);
  color: #23395B;
  box-shadow: 0 6px 22px var(--color-shadow-hover);
}
.cta.secondary {
  background: var(--color-secondary);
  color: #fff;
}
.cta.secondary:hover,
.cta.secondary:focus {
  background: #fff;
  color: var(--color-primary);
  box-shadow: 0 3px 18px var(--color-shadow-hover);
  border: 2px solid var(--color-secondary);
}

/* ==================== BLOG STYLES ==================== */
.blog-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 16px;
}
.blog-teaser {
  background: #fff;
  border: 1.5px solid var(--color-border);
  border-radius: 10px;
  padding: 22px 17px;
  flex: 1 1 260px;
  min-width: 235px;
  max-width: 330px;
  margin-bottom: 20px;
  box-shadow: 0 1.5px 11px var(--color-shadow);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow 0.18s;
}
.blog-teaser h3 {
  font-size: 1.18rem;
}
.blog-teaser a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.18s;
}
.blog-teaser:hover,
.blog-teaser:focus-within {
  box-shadow: 0 8px 25px var(--color-shadow-hover);
}

.category-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 16px;
}
.category-filters li {
  background: #eef2f6;
  color: #23395B;
  border-radius: 6px;
  padding: 8px 20px;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.03em;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.16s, color .15s;
}
.category-filters li:hover {
  background: var(--color-secondary);
  color: #fff;
}

/* ==================== TABLES (curriculum-table) ==================== */
.curriculum-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  border: 1.5px solid var(--color-border);
  border-radius: 8px;
  margin-bottom: 26px;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.01em;
}
.curriculum-table th, .curriculum-table td {
  padding: 14px 18px;
  border-bottom: 1px solid #e3e8ee;
  text-align: left;
}
.curriculum-table th {
  background: #eef2f6;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: bold;
}
.curriculum-table tr:last-child td {
  border-bottom: none;
}

/* ==================== FORMS & CONTACT STYLES (only previewed fields) ==================== */
ul li img {
  margin-right: 10px;
  vertical-align: middle;
  height: 22px;
  width: 22px;
}

/* ==================== STAR RATINGS + TESTIMONIALS ================ */
.star-ratings {
  color: #FFD400;
  font-size: 1.25em;
  margin-top: 4px;
  letter-spacing: 3px;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
}

/* ==================== FOOTER ==================== */
footer {
  background: #23395B;
  color: #fff;
  padding: 36px 0 16px 0;
}
footer .logo img {
  filter: brightness(230%);
}
.footer-nav {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}
.footer-nav a {
  color: #bfcde4;
  font-size: 1rem;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  padding: 4px 10px;
  border-radius: 5px;
  transition: background 0.15s, color 0.14s;
}
.footer-nav a:hover {
  background: #17BEBB;
  color: #fff;
}
.footer-bottom {
  color: #bfcde4;
  font-size: 0.99em;
  gap: 34px;
}
.newsletter-signup p {
  margin: 0;
  color: #e6eefa;
  flex: 1;
}
.newsletter-signup .cta.secondary {
  padding: 10px 32px;
  font-size: 1em;
}

/* ==================== COOKIE CONSENT BANNER ==================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0; right: 0;
  width: 100%;
  background: #23395B;
  color: #fff;
  z-index: 10010;
  padding: 25px 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 -3px 16px var(--color-shadow);
  font-size: 1.03em;
  animation: cookieBannerAppear 0.34s cubic-bezier(.82,0,.23,1);
}
@keyframes cookieBannerAppear {
  from { transform: translateY(100%) scale(.98); opacity: 0; }
  to { transform: translateY(0) scale(1); opacity: 1; }
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.cookie-banner button {
  background: var(--color-secondary);
  color: #23395B;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  padding: 10px 24px;
  font-size: .97em;
  cursor: pointer;
  transition: background 0.17s, color .16s;
}
.cookie-banner button.reject {
  background: var(--color-danger);
  color: #fff;
}
.cookie-banner button.settings {
  background: transparent;
  border: 1.5px solid #fff;
  color: #fff;
}
.cookie-banner button:hover,
.cookie-banner button:focus {
  background: #fff;
  color: var(--color-primary);
}
.cookie-banner button.reject:hover,
.cookie-banner button.reject:focus {
  background: #fff;
  color: var(--color-danger);
  border: 1.5px solid var(--color-danger);
}

/* COOKIE MODAL POPUP */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(35,57,91,0.76);
  z-index: 11000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cookieModalAppear 0.18s cubic-bezier(.6,0,.2,1);
}
@keyframes cookieModalAppear {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  color: #23395B;
  border-radius: 16px;
  padding: 38px 24px 20px 24px;
  width: 92%;
  max-width: 400px;
  box-shadow: 0 6px 33px var(--color-shadow);
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  animation: cookieWindowAppear .27s cubic-bezier(.72,0,.18,1);
}
@keyframes cookieWindowAppear {
  0% { transform: scale(0.88); opacity: 0; }
  70% { transform: scale(1.06); opacity: 0.89; }
  100% { transform: scale(1); opacity: 1; }
}
.cookie-modal .cookie-modal-close {
  background: none;
  border: none;
  color: #23395B;
  font-size: 2rem;
  position: absolute;
  top: 12px; right: 15px;
  cursor: pointer;
  transition: color .16s;
}
.cookie-modal .cookie-modal-close:hover {
  color: var(--color-secondary);
}
.cookie-modal h3 {
  font-size: 1.28rem;
  margin-bottom: 7px;
}
.cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
}
.cookie-category input[type=checkbox] {
  accent-color: var(--color-secondary);
  width: 20px;
  height: 20px;
  margin-top: 0;
}
.cookie-category label {
  font-size: 1em;
}
.cookie-category.essential label {
  font-weight: bold;
  color: var(--color-primary);
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 18px;
  margin-top: 12px;
}
.cookie-modal .cookie-modal-actions .cta {
  flex: 1 1 115px;
  padding: 8px 0;
}

/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 1250px) {
  .container {
    max-width: 98vw;
    padding: 0 12px;
  }
}
@media (max-width: 1050px) {
  h1 {
    font-size: 2.1rem;
  }
  h2 {
    font-size: 1.55rem;
  }
  .section {
    padding: 28px 10px;
  }
  .card, .course-card, .blog-teaser {
    min-width: 190px;
    max-width: 310px;
  }
}
@media (max-width: 900px) {
  .container {
    max-width: 99vw;
    padding: 0 8px;
  }
}
@media (max-width: 800px) {
  .card-container, .course-cards, .content-grid, .blog-grid, .team-bios, .footer-top, .footer-bottom, .newsletter-signup {
    flex-direction: column !important;
    gap: 20px !important;
    align-items: flex-start !important;
  }
  .section {
    margin-bottom: 40px;
    padding: 24px 4px;
    border-radius: 7px;
  }
  .testimonial-card, .course-card, .card, .blog-teaser {
    max-width: 98vw;
    min-width: 120px;
    margin-bottom: 17px;
    border-radius: 7px;
  }
  .team-bios > div {
    min-width: 120px;
    max-width: 98vw;
    border-radius: 7px;
  }
  .main-nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block !important;
  }
}
@media (max-width: 600px) {
  h1 {
    font-size: 1.37rem;
    margin-bottom: 10px;
  }
  h2 {
    font-size: 1.18rem;
    margin-bottom: 8px;
  }
  .section {
    padding: 14px 0px;
    border-radius: 4px;
  }
  .container {
    padding: 0 2px;
  }
  .footer-bottom {
    gap: 18px;
    font-size: .95em;
    flex-direction: column !important;
  }
  .footer-top, .newsletter-signup {
    gap: 10px !important;
    flex-direction: column !important;
  }
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column !important;
    gap: 22px !important;
    align-items: flex-start !important;
  }
}

/* ==================== UTILITY CLASSES ==================== */
.mb-0 { margin-bottom: 0 !important; }
.mt-0 { margin-top: 0 !important; }
.mt-2 { margin-top: 2px !important; }
.mb-2 { margin-bottom: 2px !important; }
.mt-8 { margin-top: 8px !important; }
.mb-8 { margin-bottom: 8px !important; }

/* ========== END OF CSS ========== */