/* ========================================================
   DAZZLEPATH STYLE.CSS – GEOMETRIC STRUCTURED DESIGN
   Brand: DazzlePath
   Flexbox layout only – NO GRID!
   Font Import (Montserrat, Roboto): Required for style
   Responsive, geometric and structured, accessible
   ======================================================== */

/* ============================
   CSS Reset & Base Normalizer
   ============================ */
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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #F8FBFD;
  color: #202438;
  min-height: 100vh;
}
img, picture, video, canvas, svg {
  display: inline-block;
  max-width: 100%;
  height: auto;
}
a {
  color: #254A72;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover,
a:focus {
  color: #FFA94D;
  outline: none;
  text-decoration: underline;
}
ul, ol {
  list-style: none;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: 1rem;
  color: inherit;
  margin: 0;
}
button {
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

/* ================== 
   Font Loading
   ================== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Roboto:wght@400;500;700&display=swap');

body {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  background: #F8FBFD;
  color: #202438;
  line-height: 1.6;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 900;
  color: #254A72;
  text-transform: none;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.25rem; line-height: 1.13; margin-bottom: 20px; }
h2 { font-size: 1.5rem; line-height: 1.22; margin-bottom: 16px; }
h3 { font-size: 1.1rem; font-weight: 700; line-height: 1.3; margin-bottom: 12px; }

@media (min-width: 992px) {
  h1 { font-size: 3rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.25rem; }
}

p, li, th, td, label, form, input, textarea {
  font-size: 1rem;
}

strong, b {
  font-weight: bold;
  color: #254A72;
}

.subheadline {
  font-size: 1.13rem;
  color: #254A72;
  margin-bottom: 24px;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-weight: 500;
}

/* ========================
   Layout Structure
   ======================== */
.container {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 768px) {
  .section {
    margin-bottom: 36px;
    padding: 32px 10px;
  }
}

/* ========================
   Header / Navigation
   ======================== */
header {
  background: #fff;
  border-bottom: 3px solid #D9E6F2;
  box-shadow: 0 2px 10px 0 rgba(37, 74, 114, 0.05);
  position: relative;
  z-index: 1200;
}
.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 64px;
  padding-top: 10px;
  padding-bottom: 10px;
}

header img {
  height: 48px;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 6px 12px;
  border-radius: 6px;
  transition: background 0.18s, color 0.18s;
  color: #254A72;
}
.main-nav a:hover,
.main-nav a:focus {
  background: #D9E6F2;
  color: #FFA94D;
}

.cta.primary {
  background: #254A72;
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  padding: 12px 36px;
  border-radius: 10px;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  box-shadow: 0 2px 12px -2px rgba(37,74,114,0.10);
  transition: background 0.2s, box-shadow 0.3s, transform 0.2s;
  border: none;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  margin-left: 20px;
}
.cta.primary:hover,
.cta.primary:focus {
  background: #FFA94D;
  color: #254A72;
  box-shadow: 0 6px 20px -4px rgba(255,169,77,0.17);
  transform: translateY(-2px) scale(1.04);
}

.cta.secondary {
  background: #D9E6F2;
  color: #254A72;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  padding: 10px 28px;
  border-radius: 8px;
  font-size: 1rem;
  letter-spacing: 0.02em;
  box-shadow: 0 1px 7px 0 rgba(37,74,114,0.08);
  border: 2px solid #254A72;
  transition: background 0.2s, border 0.2s, color 0.2s, transform 0.2s;
  margin-top: 8px;
  display: inline-block;
  text-align: center;
}
.cta.secondary:hover,
.cta.secondary:focus {
  background: #254A72;
  color: #fff;
  border-color: #FFA94D;
  transform: translateY(-1px) scale(1.02);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  background: #FFA94D;
  color: #254A72;
  font-size: 2.1rem;
  padding: 6px 12px;
  border-radius: 7px;
  border: none;
  z-index: 1500;
  position: absolute;
  right: 22px;
  top: 16px;
  box-shadow: 0 2px 8px 0 rgba(255,169,77,0.14);
  transition: background 0.2s, color 0.2s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #254A72;
  color: #fff;
}

@media (max-width: 1100px) {
  .header-bar {
    padding-left: 10px;
    padding-right: 10px;
  }
  .main-nav {
    gap: 16px;
  }
}
@media (max-width: 900px) {
  .main-nav {
    gap: 10px;
  }
}
@media (max-width: 820px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .cta.primary {
    margin-left: 0;
  }
}

/* ========================
   Mobile Navigation Styles
   ======================== */
.mobile-menu {
  position: fixed;
  top: 0; left: 100vw;
  width: 100vw;
  height: 100vh;
  background: #fff;
  box-shadow: -4px 0 16px 0 rgba(37,74,114,0.18);
  z-index: 2999;
  display: flex;
  flex-direction: column;
  transition: transform 0.44s cubic-bezier(.77,0,.18,1);
  transform: translateX(0);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  left: 0;
  pointer-events: auto;
  opacity: 1;
  transform: translateX(-100vw);
  animation: mobileSlideIn 0.48s cubic-bezier(.77,0,.18,1);
}
@keyframes mobileSlideIn {
  from { left: 100vw; opacity: 0; }
  to   { left: 0; opacity: 1; }
}
.mobile-menu-close {
  align-self: flex-end;
  background: #D9E6F2;
  color: #254A72;
  font-size: 2rem;
  border-radius: 8px;
  margin: 14px 22px 0 0;
  padding: 8px 14px;
  box-shadow: 0 2px 7px 0 rgba(37,74,114,0.09);
  border: none;
  transition: background 0.18s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #FFA94D;
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 44px 0 0 36px;
  gap: 18px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #254A72;
  font-size: 1.1rem;
  padding: 10px 0;
  width: 90vw;
  border-radius: 6px;
  margin-bottom: 2px;
  transition: background 0.18s, color 0.2s;
  position: relative;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #D9E6F2;
  color: #FFA94D;
}

/* ========================
   HERO SECTIONS
   ======================== */
.hero {
  background: #D9E6F2;
  border-radius: 0 0 40px 40px;
  box-shadow: 0 4px 24px 0 rgba(37, 74, 114, 0.09);
  padding-top: 48px;
  padding-bottom: 48px;
  margin-bottom: 42px;
}
.hero h1 {
  max-width: 850px;
  margin-bottom: 8px;
}
.hero p {
  max-width: 560px;
  color: #254A72;
}

@media (max-width: 900px) {
  .hero {
    border-radius: 0px 0px 24px 24px;
    padding-top: 36px;
    padding-bottom: 32px;
    margin-bottom: 24px;
  }
}

/* =============================
   FEATURE SECTIONS & STRUCTURE
   ============================= */
.features {
  margin-bottom: 60px;
  padding: 40px 0;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 12px;
}
.feature-grid li {
  background: #fff;
  border-radius: 18px;
  flex: 1 1 220px;
  min-width: 180px;
  padding: 24px 18px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 2px 12px -2px rgba(37,74,114,0.06);
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-weight: 500;
  color: #254A72;
  position: relative;
  margin-bottom: 0;
  transition: box-shadow .22s;
  border: 2.5px solid #D9E6F2;
}
.feature-grid li img {
  width: 36px;
  height: 36px;
}
.feature-grid li:hover {
  box-shadow: 0 6px 24px -4px rgba(37,74,114,0.14);
  border-color: #FFA94D;
}

.category-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 18px 0 0 0;
}
.category-list li {
  background: #fff;
  padding: 20px 16px;
  min-width: 160px;
  border-radius: 14px;
  border: 2px solid #D9E6F2;
  box-shadow: 0 2px 10px rgba(37,74,114,0.06);
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.03rem;
  font-weight: 600;
  color: #254A72;
  transition: border 0.22s, box-shadow 0.22s;
}
.category-list li img {
  width: 28px;
  height: 28px;
}
.category-list li:hover {
  border-color: #FFA94D;
  box-shadow: 0 3px 12px rgba(255,169,77,0.14);
}

@media (max-width: 900px) {
  .features ul, .category-list {
    gap: 12px;
    flex-direction: column;
  }
}

/* =========================
   CARDS / APPLICATIONS
   ========================= */
.application-cards, .training-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 30px 0 0 0;
}
.app-card, .training-card {
  flex: 1 1 290px;
  min-width: 260px;
  max-width: 370px;
  background: #fff;
  border-radius: 16px;
  border: 2.5px solid #D9E6F2;
  padding: 32px 22px 24px 22px;
  position: relative;
  box-shadow: 0 1px 11px -2px rgba(37,74,114,0.07);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  margin-bottom: 20px;
  transition: border-color 0.22s, box-shadow 0.22s, transform 0.2s;
}
.app-card:hover,
.training-card:hover {
  border-color: #FFA94D;
  box-shadow: 0 5px 22px -2px rgba(255,169,77,0.11);
  transform: translateY(-3px) scale(1.025);
}
.app-card h3,
.training-card h3 {
  margin-bottom: 6px;
  color: #254A72;
}
.app-card .rating {
  position: absolute;
  top: 25px; right: 24px;
  color: #FFA94D;
  font-weight: bold;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.15rem;
}

@media (max-width: 900px) {
  .application-cards, .training-cards {
    flex-direction: column;
    gap: 16px;
  }
}

/* ========================
   SERVICE LIST (UL)
   ======================== */
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 26px;
}
.service-list li {
  flex: 1 1 290px;
  min-width: 240px;
  background: #fff;
  border-radius: 14px;
  border: 2px solid #D9E6F2;
  padding: 28px 20px 22px 22px;
  margin-bottom: 20px;
  box-shadow: 0 2px 14px -2px rgba(37,74,114,0.07);
  position: relative;
  display: flex; flex-direction: column;
  gap: 10px;
  transition: border 0.18s, box-shadow 0.18s, transform 0.21s;
}
.service-list li:hover {
  border-color: #254A72;
  box-shadow: 0 3px 18px 0 rgba(37,74,114,0.12);
  transform: translateY(-2px) scale(1.015);
}
.service-price {
  font-family: 'Montserrat';
  color: #FFA94D;
  font-weight: 700;
  font-size: 1.06rem;
  margin-top: 4px;
  letter-spacing: 0.01em;
}

/* =============================
   BENEFITS / ICON+TEXT UL LISTS
   ============================= */
.benefits ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 16px;
}
.benefits ul li {
  background: #fff;
  flex: 1 1 230px;
  min-width: 175px;
  border-radius: 12px;
  border: 2px solid #D9E6F2;
  box-shadow: 0 2px 10px rgba(37,74,114,0.05);
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 14px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  color: #254A72;
  margin-bottom: 0;
  font-size: 1rem;
  transition: border 0.16s, box-shadow 0.14s;
}
.benefits ul li img {
  width: 26px;
  height: 26px;
}
.benefits ul li:hover {
  border-color: #254A72;
  box-shadow: 0 3px 10px rgba(37,74,114,0.14);
}

@media (max-width: 768px) {
  .service-list,
  .benefits ul {
    flex-direction: column;
    gap: 14px;
  }
}

/* ========================
   STAT AND HIGHLIGHT BLOCKS
   ======================== */
.stat-highlight {
  background: #254A72;
  color: #fff;
  display: inline-flex;
  align-items: center;
  border-radius: 13px;
  padding: 14px 26px;
  font-size: 1.07rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  margin-right: 18px;
  margin-top: 8px;
  letter-spacing: 0.04em;
  box-shadow: 0 1px 9px -1px rgba(37,74,114,0.09);
}
.stat-highlight strong {
  color: #FFA94D;
  font-size: 1.12em;
  margin-right: 6px;
}

/* =========================
   TABLES
   ========================= */
.price-table {
  width: 100%;
  margin: 24px 0 0 0;
  border-collapse: collapse;
  font-size: 1rem;
}
.price-table th, .price-table td {
  border: 2px solid #D9E6F2;
  padding: 12px 16px;
  text-align: left;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
}
.price-table th {
  background: #254A72;
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
}
.price-table tr:nth-child(even) {
  background: #F5FAFF;
}
.price-table tr:hover {
  background: #D9E6F2;
}

/* =======================
   TESTIMONIALS/REVIEWS
   ======================= */
.testimonials {
  margin-bottom: 60px;
  padding: 40px 0;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 18px;
  margin-bottom: 20px;
  box-shadow: 0 4px 18px -4px rgba(37,74,114,0.09);
  border-left: 7px solid #254A72;
  border-top: 2.5px solid #FFA94D;
  border-right: 2px solid #D9E6F2;
  border-bottom: 2px solid #D9E6F2;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  color: #202438;
  max-width: 680px;
  transition: box-shadow 0.2s, border 0.2s;
}
.testimonial-card span {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #254A72;
  font-weight: 700;
  font-size: 1rem;
}
.testimonial-card p {
  flex: 1 1 0%;
  color: #202438;
  font-size: 1.08rem;
}
.testimonial-card:hover {
  box-shadow: 0 8px 26px -2px rgba(37,74,114,0.13);
  border-left: 7px solid #FFA94D;
}

@media (max-width:768px) {
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    max-width: 98vw;
    padding: 18px 11px;
    gap: 10px;
  }
}

.reviews h2, .testimonials h2 {
  font-size: 2rem;
  margin-bottom: 24px;
}

/* ===========================
   CTA BANNER/BUTTON SECTIONS
   =========================== */
.cta-banner {
  background: #254A72;
  color: #fff;
  border-radius: 30px;
  text-align: center;
  padding: 64px 24px 50px 24px;
  box-shadow: 0 6px 30px -8px rgba(37,74,114,0.11);
  margin-bottom: 60px;
}
.cta-banner h2 {
  color: #fff;
  font-size: 2rem;
  margin-bottom: 12px;
}
.cta-banner p {
  color: #D9E6F2;
  font-size: 1.1rem;
  max-width: 640px;
  margin: 0 auto 18px auto;
}

/* ===========================
   ABOUT, CONTACT, LEGAL, FAQ
   =========================== */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 14px;
}
.text-section ul {
  list-style: disc inside;
  margin-left: 18px;
  margin-top: 6px;
  margin-bottom: 6px;
}
.text-section ol {
  list-style: decimal inside;
  margin-left: 18px;
  margin-bottom: 4px;
}
.text-section li {
  margin-bottom: 4px;
  color: #254A72;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
}

.faq ul, .faq ol {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-left: 0;
  margin-top: 10px;
}
.faq ul li {
  border-left: 5px solid #254A72;
  background: #F8FBFD;
  border-radius: 10px;
  padding: 14px 18px;
  color: #202438;
  font-size: 1rem;
  margin-bottom: 6px;
}
.faq ul li strong {
  color: #254A72;
}

.map, .location-map {
  background: #D9E6F2;
  border-radius: 13px;
  padding: 24px 18px;
  margin-top: 12px;
  margin-bottom: 24px;
  color: #254A72;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-weight: 500;
}

.confirmation {
  margin-top: 54px;
  text-align: center;
}
.confirmation-message {
  font-size: 1.23rem;
  color: #254A72;
  margin: 24px auto 12px auto;
  max-width: 620px;
}
.next-steps ul {
  display: flex;
  flex-direction: column;
  gap: 9px;
  align-items: flex-start;
  max-width: 540px;
  margin: 8px auto 18px auto;
  font-size: 1.02rem;
  color: #254A72;
}

/* =========================
   FOOTER
   ========================= */
footer {
  background: #fff;
  border-top: 2.5px solid #D9E6F2;
  margin-top: 60px;
  padding: 32px 0 16px 0;
  box-shadow: 0 -4px 20px rgba(37,74,114,0.06);
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 14px;
}
.footer-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #254A72;
  font-size: 1.02rem;
  transition: color 0.16s;
}
.footer-nav a:hover {
  color: #FFA94D;
}
.footer-info {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.brand-contact {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  color: #254A72;
  font-size: 1rem;
  margin-bottom: 12px;
}
.brand-contact a {
  color: #FFA94D;
  text-decoration: underline;
}
.social-links {
  display: flex;
  align-items: center;
  gap: 12px;
}
.social-links a img {
  width: 28px;
  height: 28px;
  transition: opacity 0.22s;
}
.social-links a:hover img {
  opacity: 0.7;
}
.brand-slogan {
  color: #254A72;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.13rem;
  font-style: italic;
  text-align: right;
  width: 100%;
  margin-top: 7px;
}
@media (max-width:900px) {
  .footer-info {
    flex-direction: column;
    gap: 10px;
  }
  .brand-slogan {
    text-align: left;
    font-size: 1.02rem;
  }
}

/* =========================
   Forms & Inputs
   ========================= */
.search-bar, form {
  display: flex;
  align-items: center;
  gap: 14px;
}
.search-bar input[type='text'] {
  padding: 12px 16px;
  border: 2px solid #D9E6F2;
  border-radius: 9px;
  font-size: 1rem;
  color: #254A72;
  background: #fff;
  transition: border 0.17s;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
}
.search-bar input[type='text']:focus {
  border-color: #254A72;
  outline: 2px solid #FFA94D;
}
.search-bar button {
  background: #254A72;
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.03em;
  padding: 12px 24px;
  border-radius: 8px;
  border: none;
  box-shadow: 0 1.5px 5px rgba(37,74,114,0.12);
  transition: background 0.18s, color 0.16s, transform 0.12s;
}
.search-bar button:hover,
.search-bar button:focus {
  background: #FFA94D;
  color: #254A72;
  transform: translateY(-1.5px) scale(1.01);
}

/* =========================
   GEOMETRIC VISUAL ELEMENTS
   (Angular cues, geometric shapes)
   ========================= */
.section, .features, .hero, .app-card, .testimonial-card, .service-list li,
.category-list li, .training-card, .cta-banner, .benefits ul li, .stat-highlight {
  box-shadow: 0 2px 16px -2px rgba(37,74,114,0.06);
}

/* Add geometric decorations - triangles, diamonds (SVG BG for hero, subtle) */
.hero {
  position: relative;
  overflow: hidden;
}
.hero:after {
  content: '';
  position: absolute;
  top: -18%; right: -10%;
  width: 260px; height: 260px;
  background: #FFA94D;
  opacity: 0.08;
  clip-path: polygon(0 0, 100% 29%, 80% 100%, 13% 100%);
  z-index: 0;
}
.hero .content-wrapper {
  position: relative;
  z-index: 1;
}

/* =========================
   Spacing Utilities
   ========================= */
.mt-8 { margin-top: 8px !important; }
.mt-16 { margin-top: 16px !important; }
.mb-8 { margin-bottom: 8px !important; }
.mb-20 { margin-bottom: 20px !important; }
.mb-32 { margin-bottom: 32px !important; }
.gap-12 { gap: 12px !important; }

/* =========================
   Responsive Patterns
   ========================= */
@media (max-width: 1100px) {
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (max-width: 768px) {
  .content-wrapper {
    gap: 18px;
  }
  .features, .section, .cta-banner {
    padding: 32px 6vw;
    border-radius: 17px;
  }
  .app-card, .training-card {
    min-width: 94vw;
    padding-left: 14px; padding-right: 14px;
  }
  .service-list li, .category-list li {
    min-width: 90vw;
    padding-left: 10px; padding-right: 10px;
  }
}
@media (max-width:600px) {
  .container {
    padding-left: 3vw;
    padding-right: 3vw;
  }
  .footer-info, .content-wrapper {
    gap: 10px;
  }
}

/* =========================
   ANIMATIONS & TRANSITIONS
   ========================= */
.cta.primary,
.cta.secondary,
button, .app-card, .training-card, .feature-grid li, .category-list li, .service-list li, .testimonial-card {
  transition: background 0.18s, color 0.18s, border 0.17s, box-shadow 0.20s, transform 0.18s;
}

/* =========================
   COOKIE CONSENT BANNER & MODAL
   ========================= */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #fff;
  color: #254A72;
  box-shadow: 0 -4px 24px rgba(37,74,114,0.17);
  border-top: 4px solid #FFA94D;
  z-index: 4500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 32px;
  gap: 16px;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  min-height: 80px;
  animation: cookieBannerUp 0.48s cubic-bezier(.77,0,.18,1);
}
@keyframes cookieBannerUp {
  from { transform: translateY(120%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  flex: 1 1 0%;
  margin-right: 22px;
  max-width: 680px;
}
.cookie-banner .cookie-btns {
  display: flex;
  gap: 16px;
}
.cookie-consent-btn, .cookie-settings-btn {
  padding: 11px 25px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  background: #254A72;
  color: #fff;
  border: none;
  border-radius: 8px;
  margin: 0 3px;
  transition: background 0.17s, color 0.16s, box-shadow 0.19s;
  box-shadow: 0 2px 8px rgba(37,74,114,0.11);
}
.cookie-settings-btn {
  background: #FFA94D;
  color: #254A72;
}
.cookie-consent-btn.cookie-reject {
  background: #fff;
  color: #254A72;
  border: 2px solid #254A72;
}
.cookie-consent-btn:hover,
.cookie-settings-btn:hover,
.cookie-consent-btn:focus,
.cookie-settings-btn:focus {
  background: #fff;
  color: #254A72;
  border: 2px solid #FFA94D;
}

/* Cookie Modal Styles */
.cookie-modal {
  position: fixed;
  z-index: 4600;
  left: 0; top: 0; width: 100vw; height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(37,74,114, 0.24);
  animation: fadeIn 0.24s cubic-bezier(.77,0,.18,1);
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.cookie-modal-dialog {
  background: #fff;
  color: #254A72;
  border-radius: 14px;
  box-shadow: 0 12px 42px -8px rgba(37,74,114,0.19);
  padding: 38px 30px 34px 36px;
  max-width: 430px;
  width: 94vw;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1rem;
}
.cookie-modal-dialog h3 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.25rem;
  margin-bottom: 8px;
}
.cookie-modal-dialog ul {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.category-toggle {
  appearance: none;
  width: 44px;
  height: 24px;
  outline: none;
  background: #D9E6F2;
  border-radius: 50px;
  position: relative;
  transition: background 0.22s;
  cursor: pointer;
  margin-right: 14px;
}
.category-toggle:checked {
  background: #FFA94D;
}
.category-toggle:before {
  content: '';
  position: absolute;
  left: 4px; top: 4px;
  width: 16px; height: 16px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.22s;
}
.category-toggle:checked:before {
  transform: translateX(20px);
}
.cookie-category-row {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.04rem;
}
.cookie-modal-close {
  position: absolute;
  right: 15px; top: 15px;
  font-size: 1.7rem;
  background: #D9E6F2;
  color: #254A72;
  border-radius: 50%;
  border: none;
  width: 34px; height: 34px;
  transition: background 0.17s, color 0.14s;
}
.cookie-modal-close:hover {
  background: #FFA94D;
  color: #fff;
}
.cookie-modal-btns {
  display: flex;
  gap: 12px;
  margin-top: 11px;
}

/* Essential cookies (always on) */
.cookie-category-row.essential label {
  color: #D2AB78;
  background: #F8C55F;
  font-size: 0.97rem;
  font-weight: 600;
  padding: 3px 12px;
  border-radius: 7px;
}

/* Hide modal/banner on close */
.cookie-banner.hide, .cookie-modal.hide {
  display: none !important;
}

/* =========================
   GEOMETRIC STRUCTURE / FLEXBOX
   ========================= */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.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-grid, .text-image-section, .card-container {
    flex-direction: column;
    gap: 17px;
  }
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

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

/* ========================================================
   THE END. NO CSS GRID. ALL FLEXBOX. ACCESSIBLE CONTRAST.
   ======================================================== */
