/* === CSS RESET & BASE === */
html {
  box-sizing: border-box;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #F4F7F9;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  color: #184A76;
  background: #F4F7F9;
  min-height: 100vh;
  -webkit-text-size-adjust: 100%;
}
img, svg {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #184A76;
  text-decoration: none;
  transition: color 0.2s cubic-bezier(.45,.03,.51,.95);
  font-weight: 600;
}
a:hover, a:focus {
  color: #F1C93B;
  outline: none;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  letter-spacing: -0.01em;
  color: #184A76;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.1;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  line-height: 1.1;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 14px;
  line-height: 1.1;
}
h4, h5, h6 {
  font-size: 1.1rem;
}
p, ul, ol, address, blockquote {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 16px;
  color: #1e2734;
}
ul, ol {
  padding-left: 22px;
}
strong {
  font-weight: 900;
  color: #184A76;
}
em {
  color: #184A76;
  font-style: italic;
}


/* === CONTAINER & SECTION === */
.container {
  width: 100%;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 4px 32px rgba(24,74,118,0.06);
}
.content-wrapper {
  width: 100%;
  margin-bottom: 20px;
}

/* === FLEX LAYOUTS === */
.feature-grid, .service-cards, .consulting-package-grid, .article-list ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.feature-grid > div, .service-card, .article-list ul li {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 10px rgba(24,74,118,0.08);
  padding: 24px 20px;
  flex: 1 1 220px;
  min-width: 220px;
  margin-bottom: 20px;
  transition: box-shadow 0.22s cubic-bezier(.45,.03,.51,.95), transform 0.22s cubic-bezier(.45,.03,.51,.95);
  position: relative;
}
.feature-grid > div:hover, .service-card:hover, .article-list ul li:hover {
  box-shadow: 0 8px 34px rgba(24,74,118,0.18);
  transform: translateY(-4px) scale(1.015);
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* === HEADER === */
header {
  background: #fff;
  box-shadow: 0 2px 8px rgba(24,74,118,0.07);
  width: 100%;
  z-index: 9;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
  gap: 24px;
}
.main-nav {
  display: flex;
  gap: 28px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
}
.main-nav a {
  font-size: 1.01rem;
  color: #184A76;
  padding: 6px 4px 7px 4px;
  position: relative;
  transition: color 0.2s;
}
.main-nav a.active, .main-nav a:focus, .main-nav a:hover {
  color: #F1C93B;
}
header img {
  height: 42px;
  max-width: 190px;
}


/* === BUTTONS === */
.btn-primary, .btn-secondary, .cookie-banner button, .cookie-modal-actions button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  line-height: 1.1;
  display: inline-flex;
  align-items: center;
  padding: 12px 32px;
  border: none;
  border-radius: 28px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, color 0.18s, transform 0.08s;
  margin-top: 12px;
  margin-bottom: 12px;
  letter-spacing: .04em;
  box-shadow: 0 3px 12px rgba(24,74,118,0.11);
}
.btn-primary {
  background: #184A76;
  color: #fff;
  box-shadow: 0 5px 40px #184A761c, 0 1px 5px #184A768c;
}
.btn-primary:hover, .btn-primary:focus {
  background: #F1C93B;
  color: #184A76;
}
.btn-secondary {
  background: #F1C93B;
  color: #184A76;
  border: 2px solid #184A76;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #184A76;
  color: #fff;
  border-color: #F1C93B;
}


/* === HERO SECTION === */
.hero {
  background: linear-gradient(95deg, #184A76 0%, #2360A5 80%, #F1C93B 180%);
  color: #fff;
  min-height: 390px;
  display: flex;
  align-items: center;
  padding: 64px 0 56px 0;
  margin-bottom: 0;
}
.hero .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero h1 {
  font-size: 2.8rem;
  color: #fff;
  text-shadow: 0 4px 32px rgba(24,74,118,0.13);
  margin-bottom: 18px;
}
.hero .subheadline {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.22rem;
  color: #ffffffd9;
  margin-bottom: 30px;
  max-width: 590px;
}
.hero .btn-primary {
  margin-top: 8px;
  box-shadow: 0 5px 34px #0001;
}

/* === SERVICES, FEATURES, PRICING, PROGRAMS === */
.services-list li {
  margin-bottom: 12px;
  font-size: 1.1rem;
  font-weight: 500;
  padding-left: 0;
  color: #184A76;
  line-height: 1.6;
}
.price-highlight {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.18rem;
  font-weight: 900;
  color: #184A76;
  background: #F1C93B;
  display: inline-block;
  padding: 6px 18px;
  border-radius: 19px;
  margin: 12px 0;
  letter-spacing: .02em;
  box-shadow: 0 2px 16px #184A7609;
}
.service-cards {
  margin-bottom: 32px;
}
.service-card {
  flex: 1 1 290px;
  margin-bottom: 20px;
  min-width: 290px;
  background: #fff;
  border: 2.4px solid #F1C93B;
  transition: border-color 0.16s;
}
.service-card:hover {
  border-color: #184A76;
}


/****** Consulting Grid *****/
.consulting-package-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 26px;
}
.benefits-list {
  margin: 24px 0 14px 0;
  font-size: 1.07rem;
  color: #184A76;
}
.benefits-list li {
  margin-bottom: 9px;
  list-style-type: disc;
}

/* === TABLES (for Schedule Page) === */
.session-table {
  width: 100%;
  margin: 22px 0 38px;
  overflow-x: auto;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 18px #184A7633;
}
.session-table table {
  width: 100%;
  border-collapse: collapse;
  min-width: 550px;
}
.session-table th, .session-table td {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  text-align: left;
  padding: 14px 18px;
}
.session-table thead th {
  color: #fff;
  background: #184A76;
  font-size: 1.08rem;
  font-weight: 900;
  border-bottom: 2px solid #F1C93B;
}
.session-table tbody tr {
  background: #F8F9FC;
  border-bottom: 1.5px solid #c9d1da6c;
  transition: background 0.14s;
}
.session-table tbody tr:hover {
  background: #F1C93B22;
}
.session-table a {
  color: #184A76;
  font-weight: 900;
  padding: 6px 14px;
  background: #F1C93B;
  border-radius: 13px;
  font-size: .97rem;
  margin-left: -4px;
  transition: background 0.14s, color 0.16s;
}
.session-table a:hover {
  background: #184A76;
  color: #fff;
}

/* === TESTIMONIALS & RATING === */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 24px 24px 18px 24px;
  margin-bottom: 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 3px 15px 0 #184A7614;
  border: 2.2px solid #F1C93B;
}
.testimonial-card blockquote {
  font-size: 1.15rem;
  color: #184A76;
  font-style: italic;
  line-height: 1.4;
  margin-bottom: 0;
}
.testimonial-card strong {
  color: #184A76;
}
.testimonial-card > div:last-child {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #F1C93B;
  font-size: 1.22rem;
  font-weight: 900;
  letter-spacing: 2px;
}

/* === ARTICLE LIST (Resources) === */
.article-list ul {
  flex-direction: column;
  gap: 18px;
}
.article-list li {
  padding: 12px 18px;
  border-left: 7px solid #F1C93B;
  background: #fff;
  font-size: 1.10rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 13px;
  transition: border-color 0.14s, background 0.12s;
}
.article-list li:hover {
  border-left-color: #184A76;
  background: #F4F7F9;
}
.article-list li span {
  font-size: 1rem;
  color: #8c834b;
  margin-left: 12px;
}

/* === TEXT BLOCKS === */
.text-section {
  margin: 0 0 26px 0;
}
.text-section ul, .text-section ol {
  margin-bottom: 18px;
}
.text-section ul li {
  margin-bottom: 10px;
  font-size: 1.02rem;
}
.text-section h3 {
  font-size: 1.11rem;
  font-weight: 800;
  margin-top: 16px;
  margin-bottom: 4px;
}
address {
  font-style: normal;
  margin-bottom: 14px;
  color: #1e2734;
}

/* === MAP / CONTACT EXTRAS === */
.map-embed {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 18px 0 2px;
}
.map-embed img {
  width: 32px;
  height: 32px;
}

.contact-links {
  margin-top: 8px;
  font-size: 1.02rem;
}
.contact-links a {
  text-decoration: underline;
}

/* === FOOTER === */
footer {
  background: #184A76;
  color: #fff;
  padding: 38px 0 20px 0;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.footer-nav {
  display: flex;
  gap: 32px;
  margin-bottom: 11px;
}
.footer-nav a {
  color: #F1C93B;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  transition: color 0.19s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #fff;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 15px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  font-size: 1.06rem;
}
.footer-brand img {
  width: 36px;
}

/* === SPACING Utility (for all spacing rules) === */
main section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
main section:last-child {
  margin-bottom: 0;
}
main .content-wrapper {
  margin-bottom: 0;
}
div:empty {
  display: none !important;
}


/* === MOBILE MENU === */
.mobile-menu-toggle {
  position: fixed;
  top: 20px;
  right: 24px;
  z-index: 100;
  background: #184A76;
  color: #F1C93B;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: none;
  font-size: 2rem;
  box-shadow: 0 4px 18px #184A7621;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  transition: background 0.18s, color 0.16s, transform 0.13s;
}
.mobile-menu-toggle:active {
  transform: scale(0.95);
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #184A76;
  color: #fff;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-center;
  justify-content: flex-start;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(.73,.21,.39,.81);
  box-shadow: -6px 0 30px #184A7680;
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: transparent;
  color: #F1C93B;
  border: none;
  font-size: 2.2rem;
  position: absolute;
  top: 24px;
  right: 32px;
  cursor: pointer;
  z-index: 1001;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  margin-top: 95px; /* space below close btn */
  align-items: center;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.44rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  padding: 16px 28px;
  border-radius: 8px;
  transition: background 0.20s, color 0.11s;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  background: #F1C93B;
  color: #184A76;
}

@media (max-width: 1100px) {
  .container {
    max-width: 100%;
    padding-left: 11px;
    padding-right: 11px;
  }
}
@media (max-width: 900px) {
  .main-nav {
    gap: 15px;
  }
  .feature-grid, .service-cards, .consulting-package-grid {
    gap: 15px;
  }
}

@media (max-width: 820px) {
  .feature-grid, .service-cards, .consulting-package-grid {
    gap: 12px;
  }
  .container {
    padding-left: 5px;
    padding-right: 5px;
  }
}
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }
  .hero .container {
    padding: 0 10px;
  }
  .main-nav, header .btn-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .footer-nav {
    flex-direction: column;
    gap: 13px;
  }
  .feature-grid, .service-cards, .consulting-package-grid, .card-container, .content-grid, .article-list ul {
    flex-direction: column;
    gap: 20px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 17px;
    align-items: flex-start;
  }
  main section, .section {
    padding: 24px 4px;
    margin-bottom: 38px;
  }
  .testimonial-card {
    padding: 18px 12px 14px 12px;
  }
}
@media (max-width: 490px) {
  .hero h1 {
    font-size: 1.45rem;
  }
  h2 {
    font-size: 1.28rem;
  }
  main section, .section {
    padding: 10px 2px;
  }
  .service-card, .feature-grid > div {
    padding: 12px 6px;
  }
  .price-highlight {
    font-size: 1rem;
    padding: 5px 11px;
  }
}

/* === COOKIE BANNER & MODAL === */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #fff;
  color: #184A76;
  box-shadow: 0 -4px 32px #184A7660;
  border-top: 4px solid #F1C93B;
  z-index: 999999;
  padding: 22px 13px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  font-size: 1.04rem;
  font-family: 'Roboto', Arial, sans-serif;
  min-height: 80px;
  animation: cookie-in 0.6s cubic-bezier(.6,.02,.75,1.02);
}
@keyframes cookie-in {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-msg {
  flex: 6 1 250px;
  font-size: 1.01rem;
}
.cookie-banner .cookie-actions {
  flex: 2 1 220px;
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: flex-end;
}
.cookie-banner button {
  background: #184A76;
  color: #fff;
  font-size: 1.01rem;
  border-radius: 19px;
  padding: 8px 24px;
  border: none;
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 700;
  transition: background 0.15s, color 0.15s, outline 0.14s;
  box-shadow: 0 1.5px 8px #184A760e;
}
.cookie-banner button:focus, .cookie-banner button:hover {
  background: #F1C93B;
  color: #184A76;
  outline: 2px solid #184A76;
}
.cookie-banner .btn-plain {
  background: transparent;
  color: #184A76;
  border: 2px solid #F1C93B;
}
.cookie-banner .btn-plain:hover, .cookie-banner .btn-plain:focus {
  background: #184A76;
  color: #fff;
}

/* Cookie settings modal overlay */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(24,74,118,0.80);
  z-index: 1000020;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s;
}
.cookie-modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.cookie-modal {
  background: #fff;
  width: 96vw;
  max-width: 410px;
  border-radius: 28px;
  box-shadow: 0 11px 44px #184A7630;
  padding: 36px 26px 26px 26px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  animation: modalIn 0.36s cubic-bezier(.55,.01,.38,1.04);
  color: #184A76;
  position: relative;
}
@keyframes modalIn {
  from { transform: translateY(120px) scale(0.95); opacity: 0; }
  to   { transform: translateY(0) scale(1); opacity: 1; }
}
.cookie-modal h2 {
  font-size: 1.38rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  margin-bottom: 10px;
}
.cookie-modal .cookie-option {
  background: #F4F7F9;
  margin-bottom: 10px;
  border-radius: 11px;
  padding: 11px 16px 11px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cookie-modal .option-label {
  font-size: 1.05rem;
  font-weight: 600;
}
.cookie-modal .cookie-toggle {
  font-size: 1.5rem;
  border-radius: 50%;
  background: #184A76;
  color: #fff;
  border: none;
  width: 34px;
  height: 34px;
  cursor: pointer;
  transition: background 0.19s, color 0.13s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cookie-modal .cookie-toggle.toggled {
  background: #F1C93B;
  color: #184A76;
}
.cookie-modal .cookie-toggle:disabled {
  opacity: .5;
  pointer-events: none;
}
.cookie-modal-actions {
  display: flex;
  gap: 18px;
  margin-top: 18px;
}
.cookie-modal-actions button {
  flex: 1 1 0;
  font-size: 1.07rem;
  background: #184A76;
  border-radius: 19px;
}
.cookie-modal-actions button.btn-plain {
  background: #fff;
  color: #184A76;
  border: 2px solid #F1C93B;
}
.cookie-modal-actions button.btn-plain:hover, .cookie-modal-actions button.btn-plain:focus {
  background: #F1C93B;
  color: #184A76;
}
.cookie-modal .modal-close-x {
  position: absolute;
  top: 14px;
  right: 18px;
  font-size: 1.6rem;
  background: none;
  border: none;
  color: #184A76;
  cursor: pointer;
  transition: color 0.17s;
}
.cookie-modal .modal-close-x:hover {
  color: #F1C93B;
}

@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    gap: 15px;
    font-size: 0.97rem;
    align-items: flex-start;
  }
  .cookie-banner .cookie-actions {
    flex: none;
    margin-bottom: 0;
    justify-content: flex-start;
    gap: 8px;
  }
  .cookie-modal {
    max-width: 98vw;
    padding: 18px 7px 18px 10px;
  }
  .cookie-modal-actions {
    gap: 9px;
  }
}

/* === MICROINTERACTIONS & EFFECTS === */
.btn-primary, .btn-secondary, .cookie-banner button, .cookie-modal-actions button, .mobile-menu-toggle {
  will-change: transform, box-shadow;
  user-select: none;
  touch-action: manipulation;
}
.btn-primary:active, .btn-secondary:active {
  transform: scale(.98);
}

/* === GEOMETRIC & MODERN VISUALS === */
.hero, .feature-grid > div, .service-card, .testimonial-card, .consulting-package-grid > div, .section, .session-table, .cookie-modal {
  border-radius: 18px;
}

/* === SCROLLBAR === */
::-webkit-scrollbar {
  width: 14px;
  background: #F4F7F9;
}
::-webkit-scrollbar-thumb {
  background: #184A76;
  border-radius: 8px;
}

/* === FOCUS Visibility === */
a:focus, input:focus, button:focus {
  outline: 2.2px solid #F1C93B;
  outline-offset: 2px;
}

/* === HIDE/SHOW ON MOBILE === */
@media (max-width: 768px) {
  header .main-nav, header .btn-primary {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex !important;
  }
}

/* === PRINT STYLES === */
@media print {
  .mobile-menu, .mobile-menu-toggle, .cookie-banner, .cookie-modal-overlay {
    display: none !important;
  }
  body, .container, main, section, header, footer {
    background: #fff !important;
    color: #000 !important;
  }
}

/* === END === */
