/* RESET & BASELINE ----------------------------- */
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, 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;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #F6F6F6;
  background: #181C22;
  line-height: 1.6;
  min-height: 100vh;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  margin-left: 1.4em;
  padding-left: 0.6em;
}

li {
  margin-bottom: 0.6em;
}

a {
  color: #E2B74B;
  text-decoration: none;
  transition: color 0.18s ease;
}

a:hover, a:focus {
  color: #F6F6F6;
  text-decoration: underline;
}

/* UTILITY & LAYOUT ------------------------------------ */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card {
  background: #20242B;
  color: #F6F6F6;
  border: 1.5px solid #343A43;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(30,32,34,0.06);
  margin-bottom: 20px;
  position: relative;
  padding: 24px 20px;
  transition: box-shadow 0.18s, border-color 0.18s;
}

.card:hover {
  border-color: #E2B74B;
  box-shadow: 0 4px 24px rgba(226,183,75,0.08), 0 2px 12px rgba(34,73,127,0.09);
  z-index: 2;
}

.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;
  background: #F6F6F6;
  color: #23292F;
  padding: 20px;
  border-left: 4px solid #E2B74B;
  border-radius: 10px;
  margin-bottom: 20px;
  min-width: 230px;
  max-width: 560px;
  box-shadow: 0 4px 16px 0 rgba(44,44,44,0.06);
  font-size: 1.04em;
}
.testimonial-card p {
  margin: 0 0 4px 0;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 400;
}
.testimonial-card span {
  font-size: 0.96em;
  font-style: italic;
  color: #23497F;
}
.star-rating {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #E2B74B;
  font-size: 1.13em;
  margin-top: 8px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.text-section {
  margin: 10px 0 16px 0;
}

.price, .price-info {
  display: inline-block;
  background: #23497F;
  color: #F6F6F6;
  padding: 2px 12px;
  border-radius: 8px;
  font-weight: 500;
  margin-left: 8px;
  font-size: 1em;
}

/* HEADINGS & TYPOGRAPHY ------------------------------ */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Arial Black', Arial, sans-serif;
  text-transform: none;
  letter-spacing: 0.02em;
}
h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #F6F6F6;
  margin-bottom: 10px;
  line-height: 1.13;
}
h2 {
  font-size: 2rem;
  font-weight: 600;
  color: #E2B74B;
  line-height: 1.18;
}
h3 {
  font-size: 1.325rem;
  font-weight: 500;
  color: #23497F;
  margin-top: 1.05em;
  margin-bottom: 0.74em;
}
h4, h5, h6 {
  font-size: 1.1rem;
  font-weight: 500;
  color: #E2B74B;
}

.hero-sub {
  font-size: 1.19rem;
  color: #B9C3CF;
  margin-bottom: 18px;
  font-family: 'Roboto', Arial, sans-serif;
}
blockquote {
  color: #F6F6F6;
  padding: 16px 24px;
  background: #23292F;
  border-left: 4px solid #E2B74B;
  border-radius: 8px;
  margin: 18px 0;
  font-style: italic;
  font-size: 1.15em;
}

strong {
  font-weight: 600;
  color: #E2B74B;
}

/* BUTTONS -------------------------------------------- */
.btn-primary, .btn-secondary {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: none;
  padding: 13px 36px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  margin: 14px 0 0 0;
  box-shadow: 0 2px 8px 0 rgba(32,32,44,0.10);
  transition: background 0.2s, color 0.18s, box-shadow 0.18s;
}
.btn-primary {
  background: #23497F;
  color: #F6F6F6;
  border: 1.5px solid #23497F;
}
.btn-primary:hover, .btn-primary:focus {
  background: #1B2F4A;
  color: #E2B74B;
  box-shadow: 0 6px 24px 0 rgba(34,73,127,0.22);
  outline: none;
}
.btn-secondary {
  background: #E2B74B;
  color: #23292F;
  border: 1.5px solid #E2B74B;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #cfa73f;
  color: #23292F;
  outline: none;
  box-shadow: 0 6px 20px 0 rgba(226,183,75,0.18);
}

/* NAVIGATION ----------------------------------------- */
header {
  background: #20242B;
  border-bottom: 2px solid #343A43;
  position: sticky;
  top: 0;
  z-index: 100;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1180px;
  margin: 0 auto;
  height: 74px;
  padding: 0 20px;
}
.main-nav .brand-logo {
  display: flex;
  align-items: center;
  height: 44px;
}
.main-nav ul {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  list-style: none;
  margin: 0 16px 0 0;
}
.main-nav ul li a {
  color: #F6F6F6;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  letter-spacing: 0.01em;
  font-size: 1.05em;
  transition: color 0.16s;
  padding: 4px 0;
}
.main-nav ul li a:hover, .main-nav ul li a:focus {
  color: #E2B74B;
}

/* Hide burger by default, show mobile menu off-canvas */
.mobile-menu-toggle {
  display: none;
  position: relative;
  font-size: 2.1rem;
  background: none;
  border: none;
  color: #E2B74B;
  margin-left: 12px;
  z-index: 102;
  cursor: pointer;
  line-height: 1;
  padding: 6px 10px;
  transition: color 0.15s, background 0.18s;
}
.mobile-menu-toggle:active,
.mobile-menu-toggle:focus {
  outline: none;
  color: #F6F6F6;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 90vw;
  max-width: 340px;
  min-width: 215px;
  height: 100vh;
  background: #23292F;
  box-shadow: -8px 0 32px 0 rgba(34,73,127,0.10);
  z-index: 200;
  padding: 34px 24px 24px 32px;
  transform: translateX(105%);
  transition: transform 0.33s cubic-bezier(.8,.2,.2,1.2);
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.mobile-menu.open {
  transform: translateX(0%);
}
.mobile-menu-close {
  display: block;
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 2rem;
  color: #E2B74B;
  margin-bottom: 15px;
  cursor: pointer;
  z-index: 202;
  transition: color 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #F6F6F6;
  outline: none;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  color: #F6F6F6;
  font-size: 1.13rem;
  padding: 10px 2px;
  border-radius: 5px;
  transition: background 0.14s, color 0.16s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #23497F;
  color: #E2B74B;
}

/* Hide main nav on mobile, show burger */
@media (max-width: 1024px) {
  .main-nav ul {
    display: none;
  }
  .main-nav .btn-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .main-nav {
    padding-right: 64px;
  }
}

@media (max-width: 600px) {
  .main-nav {
    height: 60px;
    padding: 0 10px 0 10px;
  }
  .mobile-menu {
    padding-left: 12px;
    padding-right: 8px;
  }
}

/* FOOTER --------------------------------------------- */
footer {
  background: #20242B;
  color: #B9C3CF;
  font-size: 0.97rem;
  padding: 0;
  border-top: 2px solid #343A43;
}
footer section {
  padding: 36px 0 16px 0;
  margin-bottom: 0;
}
.footer-menu {
  margin-bottom: 16px;
  color: #F6F6F6;
  font-size: 1.07em;
  font-family: 'Montserrat', Arial, sans-serif;
}
.footer-menu a {
  color: #B9C3CF;
  margin: 0 5px;
  transition: color 0.14s;
}
.footer-menu a:hover, .footer-menu a:focus {
  color: #E2B74B;
}
.branding {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}
.branding img {
  width: 54px;
  height: 54px;
  margin-bottom: 4px;
}
.branding .tagline {
  display: block;
  color: #E2B74B;
  font-size: 1.1em;
  font-weight: 600;
}
.mini-contact-info {
  margin-top: 8px;
  color: #B9C3CF;
  font-size: 1em;
}

/* CARDS & SERVICE SECTIONS --------------------------- */
.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
  margin-bottom: 32px;
}
.service-card {
  background: #20242B;
  color: #F6F6F6;
  border: 1.5px solid #343A43;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(36,42,54,0.08);
  padding: 26px 18px 20px 22px;
  min-width: 250px;
  max-width: 332px;
  flex: 1 1 270px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.19s, border-color 0.19s;
}
.service-card:hover {
  border-color: #E2B74B;
  box-shadow: 0 8px 20px 0 rgba(34,73,127,0.15);
  z-index: 2;
}
.service-card h3 {
  font-size: 1.15em;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  color: #E2B74B;
  margin-bottom: 4px;
}
.service-card .price {
  font-size: 1em;
  background: #23497F;
  color: #F6F6F6;
  border-radius: 8px;
  padding: 2px 8px;
  margin-top: 6px;
}

/* CTA Section ---------------------------------------- */
.section .btn-primary, .section .btn-secondary {
  margin-top: 12px;
}

/* FORMS & TEXT SECTIONS ------------------------------- */
.text-section strong {
  color: #E2B74B;
}

/* OL/UL STYLE ----------------------------------------- */
ul {
  list-style: disc outside;
}
ol {
  list-style: decimal outside;
}
ul li, ol li {
  line-height: 1.7;
  padding-left: 0.18em;
}

/* RESPONSIVE ------------------------------------------ */
@media (max-width: 1050px) {
  .container {
    max-width: 950px;
    padding: 0 10px;
  }
  .content-grid, .card-container, .service-cards {
    gap: 18px;
  }
}
@media (max-width: 800px) {
  .container {
    max-width: 100vw;
    padding: 0 4vw;
  }
  .content-wrapper, .content-grid, .card-container, .service-cards {
    gap: 14px;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 2vw;
  }
  .content-wrapper {
    gap: 12px;
  }
  .section {
    padding: 30px 8px;
  }
  .card, .service-card {
    padding: 16px 8px;
    min-width: 180px;
    font-size: 0.96em;
  }
  .hero-sub, p, ul, li, blockquote {
    font-size: 0.97em;
  }
  .service-cards {
    flex-direction: column;
    gap: 12px;
  }
  .testimonial-card {
    max-width: 100%;
    font-size: 1em;
  }
  .branding{
    font-size: 0.95em;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
}
@media (max-width: 520px) {
  h1 {
    font-size: 1.48rem;
  }
  h2 {
    font-size: 1.2rem;
  }
  h3 {
    font-size: 1.06rem;
  }
  .btn-primary, .btn-secondary {
    padding: 10px 16px;
    font-size: 0.97em;
  }
}

/* ANIMATIONS ------------------------------------------ */
.btn-primary, .btn-secondary, .mobile-menu-toggle, .mobile-menu-close {
  transition: all 0.19s cubic-bezier(.7,.2,.2,1.1);
}
.mobile-menu {
  transition: transform 0.33s cubic-bezier(.8,.2,.2,1.2);
}
.mobile-menu.open {
  box-shadow: -16px 0 88px 4px rgba(34,73,127,0.18);
}

/* COOKIE CONSENT BANNER & MODAL ----------------------- */
.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #23292F;
  color: #F6F6F6;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 18px 12px;
  gap: 18px;
  z-index: 300;
  box-shadow: 0 -2px 16px 0 rgba(28,28,32,0.19);
  font-size: 1.04em;
  animation: cookieBannerSlide 0.66s cubic-bezier(.64,1.44,.32,1.02) both;
}
@keyframes cookieBannerSlide {
  0% { transform: translateY(100%); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-consent-banner .cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1em;
  margin-left: 12px;
  padding: 7px 22px;
  cursor: pointer;
  transition: background 0.16s, color 0.14s;
  box-shadow: 0 1.5px 7px 0 rgba(68,68,78,0.05);
}
.cookie-consent-banner .cookie-btn.accept {
  background: #23497F;
  color: #F6F6F6;
}
.cookie-consent-banner .cookie-btn.accept:hover, .cookie-consent-banner .cookie-btn.accept:focus {
  background: #1b2f4a;
  color: #E2B74B;
}
.cookie-consent-banner .cookie-btn.reject {
  background: transparent;
  color: #E2B74B;
  border: 1.5px solid #E2B74B;
}
.cookie-consent-banner .cookie-btn.reject:hover, .cookie-consent-banner .cookie-btn.reject:focus {
  background: #2B2F37;
  color: #E2B74B;
}
.cookie-consent-banner .cookie-btn.settings {
  background: #E2B74B;
  color: #23292F;
  border: 1.5px solid #E2B74B;
}
.cookie-consent-banner .cookie-btn.settings:hover, .cookie-consent-banner .cookie-btn.settings:focus {
  background: #cfa73f;
  color: #23292F;
}

@media (max-width: 600px) {
  .cookie-consent-banner {
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
    font-size: 0.96em;
  }
  .cookie-consent-banner .cookie-btn {
    margin-left: 0;
    margin-bottom: 4px;
    width: 96%;
    min-width: 144px;
  }
}

.cookie-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 94vw;
  max-width: 440px;
  min-width: 0;
  background: #20242B;
  color: #F6F6F6;
  padding: 30px 18px 24px 28px;
  border-radius: 13px;
  box-shadow: 0 4px 44px 6px rgba(34,73,127,0.21), 0 2px 20px 0 rgba(44,44,44,0.06);
  z-index: 401;
  transform: translate(-50%,-50%) scale(0.93);
  animation: cookieModalPop .42s cubic-bezier(.64,1.44,.32,1.02) both;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
@keyframes cookieModalPop {
  0% { opacity: 0; transform: translate(-50%,-50%) scale(0.6); }
  100% { opacity: 1; transform: translate(-50%,-50%) scale(1); }
}
.cookie-modal h2 {
  color: #E2B74B;
  margin-top: 0;
  font-size: 1.37em;
}
.cookie-modal label {
  font-family: 'Montserrat', Arial, sans-serif;
  margin-left: 6px;
  cursor: pointer;
}
.cookie-modal .cookie-category-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 8px 0 6px 0;
}
.cookie-modal .toggle-switch {
  width: 38px;
  height: 22px;
  background: #23292F;
  border: 1.5px solid #E2B74B;
  border-radius: 14px;
  position: relative;
  cursor: pointer;
  transition: background 0.14s;
  display: inline-block;
}
.cookie-modal .toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}
.cookie-modal .toggle-slider {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 18px;
  height: 18px;
  background: #E2B74B;
  border-radius: 50%;
  transition: left 0.18s, background 0.18s;
}
.cookie-modal .toggle-switch input:checked + .toggle-slider {
  left: 18px;
  background: #23497F;
}
.cookie-modal .cookie-btn {
  margin-top: 10px;
}
.cookie-modal .close-cookie-modal {
  position: absolute;
  top: 10px;
  right: 20px;
  background: transparent;
  border: none;
  color: #E2B74B;
  font-size: 1.34rem;
  cursor: pointer;
  z-index: 3000;
}
.cookie-modal .close-cookie-modal:hover, .cookie-modal .close-cookie-modal:focus {
  color: #F6F6F6;
}
.cookie-modal .description {
  font-size: 0.96em;
  color: #B9C3CF;
}
@media (max-width: 500px) {
  .cookie-modal {
    padding: 20px 4vw 12px 2vw;
    max-width: 98vw;
  }
  .cookie-modal h2 {
    font-size: 1.06em;
  }
}

/* INDUSTRIAL MODERN TOUCHES --------------------------- */
/* Metallic touches and urban feeling via colors & shadow */
body, header, footer, .section, .card, .service-card {
  box-shadow: 0 1.5px 7px 0 rgba(68,68,78,0.05) inset;
}
.card, .service-card {
  border: 1.5px solid #343A43;
  background: linear-gradient(115deg, #20242B 88%, #343A43 100%);
}
.section {
  background: linear-gradient(100deg, #181C22 86%, #23292F 100%);
  border-radius: 16px;
  border: 1.2px solid #23292F;
}
hr {
  border: none;
  border-top: 1px solid #343A43;
  margin: 2em 0;
}

/* ICONS in features/seminars */
.section img[alt*="Collaboration"], .section img[alt*="Leadership"], .section img[alt*="Sur-mesure"] {
  width: 32px;
  height: 32px;
  margin-right: 10px;
  display: inline-block;
  vertical-align: middle;
  filter: grayscale(0.2) brightness(0.98) contrast(1.18) drop-shadow(0 2px 2px #343A43);
  background: transparent;
  border-radius: 50%;
}

/* VISUAL HIERARCHY & SPACING -------------------------- */
.section + .section {
  margin-top: 36px;
}
.card-container, .card-grid, .content-grid, .service-cards {
  margin-top: 12px;
}
.card, .service-card, .testimonial-card {
  margin-bottom: 20px;
}

/* Z-INDEX AND OVERLAY LAYERS -------------------------- */
.mobile-menu, .cookie-modal {
  z-index: 4999;
}

/* PRINT ----------------------------------------------- */
@media print {
  *, *:before, *:after {
    color: #181C22 !important;
    background: #fff !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }
  .main-nav, .mobile-menu-toggle, .footer-menu, .cookie-consent-banner, .cookie-modal {
    display: none !important;
  }
}

/* MISC FOCUS STATES ----------------------------------- */
:focus {
  outline: 2px dashed #E2B74B;
  outline-offset: 1.5px;
}
::-webkit-input-placeholder, ::-moz-placeholder, :-ms-input-placeholder, ::placeholder {
  color: #B9C3CF;
  opacity: 1;
}

/* FONTS ----------------------------------------------- */
@import url('https://fonts.googleapis.com/css?family=Montserrat:400,500,600,700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');

body, .content-wrapper, .main-nav ul, .mobile-nav, .footer-menu, .mini-contact-info {
  font-family: 'Roboto', Arial, sans-serif;
}
h1, h2, h3, .brand-logo, .btn-primary, .btn-secondary, .mobile-menu-toggle, .mobile-menu-close, .footer-menu {
  font-family: 'Montserrat', 'Arial Black', Arial, sans-serif;
}

/* CUSTOM SCROLLBAR ----------------------------------- */
::-webkit-scrollbar {
  width: 7px;
  background: #23292F;
}
::-webkit-scrollbar-thumb {
  background: #23497F;
  border-radius: 3px;
}

/* END OF CSS */