/* --- CSS RESET AND BASES --- */
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;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
  background: #181C2B;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  color: #FDF6F0;
  background: linear-gradient(135deg, #1C2237 0%, #181C2B 100%);
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #7de0fd;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #17fff3;
  outline: none;
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #FDF6F0;
  letter-spacing: 0.01em;
  margin-bottom: 16px;
}
h1 {
  font-size: 2.75rem;
  font-weight: 700;
  line-height: 1.15;
}
h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 8px;
}
h4 {
  font-size: 1.1rem;
  font-weight: 500;
}
p, ul, ol, li {
  font-size: 1rem;
  color: #e1ebf9;
  margin-bottom: 12px;
}
strong {
  color: #7de0fd;
  font-weight: 600;
}
em {
  font-style: italic;
  color: #DE73FD;
}

/* --- BASE CONTAINERS --- */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.text-section {
  padding: 0;
}

/* --- LAYOUT SPACING --- */
section {
  width: 100%;
  background: transparent;
  margin-bottom: 60px;
  padding: 40px 0 40px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  width: 100%;
}
.card {
  background: #232B46;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(49,153,239, 0.15);
  padding: 28px 24px;
  margin-bottom: 20px;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
  border: 1.5px solid #303964;
}
.card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 8px 32px rgba(49,189,255, 0.23);
  border-color: #6197D6;
}
.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: center;
  gap: 20px;
  background: #fdf6f0;
  color: #232B46;
  padding: 24px 28px;
  border-radius: 16px;
  margin-bottom: 20px;
  box-shadow: 0 2px 18px 0 rgba(97,151,214,0.09);
  min-width: 260px;
  max-width: 350px;
  transition: box-shadow 0.16s, transform 0.16s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 38px 0 rgba(78,252,255,0.19);
  transform: scale(1.01);
}
.testimonial-card p {
  color: #232B46;
  font-size: 1rem;
  margin-bottom: 10px;
}
.testimonial-card strong {
  color: #6197D6;
  font-size: 1rem;
  font-weight: 700;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* --- FLEXBOX FOR KEY GRIDS AND LISTS --- */
.feature-grid,
.business-benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  list-style: none;
  margin: 32px 0 0 0;
  padding: 0;
}
.feature-grid li, .business-benefits-grid li {
  background: #232B46;
  border-radius: 14px;
  box-shadow: 0 2px 18px 0 rgba(97,151,214,0.07);
  padding: 30px 20px 24px 20px;
  min-width: 225px;
  flex: 1 0 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  border-left: 3px solid #7de0fd;
  margin-bottom: 20px;
  transition: box-shadow 0.15s, border-color 0.15s;
}
.feature-grid li:hover, .business-benefits-grid li:hover {
  box-shadow: 0 6px 38px 0 rgba(41,247,242,0.09);
  border-left: 3.5px solid #DE73FD;
}
.feature-grid img {
  width: 34px;
  height: 34px;
  filter: drop-shadow(0 0 6px #7de0fd90);
}

.services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 40px 0 30px 0;
}
.service-card {
  background: #232B46;
  border-radius: 15px;
  box-shadow: 0 1px 10px rgba(97,151,214,0.07);
  padding: 28px 22px;
  flex: 1 1 285px;
  min-width: 233px;
  max-width: 350px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  border: 1.5px solid #294E70;
  transition: box-shadow 0.18s, border-color 0.19s, transform 0.19s;
}
.service-card h3 {
  font-weight: 600;
  font-size: 1.2rem;
  color: #DE73FD;
  margin-bottom: 8px;
}
.service-card .price {
  margin-top: 16px;
  font-weight: 700;
  color: #7de0fd;
  font-size: 1.1rem;
}
.service-card:hover {
  box-shadow: 0 8px 32px rgba(49,189,255, 0.22);
  border-color: #7de0fd;
  transform: translateY(-7px) scale(1.02);
}

/* --- CTA BUTTONS --- */
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #6197D6;
  color: #181C2B;
  border: none;
  border-radius: 30px;
  padding: 12px 32px;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.03em;
  box-shadow: 0 2px 12px rgba(135,238,255, 0.23);
  margin-top: 18px;
  margin-bottom: 6px;
  cursor: pointer;
  transition: background 0.22s, box-shadow 0.17s, color 0.17s, transform 0.16s;
  outline: none;
}
.cta-btn:hover, .cta-btn:focus {
  background: #7de0fd;
  color: #232B46;
  box-shadow: 0 6px 26px rgba(41,247,242,0.17);
  transform: scale(1.05);
}

/* --- HEADER / NAVIGATION --- */
header {
  width: 100%;
  background: #181C2B;
  box-shadow: 0 5px 24px rgba(25, 34, 62, 0.09);
  z-index: 20;
  top: 0;
  left: 0;
  position: relative;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  padding: 12px 0 12px 0;
  gap: 24px;
  width: 100%;
}
.main-nav a {
  font-size: 1rem;
  color: #FDF6F0;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  position: relative;
  transition: color 0.19s;
  padding: 6px 0;
  margin-right: 8px;
}
.main-nav a:not(.cta-btn):after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #7de0fd 0%, #DE73FD 100%);
  border-radius: 2px;
  transition: width 0.2s;
}
.main-nav a:not(.cta-btn):hover:after {
  width: 85%;
}
.main-nav .cta-btn {
  margin-left: auto;
  margin-right: 0;
}
.main-nav img {
  width: 146px;
  height: 37px;
  margin-right: 30px;
}

/* --- MOBILE NAV --- */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.2rem;
  color: #7de0fd;
  cursor: pointer;
  z-index: 52;
  padding: 2px 8px;
  margin-left: auto;
  margin-top: 6px;
  margin-bottom: 6px;
  transition: color 0.16s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  color: #DE73FD;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(28,34,55,0.97);
  z-index: 100;
  transform: translateX(-100%);
  transition: transform 0.33s cubic-bezier(0.67, 0.01, 0.29, 0.99);
  box-shadow: 0 10px 38px 0 rgba(0,0,0,0.20);
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #7de0fd;
  font-size: 2.1rem;
  padding: 12px 22px 12px 14px;
  align-self: flex-end;
  cursor: pointer;
  margin-top: 10px;
}
.mobile-menu-close:hover {
  color: #DE73FD;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 30px;
  width: 100vw;
  align-items: flex-start;
  padding-left: 30px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #FDF6F0;
  font-size: 1.13rem;
  font-weight: 600;
  padding: 12px 0;
  display: flex;
  transition: color 0.17s;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  color: #7de0fd;
}

@media (max-width: 1023px) {
  .main-nav .cta-btn {
    margin-left: 0;
    margin-right: 0;
  }
  .main-nav img {
    margin-right: 12px;
  }
}
@media (max-width: 900px) {
  .main-nav {
    gap: 12px;
  }
}
@media (max-width: 850px) {
  .main-nav {
    gap: 9px;
  }
  .main-nav a:not(.cta-btn) {
    padding-left: 5px;
    padding-right: 5px;
  }
}
@media (max-width: 820px) {
  .container, .section {
    padding-left: 10px;
    padding-right: 10px;
  }
  .services-list { gap: 16px; }
  .feature-grid, .business-benefits-grid { gap: 12px; }
  .service-card { min-width: 150px; }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .container {
    max-width: 96vw;
    padding-left: 6vw;
    padding-right: 6vw;
  }
  .section, section, .text-section {
    padding-left: 4vw !important;
    padding-right: 4vw !important;
  }
  .services-list, .feature-grid, .business-benefits-grid {
    flex-direction: column;
    gap: 0.8rem;
  }
  .testimonial-slider {
    flex-direction: column;
    align-items: stretch !important;
    gap: 14px;
  }
  .content-grid {
    flex-direction: column;
    gap: 12px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 22px;
    text-align: left;
  }
  .service-card, .card, .feature-grid li {
    min-width: unset;
    max-width: 98vw;
    width: 100%;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.32rem; }
  h3 { font-size: 1.08rem; }
  .cta-btn { font-size: 1.01rem; padding: 10px 5vw; }
  .service-card { padding: 18px 8px; }
  .testimonial-card { padding: 14px 5vw; }
}

/* --- TESTIMONIAL SLIDER FLEX --- */
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-top: 34px;
}

/* --- FILTERS & BLOG --- */
.course-filters {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 23px 0 16px 0;
}
.course-filters ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.course-filters li {
  background: #232B46;
  border-radius: 24px;
  padding: 7px 21px;
  color: #7de0fd;
  font-size: 1rem;
  font-weight: 500;
  border: 1px solid #294E70;
  transition: background 0.17s, color 0.16s, border-color 0.16s;
  cursor: pointer;
}
.course-filters li:hover, .course-filters li.active {
  background: #7de0fd;
  color: #232B46;
  border-color: #DE73FD;
}

.blog-article-list {
  margin-top: 12px;
  margin-bottom: 32px;
  padding-left: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.featured-post {
  background: #6197D6;
  color: #232B46;
  border-radius: 14px;
  padding: 18px 26px;
  margin-top: 16px;
  box-shadow: 0 2px 14px rgba(97,151,214,0.12);
}
.featured-post h3 {
  color: #1C2237;
}
.featured-post p {
  color: #232B46;
}

/* --- COMMON LISTS --- */
ul, ol {
  margin-left: 21px;
}
ul li, ol li {
  margin-bottom: 9px;
}
.text-section ul {
  margin-left: 14px;
}

/* --- MAP + CONTACT --- */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style: none;
  padding-left: 0;
  font-size: 1.02rem;
}
.location-map {
  margin-top: 15px;
  font-size: 0.98rem;
  color: #7de0fd;
}

/* --- FOOTER --- */
footer {
  width: 100%;
  background: #181C2B;
  border-top: 1.5px solid #232B46;
  padding: 34px 0 11px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer-nav {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 10px;
}
.footer-nav a {
  color: #7de0fd;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 2px;
  padding: 0 5px;
}
.footer-nav a:hover {
  color: #DE73FD;
  text-decoration: underline;
}
.footer-meta {
  color: #869fc9;
  font-size: 0.96rem;
}

/* --- COOKIE CONSENT BANNER --- */
#cookie-banner, .cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 199;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  background: #232B46;
  color: #fdf6f0;
  padding: 20px 28px;
  min-height: 60px;
  box-shadow: 0 -2px 12px rgba(49,153,239, 0.10);
  transition: transform 0.28s cubic-bezier(0.67, 0.01, 0.29, 0.99);
  font-size: 1rem;
}
.cookie-banner.hide {
  transform: translateY(120%);
  visibility: hidden;
  pointer-events: none;
}
.cookie-banner-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
}
.cookie-banner-actions {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
}
.cookie-btn, .cookie-settings-btn {
  background: #6197D6;
  color: #232B46;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border: none;
  border-radius: 24px;
  padding: 9px 26px;
  cursor: pointer;
  margin-left: 0;
  margin-right: 0;
  transition: background 0.15s, color 0.15s, box-shadow 0.14s;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #7de0fd;
  color: #232B46;
  outline: none;
  box-shadow: 0 3px 10px rgba(126,224,253,0.10);
}
.cookie-settings-btn {
  background: transparent;
  color: #7de0fd;
  border: 1.5px solid #7de0fd;
  padding: 9px 22px;
}
.cookie-settings-btn:hover, .cookie-settings-btn:focus {
  background: #7de0fd;
  color: #232B46;
  outline: none;
}

/* --- COOKIE MODAL --- */
.cookie-modal {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(28,34,55,0.91);
  z-index: 250;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.22s;
}
.cookie-modal.active {
  visibility: visible;
  opacity: 1;
}
.cookie-modal-content {
  background: #232B46;
  color: #fdf6f0;
  border-radius: 18px;
  padding: 36px 30px 34px 30px;
  max-width: 94vw;
  width: 420px;
  box-shadow: 0 18px 54px 0 rgba(97,151,214,0.28);
  display: flex;
  flex-direction: column;
  gap: 26px;
  position: relative;
}
.cookie-modal-content h2 {
  color: #7de0fd;
}
.cookie-modal-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.cookie-modal-content li {
  margin-bottom: 15px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
  font-size: 1.04rem;
}
.cookie-category-toggle {
  width: 40px;
  height: 22px;
  background: #181C2B;
  border: 1.5px solid #6197D6;
  border-radius: 24px;
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin-right: 5px;
  cursor: pointer;
  flex-shrink: 0;
}
.cookie-category-toggle[aria-checked="true"] {
  background: #7de0fd;
  border-color: #7de0fd;
}
.cookie-category-toggle-inner {
  display: block;
  width: 18px; height: 18px;
  background: #fdf6f0;
  border-radius: 50%;
  position: absolute;
  left: 2px;
  top: 1.5px;
  transition: left 0.18s;
}
.cookie-category-toggle[aria-checked="true"] .cookie-category-toggle-inner {
  left: 20px;
  background: #232B46;
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  gap: 18px;
}
.cookie-modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  color: #7de0fd;
  font-size: 1.35rem;
  cursor: pointer;
  z-index: 3;
  padding: 2px 6px;
  transition: color 0.17s;
}
.cookie-modal-close:hover,
.cookie-modal-close:focus {
  color: #DE73FD;
}

@media (max-width: 520px) {
  .cookie-modal-content { padding: 22px 10px 19px 10px; width: 95vw; }
  .cookie-banner { flex-direction: column; gap: 15px; text-align: left; }
}

/* --- ANIMATIONS / MICRO-INTERACTIONS --- */
.cta-btn,
.service-card, .feature-grid li, .card, .testimonial-card, .main-nav a,
.cookie-btn, .cookie-settings-btn, .course-filters li,
.cookie-modal-content, .mobile-menu, .mobile-nav a {
  transition: box-shadow 0.16s, background 0.18s, color 0.16s, border-color 0.16s, transform 0.18s, filter 0.16s;
}

/* --- SCROLLBAR STYLING (modern browsers) --- */
body::-webkit-scrollbar {
  width: 10px;
  background: #232B46;
}
body::-webkit-scrollbar-thumb {
  background: #6197D6;
  border-radius: 6px;
}

/* --- GENERAL UTILITIES --- */
.mt-4 { margin-top: 32px; }
.mb-4 { margin-bottom: 32px; }
.flex { display: flex; }
.flex-row { flex-direction: row; }
.flex-col { flex-direction: column; }
.center { align-items: center; justify-content: center; }
.gap-2 { gap: 16px; }
.gap-1 { gap: 8px; }

/* --- COLOR UTILS (for decorators if needed) --- */
.neon {
  color: #7de0fd;
  text-shadow: 0 0 5px #7de0fd, 0 0 15px #1be2fc66;
}

/* --- PREVENT OVERLAPS --- */
section, .service-card, .testimonial-card, .feature-grid li, .card {
  margin-bottom: 20px;
}

/* --- Z-INDEX --- */
header,
footer,
.mobile-menu,
.cookie-banner,
.cookie-modal {
  z-index: 100;
}

/* --- FOCUS STATES FOR INTERACTIVE ELEMENTS --- */
a:focus,
.button:focus,
.cta-btn:focus,
.cookie-btn:focus,
.cookie-settings-btn:focus,
.main-nav a:focus,
.mobile-nav a:focus {
  outline: 2px solid #DE73FD;
  outline-offset: 2px;
  background: rgba(97,151,214,0.12);
}

/* --- CLASSES FROM HTML CODE (additional) --- */
.location-map em {
  color: #7de0fd;
  font-style: italic;
}

/* --- END OF CSS --- */
