/* 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 {
  height: 100%;
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  background: #121a23;
  color: #f0edee;
  line-height: 1.6;
  font-size: 16px;
  letter-spacing: 0.015em;
  background-color: #18263a;
}
img {
  max-width: 100%;
}
a {
  color: #90b256;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover,
a:focus {
  color: #e6f57c;
  text-shadow: 0 0 8px #90b25666;
}

/* FONT FAMILIES - Tech Futuristic */
h1, h2, h3, h4, h5, h6, .cta-primary, .main-nav a, .mobile-nav a {
  font-family: 'Montserrat', 'Open Sans', Arial, Helvetica, sans-serif;
  letter-spacing: 0.03em;
  font-weight: 700;
}
h1 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  color: #e9f7ff;
  text-shadow: 0 0 16px #00b4fc33;
}
h2 {
  font-size: 1.8rem;
  margin-bottom: 16px;
  color: #7fe6fd;
  text-shadow: 0 0 8px #2ae6ff22;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: #b9f5e2;
}

/* Layout Containers */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 16px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Spacing and Alignment Patterns (MANDATORY) */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.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;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #f0edee;
  color: #21262d;
  border-radius: 18px;
  box-shadow: 0 4px 28px #141e3811;
  min-width: 260px;
  margin-right: 20px;
  margin-bottom: 20px;
  flex: 1 1 320px;
  position: relative;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* HEADER & NAVIGATION */
header {
  background: #162442;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0 0 24px;
  min-height: 72px;
  box-shadow: 0 3px 16px #0dbfff11;
  z-index: 12;
}
.logo img {
  height: 46px;
  vertical-align: middle;
  filter: drop-shadow(0 0 6px #00e0f933);
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}
.main-nav a {
  color: #f0edee;
  font-size: 1rem;
  font-weight: 600;
  padding: 10px 8px;
  border-radius: 7px;
  position: relative;
  transition: background 0.18s, color 0.18s, box-shadow 0.25s;
}
.main-nav a:hover,
.main-nav a:focus {
  background: #202946;
  color: #7fe6fd;
  box-shadow: 0 0 8px #68f6fa44;
}
.main-nav .cta-primary {
  color: #161e30;
  background: #7fe6fd;
  border-radius: 8px;
  margin-left: 16px;
  font-weight: 800;
  padding: 10px 24px;
  box-shadow: 0 4px 22px #7fe6fd29, 0 0 4px #00d6ff70;
  transition: background 0.17s, color 0.17s, box-shadow 0.28s;
  text-shadow: 0 2px 9px #fff6, 0 0 1px #00d6ff50;
}
.main-nav .cta-primary:hover,
.main-nav .cta-primary:focus {
  background: #90b256;
  color: #f0edee;
  box-shadow: 0 0 18px #98ed7a70, 0 0 4px #bafec199;
}

/* Mobile Burger Menu */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #7fe6fd;
  font-size: 2.1rem;
  line-height: 1;
  cursor: pointer;
  z-index: 30;
  margin-right: 12px;
  transition: color 0.19s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  color: #bafec1;
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background: #121a23ee;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  transform: translateX(100%);
  transition: transform 0.42s cubic-bezier(0.86, 0, 0.07, 1);
  z-index: 500;
  pointer-events: none;
}
.mobile-menu.active {
  transform: translateX(0);
  pointer-events: all;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #e9f7ff;
  font-size: 2.2rem;
  margin: 16px 24px 8px 0;
  cursor: pointer;
  transition: color 0.17s;
  z-index: 999;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #bafec1;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 36px 40px 0 0;
  width: 100%;
  align-items: flex-end;
}
.mobile-nav a {
  font-size: 1.25rem;
  color: #bafec1;
  letter-spacing: 0.015em;
  padding: 10px 18px;
  border-radius: 8px 0 0 8px;
  background: none;
  transition: color 0.18s, background 0.13s;
  margin: 0 0 0 20px;
  min-width: 180px;
  text-align: right;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #224876;
  color: #7fe6fd;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #162442 70%, #7fe6fd29 100%);
  padding: 48px 0 52px 0;
  border-bottom: 1px solid #22314d;
  box-shadow: 0 2px 40px #0dbfff11;
}
.hero h1 {
  font-size: 2.5rem;
  color: #e9f7ff;
  margin-bottom: 14px;
  text-shadow: 0 0 16px #00b4fc33;
}
.hero p {
  font-size: 1.2rem;
  color: #92eaff;
  margin-bottom: 20px;
}
.hero .cta-primary {
  margin-top: 14px;
}

/* FEATURE GRID / CARDS */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  justify-content: flex-start;
  margin: 26px 0 0 0;
}
.feature-card {
  flex: 1 1 300px;
  min-width: 250px;
  background: #222e43;
  border-radius: 19px;
  box-shadow: 0 3px 26px #09deff14;
  padding: 32px 20px 24px 20px;
  color: #f0edee;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  transition: box-shadow 0.22s, transform 0.14s;
  position: relative;
  border: 1.5px solid #294967;
}
.feature-card:hover,
.feature-card:focus-within {
  box-shadow: 0 6px 38px #49e6f1cc, 0 2px 10px #00ffc742;
  transform: translateY(-4px) scale(1.022);
  border-color: #7fe6fd;
}
.feature-card img {
  height: 54px;
  margin-bottom: 11px;
  filter: drop-shadow(0 0 10px #69fafe90);
}
.feature-card h3 {
  margin-bottom: 7px;
  color: #aefffe;
  font-size: 1.18rem;
  text-shadow: 0 0 4px #0da4e1;width:100%;
}
.feature-card ul,
.feature-card p {
  color: #c2e3ff;
  font-size: 1rem;
  margin-bottom: 0;
}
.feature-card ul {
  margin-left: 18px;
  margin-bottom: 0;
  padding-left: 0;
  list-style: disc outside;
}

/* Text Section, About, Resources, Contact */
.text-section {
  background: #162442;
  border-radius: 14px;
  padding: 36px 24px;
  margin-bottom: 28px;
  box-shadow: 0 4px 28px #0e8ba311;
}
.text-section h1, .text-section h2, .text-section h3 {
  color: #7fe6fd;
}
.text-section ul {
  margin-left: 20px;
  margin-bottom: 12px;
  color: #ddf3ff;
  font-size: 1rem;
}
.text-section li {
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 11px;
}
.text-section img {
  height: 24px;
  vertical-align: middle;
}

/* CTA BUTTONS */
.cta-primary {
  display: inline-block;
  background: #7fe6fd;
  color: #162442;
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 0.04em;
  border-radius: 8px;
  padding: 13px 38px;
  font-size: 1.13rem;
  font-weight: 800;
  box-shadow: 0 5px 20px #80f6ff61, 0 1px 3px #53dfeba9;
  border: none;
  margin: 0 0 0 0;
  cursor: pointer;
  text-shadow: 0 2px 9px #ffe, 0 0 1px #00d6ff88;
  transition: background 0.23s, color 0.19s, box-shadow 0.23s, letter-spacing 0.16s;
}
.cta-primary:hover,
.cta-primary:focus {
  background: #90b256;
  color: #f0edee;
  box-shadow: 0 0 22px #7fe6fd70, 0 1px 5px #bafec170;
  letter-spacing: 0.08em;
}

/* TESTIMONIAL SLIDER */
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 24px;
}
.testimonial-card {
  background: #f0edee;
  color: #222e43;
  padding: 28px 22px 22px 22px;
  min-width: 250px;
  border-radius: 17px;
  box-shadow: 0 8px 32px #29496718, 0 0 4px #0dbfff16;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-right: 14px;
  margin-bottom: 20px;
  position: relative;
  flex: 1 1 270px;
  z-index: 1;
}
.testimonial-card p {
  font-size: 1.1rem;
  color: #233046;
  margin-bottom: 14px;
  font-weight: 600;
}
.testimonial-author {
  margin-top: 6px;
  color: #2c4475;
  font-size: 0.99rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.star-rating img {
  width: 23px;
  filter: drop-shadow(0 0 2px #90b256cc);
  margin-right: 2.5px;
}

/* CTA Banner (Homepage & Others) */
.cta-banner {
  background: #222e43;
  border-radius: 13px;
  box-shadow: 0 1px 34px #7fe6fd33, 0 1px 6px #90b25624;
  padding: 38px 24px;
  margin: 22px 0 0 0;
  align-items: center!important;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
  text-align: center;
}
.cta-banner h2 {
  color: #e9f7ff;
}

/* Utility Classes */
ul {
  list-style-type: disc;
  margin-left: 22px;
  margin-bottom: 12px;
}
li {
  margin-bottom: 8px;
}

/* Blog & Search Bar */
.search-bar {
  margin: 14px 0 20px 0;
  display: flex;
  align-items: center;
}
.search-bar input[type='search'] {
  width: 220px;
  padding: 9px 16px;
  border: 1.5px solid #7fe6fd;
  border-radius: 8px;
  font-size: 1.03rem;
  background: #192a44;
  color: #e9f7ff;
  margin-right: 10px;
  transition: border 0.16s, background 0.15s;
}
.search-bar input[type='search']:focus {
  border: 1.5px solid #90b256;
  background: #1d354c;
}
.featured-post-highlight {
  background: #222e43;
  border-radius: 14px;
  padding: 18px 20px;
  margin: 12px 0 0 0;
  box-shadow: 0 2px 10px #7fe6fd16;
  color: #e9f7ff;
}
.featured-post-highlight h3 {
  margin-bottom: 7px;
  color: #bafec1;
}
.featured-post-highlight p {
  margin-bottom: 6px;
}

.category-filter {
  margin-top: 26px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.category-filter select {
  background: #162442;
  border: 1.3px solid #7fe6fd;
  color: #e9f7ff;
  border-radius: 5px;
  padding: 9px 16px;
  font-size: 1rem;
  transition: border 0.13s;
}
.category-filter select:focus {
  border: 1.3px solid #90b256;
  outline: none;
}

/* Contact Info */
.contact-info-summary {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 18px;
}
.contact-info-summary ul {
  margin: 0 0 0 0;
  padding: 0;
  list-style: none;
}
.contact-info-summary li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  color: #c2e3ff;
}
.contact-info-summary img {
  height: 22px;
}
.map-placeholder {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: 10px;
}
.map-placeholder img {
  height: 32px;
}

/* FAQ Styles */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 24px;
}
.faq-item {
  background: #222e43;
  border-radius: 11px;
  padding: 20px 24px;
  box-shadow: 0 1px 10px #7fe6fd0c;
  color: #e9f7ff;
  transition: box-shadow 0.17s;
}
.faq-item h3 {
  margin-bottom: 5px;
  color: #90b256;
}
.faq-item p {
  color: #d0e6ed;
}

/* Progress Visual */
.progress-visual {
  margin-top: 32px;
  display: flex;
  justify-content: center;
}
.progress-visual img {
  max-height: 66px;
}

/* Footer Styles */
footer {
  background: #171b29;
  color: #a6badc;
  padding: 34px 0 0 0;
  border-top: 2px solid #213366;
  margin-top: 50px;
  box-shadow: 0 -2px 40px #3751b616;
  font-size: 1rem;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  justify-content: center;
  align-items: center;
  margin-bottom: 14px;
}
.footer-nav a {
  color: #7fe6fd;
  font-weight: 600;
  letter-spacing: 0.02em;
  font-size: 1rem;
  transition: color 0.17s;
}
.footer-nav a:hover { color: #90b256; }
.footer-contact {
  text-align: center;
  color: #c2e3ff;
  font-size: 1rem;
  margin: 14px 0 0 0;
  padding-bottom: 22px;
}

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #1c2d44;
  color: #f0edee;
  padding: 20px 18px 20px 18px;
  z-index: 1300;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 -4px 50px #4091d237;
  gap: 14px;
  animation: fadeInUp 0.8s;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(60px); }
  to   { opacity: 1; transform: translateY(0); }
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 18px;
  margin-top: 6px;
  flex-wrap: wrap;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: none;
  border-radius: 6px;
  padding: 10px 21px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.14s, color 0.13s, box-shadow 0.18s;
  margin: 0 6px 0 0;
  margin-bottom: 6px;
}
.cookie-banner .accept {
  background: #90b256;
  color: #161e30;
  box-shadow: 0 2px 12px #bbfede44;
}
.cookie-banner .accept:hover,
.cookie-banner .accept:focus { background: #7fe6fd; color: #162442; }
.cookie-banner .reject {
  background: #e83b68;
  color: #fff;
  box-shadow: 0 2px 12px #f77b9b33;
}
.cookie-banner .reject:hover,
.cookie-banner .reject:focus { background: #ab083a; }
.cookie-banner .settings {
  background: #2e3147;
  color: #7fe6fd;
  box-shadow: 0 2px 12px #00fff428;
  border: 1px solid #7fe6fd;
}
.cookie-banner .settings:hover,
.cookie-banner .settings:focus { background: #222e43; color: #90b256; }

/* Cookie Modal */
.cookie-modal-backdrop {
  position: fixed;
  z-index: 1400;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: #18263aee;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: backdropIn 0.2s;
}
@keyframes backdropIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #232e43;
  border-radius: 15px;
  box-shadow: 0 8px 42px #00e0f933, 0 1px 7px #7fe6fd55;
  color: #e9f7ff;
  width: 96vw;
  max-width: 420px;
  padding: 32px 30px 24px 30px;
  animation: popupIn 0.32s cubic-bezier(0.23,1,0.32,1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
}
@keyframes popupIn {
  0% { opacity: 0; transform: scale(0.92) translateY(30px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}
.cookie-modal h3 {
  color: #7fe6fd;
  margin-bottom: 8px;
}
.cookie-modal .cookie-cat-list {
  margin: 22px 0 16px 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 17px;
}
.cookie-modal .cookie-cat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  font-size: 1rem;
  color: #a6badc;
}
.cookie-modal .cookie-cat .toggle {
  appearance: none;
  width: 36px;
  height: 20px;
  background: #35506b;
  border-radius: 10px;
  border: 1.5px solid #7fe6fd;
  position: relative;
  outline: none;
  cursor: pointer;
  transition: background 0.17s, border 0.18s;
}
.cookie-modal .cookie-cat .toggle:checked {
  background: #90b256;
  border: 1.5px solid #bafec1;
}
.cookie-modal .cookie-cat .toggle:before {
  content: '';
  position: absolute;
  display: block;
  left: 4px;
  top: 2.6px;
  width: 14px;
  height: 14px;
  background: #e9f7ff;
  border-radius: 50%;
  transition: left 0.19s, background 0.13s;
}
.cookie-modal .cookie-cat .toggle:checked:before {
  left: 17px;
  background: #fff;
}
.cookie-modal .cookie-cat .always-on {
  margin-left: 11px;
  color: #bafec1;
  font-size: 0.93rem;
}
.cookie-modal .cookie-modal-btns {
  display: flex;
  gap: 16px;
  margin-top: 15px;
}
.cookie-modal .accept, .cookie-modal .reject {
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 10px 20px;
  font-size: 1rem;
  border-radius: 7px;
  border: none;
  font-weight: 700;
  cursor: pointer;
}
.cookie-modal .accept {
  background: #90b256;
  color: #161e30;
  box-shadow: 0 2px 10px #bafec155;
}
.cookie-modal .reject {
  background: #e83b68;
  color: #fff;
  box-shadow: 0 2px 10px #f77b9b22;
}
.cookie-modal .close {
  position: absolute;
  right: 24px;
  top: 18px;
  font-size: 1.8rem;
  color: #e9f7ff;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.16s;
}
.cookie-modal .close:hover { color: #7fe6fd; }

/* Responsive, Mobile First */
@media (max-width: 1100px) {
  .container { max-width: 900px; }
  .main-nav { gap: 14px; }
  .feature-grid, .content-grid { gap: 14px; }
}
@media (max-width: 900px) {
  .container { max-width: 96vw; }
  .feature-grid, .content-grid { gap: 12px; }
}
@media (max-width: 768px) {
  body { font-size: 15px; }
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.4rem; }
  h3 { font-size: 1.09rem; }
  .main-nav { display: none; }
  .mobile-menu-toggle { display: block; }
  .feature-grid {
    flex-direction: column;
    gap: 22px;
  }
  .testimonial-slider {
    flex-direction: column;
    gap: 20px;
  }
  .card-container, .content-grid {
    flex-direction: column;
    gap: 16px;
  }
  .cta-banner { padding: 25px 10px; }
  .section { padding: 36px 7px; }
  .text-image-section { flex-direction: column; gap: 18px; }
  .cookie-modal {
    padding: 18px 10px 10px 10px;
    min-width: 0;
  }
  .cookie-modal h3 { font-size: 1.2rem; }
}
@media (max-width: 480px) {
  h1 { font-size: 1.33rem; }
  h2 { font-size: 1.01rem; }
  .feature-card, .text-section, .content-wrapper { padding-left: 0!important; padding-right: 0!important; }
  .container { padding-left: 3vw; padding-right: 3vw; }
  .footer-contact { font-size: 0.91rem; }
  .cookie-banner { padding: 17px 9px; }
  .cookie-modal { padding: 8px 3px 6px 3px; }
}
/* Animations and Effects */
.feature-card, .testimonial-card {
  transition: box-shadow 0.23s, transform 0.13s;
}
.feature-card:active {
  transform: scale(0.98);
}
.cta-primary:active {
  transform: scale(0.96);
}

/* Hide desktop nav/show mobile nav at mobile */
@media (min-width: 769px) {
  .mobile-menu, .mobile-menu-toggle { display: none!important; }
}

/* Miscellaneous Responsive Fixes */
@media (max-width: 350px) {
  .footer-contact { font-size: 0.85rem; }
}
