/* 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-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
  height: 100%;
  width: 100%;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  background: #F3F7FA;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  color: #185271;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  min-height: 100vh;
  height: 100%;
  line-height: 1.5;
  letter-spacing: -0.01em;
  position: relative;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: #185271;
  text-decoration: none;
  transition: color .2s cubic-bezier(.4,0,.2,1);
  font-weight: 600;
}
a:hover, a:focus {
  color: #FCB900;
  outline: none;
}
ul, ol {
  list-style: none;
}
button {
  font-family: inherit;
  cursor: pointer;
  background: none;
  border: none;
  outline: none;
  padding: 0;
}

/* TYPOGRAPHY */
h1, .hero h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
  color: #185271;
  letter-spacing: -1px;
  margin-bottom: 18px;
  line-height: 1.09;
}
h1, .thank-you-section h1, .hero h1 {
  font-size: 2.6rem;
  margin-bottom: 18px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  font-weight: 700;
}
h4, h5, h6 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
p, blockquote, li, cite {
  font-size: 1rem;
  color: #185271;
}
strong, b {
  font-weight: 700;
  letter-spacing: -0.01em;
}
blockquote {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  background: #fffbee;
  color: #185271;
  border-left: 6px solid #FCB900;
  margin-bottom: 10px;
  padding: 18px 20px 18px 24px;
  border-radius: 0 16px 16px 0;
  font-size: 1.08rem;
  font-weight: 600;
}
cite {
  display: block;
  color: #185271;
  font-size: 1rem;
  font-style: normal;
  margin-top: 6px;
  opacity: 0.8;
  font-weight: 700;
}
li {
  line-height: 1.7;
}
.text-section ul li:before {
  content: '';
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #FCB900;
  border-radius: 2px;
  margin-right: 12px;
  vertical-align: middle;
}

/* CONTAINER LAYOUT & SPACING */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}
.section,
.hero,
.features,
.courses-preview,
.certification,
.testimonials,
.cta,
.about-brand,
.team,
.accreditations,
.courses-list,
.course-benefits,
.course-faq,
.certification-process,
.certification-value,
.services-for-companies,
.value-employers,
.contact-section,
.privacy-policy-section,
.cookies-policy-section,
.terms-section,
.thank-you-section,
.gdpr-information {
  margin-bottom: 60px;
  padding: 40px 20px;
}

@media (max-width: 900px) {
  .section,
  .hero,
  .features,
  .courses-preview,
  .certification,
  .testimonials,
  .cta {
    margin-bottom: 40px;
    padding: 32px 0;
  }
}

@media (max-width: 600px) {
  .section,
  .hero,
  .features,
  .courses-preview,
  .certification,
  .testimonials,
  .cta {
    margin-bottom: 30px;
    padding: 18px 0;
  }
  .container {
    padding-left: 8px;
    padding-right: 8px;
  }
}

/* FLEX SPACING PATTERNS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 14px rgba(24,82,113,.07);
  padding: 28px 22px 24px 22px;
  transition: box-shadow .2s cubic-bezier(.4,0,.2,1), transform .18s cubic-bezier(.4,0,.2,1);
}
.card:hover {
  box-shadow: 0 8px 28px rgba(24,82,113,.18);
  transform: translateY(-4px) scale(1.025);
}
.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 26px;
  background: #fff;
  border-left: 6px solid #185271;
  border-radius: 20px;
  box-shadow: 0 2px 12px rgba(24,82,113,.08);
  margin-bottom: 20px;
  min-width: 0;
  transition: box-shadow .17s cubic-bezier(.4,0,.2,1);
}
.testimonial-card:hover {
  box-shadow:0 8px 24px rgba(24,82,113,.13);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* BRAND PRIMARY BUTTON & LINK STYLES */
.btn-primary,
.main-nav .btn-primary, 
.cta .btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', Arial, Helvetica,sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  min-height: 46px;
  padding: 0 32px;
  border-radius: 32px;
  background: #185271;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.5px;
  line-height: 1;
  border: none;
  box-shadow: 0 2px 8px rgba(24,82,113,0.10);
  margin-top: 12px;
  margin-bottom: 12px;
  cursor: pointer;
  transition: background .2s, transform .18s, box-shadow .2s;
}
.btn-primary:hover, .btn-primary:focus {
  background: #FCB900;
  color: #185271;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 6px 28px rgba(252,185,0,.13);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', Arial, Helvetica,sans-serif;
  font-size: 1rem;
  font-weight: 700;
  min-height: 40px;
  padding: 0 26px;
  border-radius: 32px;
  background: #FCB900;
  color: #185271;
  border: none;
  margin: 0 8px;
  margin-bottom: 8px;
  box-shadow: 0 2px 5px rgba(252,185,0,.09);
  transition: background .2s, color .2s, transform .18s;
}
.btn-secondary:hover, .btn-secondary:focus{
  background: #185271;
  color: #fff;
  transform: translateY(-2px) scale(1.02);
}


/* HEADER & NAVIGATION */
header {
  background: #fff;
  box-shadow: 0 2px 14px rgba(24,82,113,.07);
  position: relative;
  z-index: 20;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
  gap: 24px;
}
.logo img {
  max-height: 50px;
  width: auto;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: #185271;
  padding: 6px 8px;
  border-radius: 4px;
  transition: background .19s, color .2s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #F3F7FA;
  color: #FCB900;
}
.main-nav .btn-primary {
  margin-left: 18px;
  min-width: 140px;
  box-shadow: 0 2px 8px rgba(24,82,113,0.11);
}
@media (max-width: 1080px) {
  .main-nav {
    gap: 16px;
  }
  header .container {
    gap: 14px;
  }
}
@media (max-width: 900px) {
  .main-nav {
    gap: 10px;
  }
  .main-nav .btn-primary {
    min-width: 120px;
  }
  header .container {
    height: 72px;
  }
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  color: #185271;
  background: none;
  border: none;
  outline: none;
  padding: 4px 12px;
  cursor: pointer;
  z-index: 105;
  line-height: 1;
  border-radius: 10px;
  transition: background .13s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #F3F7FA;
}
@media (max-width: 968px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #fff;
  z-index: 120;
  transform: translateX(102vw);
  transition: transform .32s cubic-bezier(.76,0,.24,1);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding: 0 0;
  box-shadow: 0 2px 24px rgba(24,82,113,.18);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2.1rem;
  color: #185271;
  background: none;
  border: none;
  margin: 24px 22px 8px 0;
  cursor: pointer;
  z-index: 125;
  align-self: flex-end;
  padding: 6px 11px;
  border-radius: 8px;
  transition: background .13s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #f3f7fa;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  width: 100%;
  padding: 24px 32px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.27rem;
  font-weight: 700;
  color: #185271;
  padding: 10px 0;
  width: 100%;
  border-radius: 6px;
  margin-bottom: 2px;
  transition: background .15s, color .16s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #FCB900;
  color: #185271;
}
@media (min-width: 969px) {
  .mobile-menu {
    display: none !important;
  }
}

/* HERO SECTION */
.hero {
  background: linear-gradient(96deg,#fff 78%, #FCB900 120%);
  box-shadow: 0 2px 16px rgba(24,82,113,.05);
  border-radius: 0 0 38px 38px;
  margin-bottom: 60px;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
}
.hero h1 {
  color: #185271;
  font-size: 2.6rem;
  margin-bottom: 10px;
}
.hero h2 {
  color: #FCB900;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -.5px;
}
.hero p {
  font-size: 1.13rem;
  margin-bottom: 12px;
}

/* FEATURES/GRID */
.features .feature-grid,
.courses-preview .course-cards,
.courses-list .course-preview-list,
.accreditations .accreditation-logos,
.testimonials .testimonial-card:not(:last-child),
.certification-process .badges,
.certification .badges {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 0 -8px;
}
.features .feature-grid > li,
.courses-preview .course-cards > li,
.courses-list .course-preview-list > li,
.accreditations .accreditation-logos > li {
  flex: 1 1 220px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 8px rgba(24,82,113,.07);
  padding: 24px 16px 22px 16px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow .2s;
}
.features .feature-grid > li:hover,
.courses-preview .course-cards > li:hover,
.courses-list .course-preview-list > li:hover {
  box-shadow: 0 8px 24px rgba(252,185,0,0.13);
  transform: translateY(-3px) scale(1.03);
}
.features .feature-grid img {
  height: 40px;
  width: 40px;
}
.accreditations .accreditation-logos > li img,
.certification-process .badges img,
.certification .badges img {
  width: 54px;
  height: 54px;
}

/* TESTIMONIALS */
.testimonials h2, .testimonials h1 {
  margin-bottom: 22px;
}
.testimonial-card {
  max-width: 610px;
  margin: 0 0 20px 0;
  background: #fff;
  color: #185271;
}
.testimonial-card .testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 2px;
}
.testimonial-card blockquote {
  background: transparent;
  color: #185271;
  border-left: 0;
  padding: 0;
  margin-bottom: 6px;
}
.testimonial-summary {
  margin-top: 16px;
  font-weight: bold;
  font-size: 1.1rem;
  background: #F3F7FA;
  color: #185271;
  border-radius: 8px;
  padding: 12px 20px;
}

/* CTA SECTION */
.cta {
  background: #185271;
  color: #fff;
  border-radius: 26px;
  margin-bottom: 60px;
  margin-top: 26px;
  box-shadow: 0 6px 24px rgba(24,82,113,.07);
}
.cta .container {
  color: #fff;
}
.cta h2,
.cta p,
.cta a,
.cta .btn-primary {
  color: #fff;
}
.cta h2 {
  color: #FCB900;
  margin-bottom: 10px;
}
.cta .btn-primary {
  color: #185271;
  background: #FCB900;
  font-weight: bold;
  margin-top: 16px;
}
.cta .btn-primary:hover {
  background: #fff;
  color: #185271;
  box-shadow: 0 6px 24px rgba(252,185,0,0.11);
}

/* CARD/INFOBOX SPACING */
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

/* BADGES */
.badges {
  display: flex;
  align-items: center;
  gap: 30px;
  margin: 14px 0 20px 0;
}

/* ABOUT/TEAM/ACCREDITATIONS */
.text-section {
  margin-bottom: 16px;
}
.about-brand .text-section ul,
.team .text-section ul,
.certification-process ol,
.terms-section ol {
  margin-top: 14px;
  margin-bottom: 14px;
}
.about-brand .text-section ul li, .team .text-section ul li {
  margin-bottom: 8px;
}

/* CONTACT & FOOTER */
.company-details, .contact-details, .map-placeholder {
  margin-bottom: 19px;
}
.company-details strong {
  color: #185271;
}
footer {
  background: #185271;
  color: #fff;
  border-radius: 32px 32px 0 0;
  padding: 0 0 0 0;
  min-height: 160px;
  margin-top: 36px;
}
footer .container {
  padding: 36px 20px 24px 20px;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-logo img {
  max-height: 44px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 8px;
  margin-bottom: 11px;
}
.footer-nav a {
  color: #fff;
  font-weight: 600;
  padding: 3px 4px;
  font-size: 1rem;
  border-radius: 4px;
  transition: background .16s, color .13s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #FCB900;
  color: #185271;
}
.footer-contact img {
  width: 20px;
  height: 20px;
  margin-right: 10px;
  vertical-align: middle;
}
.footer-contact p {
  color: #fff;
  opacity: .91;
  margin-bottom: 7px;
  font-size: 1rem;
}
@media (max-width: 900px) {
  footer .content-wrapper {
    flex-direction: column;
    gap: 19px;
    align-items: flex-start;
  }
}

/* PRIVACY/POLICY/LEGAL SECTIONS */
.privacy-policy-section,
.cookies-policy-section,
.terms-section,
.gdpr-information {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 2px 8px rgba(24,82,113,.07);
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 14px;
  margin-bottom: 18px;
}
.faq-list li {
  background: #F3F7FA;
  border-left: 5px solid #FCB900;
  padding: 14px 22px;
  border-radius: 10px;
}

/* MAP PLACEHOLDER */
.map-placeholder {
  display: flex;
  align-items: center;
  font-size: 1.08rem;
  color: #185271;
  background: #F3F7FA;
  border-radius: 11px;
  padding: 18px 11px;
}
.map-placeholder img {
  width: 30px;
  height: 30px;
  margin-right: 15px;
}

/* THANK YOU SECTION */
.thank-you-section {
  background: #fff;
  border-radius: 19px;
  box-shadow: 0 2px 12px rgba(24,82,113,.07);
  text-align: center;
}
.thank-you-section .btn-primary {
  margin: 20px auto 0 auto;
}

/* RESPONSIVE - MOBILE ADAPTATION */
@media (max-width: 900px) {
  .content-wrapper,
  .card-container,
  .features .feature-grid,
  .courses-preview .course-cards,
  .courses-list .course-preview-list,
  .accreditations .accreditation-logos {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .testimonial-card {
    max-width: 100%;
  }
  .badges {
    gap: 15px;
  }
  footer .container {
    padding: 28px 8px 18px 8px;
  }
}
@media (max-width: 768px) {
  .text-image-section,
  .content-grid {
    flex-direction: column;
    align-items: stretch !important;
    gap: 15px;
  }
  header .container {
    height: 56px;
    padding-top: 6px; padding-bottom: 6px;
  }
  .hero h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.42rem;
  }
}

@media (max-width: 520px) {
  h1, .hero h1 {
    font-size: 1.43rem;
  }
  .btn-primary, .btn-secondary {
    font-size: .95rem;
    min-width: unset;
    min-height: 38px;
    padding: 0 12px;
  }
}

/* ANIMATIONS & INTERACTIONS */
a, .btn-primary, .btn-secondary, .main-nav a, .footer-nav a {
  transition: color .21s, background .19s, box-shadow .23s, transform .15s;
}
ul.feature-grid > li, .courses-list .course-preview-list > li {
  transition: box-shadow .19s, transform .13s;
}
.testimonial-card {
  transition: box-shadow .15s;
}

/* FOCUS STATE */
a:focus, .btn-primary:focus, .btn-secondary:focus {
  outline: 2px dotted #FCB900;
  outline-offset: 3px;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #fff;
  color: #185271;
  box-shadow: 0 -2px 15px rgba(24,82,113,0.10);
  z-index: 300;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 22px 10vw 22px 10vw;
  font-size: 1rem;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  transition: transform .3s;
}
.cookie-banner.hide {
  transform: translateY(100vh);
}
.cookie-banner__content {
  max-width: 670px;
  margin-right: 24px;
}
.cookie-banner__actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
}
.cookie-banner button,
.cookie-banner .btn-primary,
.cookie-banner .btn-secondary {
  min-width: 112px;
  margin: 0;
}
.cookie-banner .btn-primary {
  background: #185271;
  color: #fff;
}
.cookie-banner .btn-primary:hover {
  background: #FCB900;
  color: #185271;
}
.cookie-banner .btn-secondary {
  background: #FCB900;
  color: #185271;
}
.cookie-banner .btn-secondary:hover {
  background: #185271;
  color: #fff;
}
@media (max-width: 900px) {
  .cookie-banner {
    padding: 16px 18px;
    flex-direction: column;
    gap: 14px;
  }
  .cookie-banner__actions {
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
  }
  .cookie-banner__content {
    margin-right: 0;  margin-bottom: 4px;
  }
}

/* COOKIE MODAL */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(24,82,113,.65);
  z-index: 350;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .22s;
}
.cookie-modal {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 44px rgba(24,82,113, .18);
  padding: 32px 38px 28px 38px;
  max-width: 410px;
  min-width: 240px;
  color: #185271;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
}
.cookie-modal-close {
  position: absolute;
  top: 16px; right: 19px;
  background: none;
  border: none;
  color: #185271;
  font-size: 1.6rem;
  cursor: pointer;
  padding: 2px 10px;
  border-radius: 6px;
  transition: background .12s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #F3F7FA;
}
.cookie-modal h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
  color: #185271;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  background: #F3F7FA;
  border-radius: 12px;
  padding: 13px 14px;
  margin-bottom: 11px;
}
.cookie-category strong {
  color: #185271;
  font-size: 1rem;
}
.cookie-toggle {
  appearance: none;
  width: 44px;
  height: 26px;
  background: #FCB900;
  border-radius: 15px;
  position: relative;
  outline: none;
  cursor: pointer;
  transition: background .13s;
}
.cookie-toggle:checked {
  background: #185271;
}
.cookie-toggle:disabled {
  background: #eee;
  cursor: not-allowed;
}
.cookie-toggle::before {
  content: '';
  position: absolute;
  left: 2px;
  top: 2px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  transition: transform .15s;
  box-shadow: 0 2px 5px rgba(0,0,0,.08);
}
.cookie-toggle:checked::before {
  transform: translateX(18px);
}
.cookie-category[aria-disabled="true"] {
  opacity: .59;
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
  justify-content: flex-end;
  margin-top: 10px;
}
.cookie-modal-actions .btn-primary {
  background: #185271;
  color: #fff;
}
.cookie-modal-actions .btn-secondary {
  background: #FCB900;
  color: #185271;
}

/* UTILITY */
.text-center {
  text-align: center;
}
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mx-auto { margin-left: auto; margin-right: auto; }
.gap-1 { gap: 8px; }
.gap-2 { gap: 16px; }

/* GEOMETRIC DECORATION (OPTIONAL) */
.card:after,
.section:before {
  content: '';
  display: none;
}

/* Hide elements visually only */
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0);
  border: 0 !important;
}

/* End of CSS */
