/* 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;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  background: #FFFFFF;
  color: #1b2b36;
  font-family: 'Roboto', Arial, sans-serif;
  line-height: 1.6;
  min-height: 100vh;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #145578;
  text-decoration: none;
  transition: color 0.18s cubic-bezier(.4,0,.2,1);
}
a:hover, a:focus {
  color: #45B3A2;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #145578;
  font-weight: 700;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.15;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.25rem;
  line-height: 1.3;
  margin-bottom: 12px;
}
h4, h5, h6 {
  font-size: 1rem;
  margin-bottom: 8px;
}
p, ul, ol {
  font-size: 1rem;
  margin-bottom: 16px;
  color: #1b2b36;
}
li {
  margin-bottom: 10px;
  font-size: 1rem;
}
strong {
  font-weight: 700;
}

/* CONTAINER & GEOMETRIC STRUCTURE */
.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;
}

/* SPACING & SECTIONS (MANDATORY) */
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #E4EFF5;
  border-radius: 24px;
  position: relative;
}
.section:last-child, section:last-child {
  margin-bottom: 0;
}

/* FLEXBOX LAYOUTS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 8px 0 rgba(20,85,120,0.07);
  position: relative;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  min-width: 250px;
  flex: 1 1 320px;
  transition: box-shadow .18s cubic-bezier(.4,0,.2,1);
}
.card:hover, .card:focus {
  box-shadow: 0 5px 22px 0 rgba(20,85,120,0.14);
  outline: none;
}
.content-grid, .service-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;
  margin-bottom: 20px;
  background: #F6FBFD;
  border-radius: 18px;
  box-shadow: 0 2px 10px 0 rgba(20, 85, 120, 0.08);
  border: 2px solid #E4EFF5;
  transition: box-shadow .14s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 18px 2px rgba(20, 85, 120, 0.13);
}
.testimonial-meta {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 12px;
  font-size: 1rem;
  color: #145578;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* SPECIAL FLEX-LAYOUTS BASED ON CLASSES PRESENT */
.features ul, .feature-grid, .value-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  list-style: none;
  margin: 0;
  padding: 0;
}
.features ul li, .feature-grid li, .value-list li {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 8px 0 rgba(20, 85, 120, 0.07);
  flex: 1 1 240px;
  min-width: 200px;
  max-width: 310px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 28px 18px;
  border: 1.5px solid #E4EFF5;
  margin-bottom: 20px;
  transition: box-shadow 0.16s, border 0.16s;
}
.features ul li:hover, .feature-grid li:hover, .value-list li:hover {
  box-shadow: 0 6px 18px 2px rgba(20, 85, 120, 0.13);
  border: 1.5px solid #45B3A2;
}

/* SERVICE LIST & LISTS */
.service-list, .team-list ul, .faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin-bottom: 24px;
}
.service-list li {
  background: #fff;
  border-radius: 12px;
  padding: 22px 18px;
  box-shadow: 0 1.5px 7.5px 0 rgba(69,179,162,0.08);
  border: 1.5px solid #E4EFF5;
}
.team-list ul li {
  padding: 20px 14px;
  border-radius: 12px;
  background: #F6FBFD;
  border: 1.5px solid #E4EFF5;
  box-shadow: 0 2px 8px 0 rgba(20,85,120,0.06);
}
.value-list {
  justify-content: space-between;
}

/* TABLES */
.pricing-table {
  width: 100%;
  border-radius: 14px;
  background: #fff;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  margin-bottom: 24px;
  box-shadow: 0 2px 8px 0 rgba(20,85,120,0.07);
}
.pricing-table th, .pricing-table td {
  padding: 18px 12px;
  border-bottom: 1.5px solid #E4EFF5;
  font-size: 1rem;
  text-align: left;
}
.pricing-table thead tr {
  background: #E4EFF5;
}
.pricing-table th {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #145578;
}
.pricing-table tr:last-child td {
  border-bottom: none;
}

/* BUTTONS */
.btn, .btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 30px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  border-radius: 32px;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 8px 0 rgba(20,85,120,0.07);
  transition: background 0.16s, color 0.16s, box-shadow 0.18s;
}
.btn-primary {
  background: #145578;
  color: #fff;
}
.btn-primary:hover, .btn-primary:focus {
  background: #147369;
  color: #fff;
}
.btn-secondary {
  background: #E4EFF5;
  color: #145578;
  border: 1.5px solid #145578;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #45B3A2;
  color: #fff;
  border-color: #147369;
}

/* HEADER & NAV */
header {
  background: #fff;
  border-bottom: 2.5px solid #E4EFF5;
  padding: 0;
}
.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 20px 0;
  position: relative;
}
.main-nav ul {
  display: flex;
  flex-direction: row;
  gap: 24px;
  list-style: none;
  margin: 0 16px;
}
.main-nav li a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #145578;
  border-radius: 6px;
  padding: 8px 14px;
  transition: background 0.15s, color 0.15s;
}
.main-nav li a:hover, .main-nav li a:focus, .main-nav li a.active {
  background: #E4EFF5;
  color: #147369;
}

/* MOBILE NAVIGATION */
.mobile-menu-toggle {
  display: none;
  background: #145578;
  color: #fff;
  border: none;
  font-size: 2.2rem;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 220;
  position: relative;
  transition: background 0.2s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #45B3A2;
  color: #fff;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  box-shadow: 0 15px 56px 0 rgba(20,85,120,0.20);
  z-index: 300;
  pointer-events: none;
  opacity: 0;
  transform: translateX(-100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1), opacity .25s;
}
.mobile-menu.active {
  pointer-events: auto;
  opacity: 1;
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  color: #145578;
  font-size: 2.2rem;
  border: none;
  align-self: flex-end;
  margin: 28px 20px 0 0;
  cursor: pointer;
  border-radius: 8px;
  transition: background 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #E4EFF5;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin: 48px 36px;
  width: 80vw;
  max-width: 360px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #145578;
  padding: 16px 0 8px 0;
  border-bottom: 2.5px solid #E4EFF5;
  transition: color 0.13s, border-color 0.13s, background 0.13s;
  border-radius: 0 0 10px 0;
}
.mobile-nav a:last-child {
  border-bottom: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #E4EFF5;
  color: #147369;
}

/* HERO SECTION */
.hero {
  background: #E4EFF5;
  border-radius: 0 0 40px 40px;
  padding-top: 54px;
  padding-bottom: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero .content-wrapper {
  align-items: flex-start;
  max-width: 640px;
  margin: 0 auto;
  gap: 22px;
}

/* CTA */
.cta {
  background: #145578;
  color: #fff;
  border-radius: 24px;
  text-align: center;
}
.cta h2, .cta p {
  color: #fff;
}
.cta .btn-primary {
  margin-top: 14px;
  background: #45B3A2;
  color: #fff;
}
.cta .btn-primary:hover {
  background: #147369;
}

/* FOOTER */
footer {
  background: #E4EFF5;
  border-radius: 28px 28px 0 0;
  padding: 36px 0 0 0;
  margin-top: 60px;
  box-shadow: 0 -2px 16px 0 rgba(20,85,120,0.07);
}
.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 26px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer-nav a {
  color: #145578;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  transition: color 0.16s;
}
.footer-nav a:hover {
  color: #147369;
  text-decoration: underline;
}
.footer-contact p {
  font-size: 0.95rem;
  color: #17405A;
  margin-bottom: 0;
}
.footer-social {
  display: flex;
  flex-direction: row;
  gap: 11px;
  align-items: center;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: #fff;
  border-radius: 9px;
  box-shadow: 0 1px 4px 0 rgba(20,85,120,0.10);
  transition: background 0.15s;
  border: 1.5px solid #E4EFF5;
}
.footer-social a:hover {
  background: #45B3A2;
}

/* FAQ ACCORDION */
.faq-accordion > div {
  background: #fff;
  border-radius: 12px;
  margin-bottom: 20px;
  padding: 20px 16px;
  box-shadow: 0 1.5px 7.5px 0 rgba(69,179,162,0.08);
  border-left: 6px solid #45B3A2;
}
.faq-accordion > div h3 {
  margin-bottom: 7px;
  font-size: 1.09rem;
  color: #145578;
  font-weight: 600;
}
.faq-accordion > div p {
  margin-bottom: 0;
  color: #1b2b36;
}

/* CONTACT DETAILS */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: #F6FBFD;
  border-radius: 12px;
  padding: 16px 14px;
  border: 1.5px solid #E4EFF5;
}
.contact-details a {
  color: #145578;
  font-weight: 500;
  margin-left: 8px;
}
.contact-details a:hover {
  color: #45B3A2;
}

/* PROJECT HIGHLIGHTS or SUCCESS STORIES */
.project-highlights ul {
  list-style: none;
  padding: 0;
  margin: 0 0 18px 0;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.project-highlights li {
  background: #F6FBFD;
  border-radius: 10px;
  padding: 12px 16px;
  border-left: 4px solid #147369;
  color: #145578;
  font-weight: 500;
}

/* GEOMETRIC/DECORATIVE ELEMENTS */
section::before {
  content: '';
  display: block;
  position: absolute;
  top: -22px;
  left: 30px;
  width: 64px;
  height: 11px;
  border-radius: 0 16px 16px 0;
  background: #45B3A2;
  opacity: 0.13;
  z-index: 0;
}
section .content-wrapper {
  position: relative;
  z-index: 1;
}

/* Hide pseudo-decorators on mobile */
@media (max-width: 600px) {
  section::before {
    display: none;
  }
}

/* TABLET & DESKTOP LAYOUTS */
@media (min-width: 769px) {
  .main-nav ul {
    gap: 32px;
  }
  .footer-content {
    flex-direction: row;
    gap: 45px;
  }
  .cta .content-wrapper {
    align-items: center;
  }
  .features ul, .feature-grid, .value-list {
    flex-direction: row;
    justify-content: space-between;
  }
  .hero .content-wrapper {
    align-items: flex-start;
    gap: 32px;
  }
  .card-container, .content-grid, .service-grid {
    flex-direction: row;
  }
}
@media (max-width: 1024px) {
  .container {
    max-width: 960px;
  }
  .features ul li, .feature-grid li, .value-list li {
    min-width: 160px;
    max-width: 46%;
  }
  .footer-content {
    flex-direction: column;
    gap: 18px;
  }
}
@media (max-width: 768px) {
  .main-nav ul {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .main-nav .btn-primary {
    display: none;
  }
  .footer-content {
    flex-direction: column;
    gap: 18px;
  }
  .features ul, .feature-grid, .value-list {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
}
@media (max-width: 600px) {
  .container {
    padding: 0 7px;
  }
  .section, section {
    padding: 26px 7px;
    margin-bottom: 34px;
  }
  .hero {
    padding-top: 30px;
    padding-bottom: 44px;
  }
  h1 {
    font-size: 2rem;
    margin-bottom: 16px;
  }
  h2 {
    font-size: 1.3rem;
    margin-bottom: 12px;
  }
  .card {
    padding: 16px 7px;
  }
}
@media (max-width: 480px) {
  .card {
    min-width: 90vw;
  }
}
/* RESPONSIVE FLEX DIRECTION FOR .text-image-section */
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}

/* TRANSITIONS & MICRO-INTERACTIONS */
.btn, .card, .feature-grid li, .value-list li, .testimonial-card {
  will-change: transform, box-shadow;
  box-shadow: 0 2px 8px 0 rgba(20,85,120,0.07);
}
.btn:active, .btn:focus {
  outline: 2px solid #45B3A2;
}

/* TESTIMONIALS - COLOR CONTRAST */
.testimonial-card, .testimonial-card p, .testimonial-card .testimonial-meta span {
  color: #145578 !important;
  background: #F6FBFD;
}
.testimonial-card p {
  font-style: italic;
  font-size: 1.12rem;
  margin-bottom: 10px;
  color: #145578;
}

.testimonial-card .testimonial-meta img {
  display: inline-block;
  height: 22px;
  width: 22px;
  margin: 0 2px 0 0;
}

/* COOKIE CONSENT BANNER & MODAL */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  background: #145578;
  color: #fff;
  padding: 20px 16px 19px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  z-index: 1001;
  box-shadow: 0 -2px 14px 0 rgba(20,85,120,0.08);
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  transition: transform 0.3s cubic-bezier(.4,0,.2,1), opacity 0.2s;
}
.cookie-banner.hide {
  opacity: 0;
  transform: translateY(110%);
  pointer-events: none;
}
.cookie-banner-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.cookie-btn {
  border: none;
  border-radius: 24px;
  padding: 11px 26px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin: 0;
  cursor: pointer;
  background: #fff;
  color: #145578;
  transition: background 0.13s, color 0.13s;
  box-shadow: 0 1.5px 4.5px 0 rgba(69,179,162,0.07);
}
.cookie-btn.cookie-accept {
  background: #45B3A2;
  color: #fff;
}
.cookie-btn.cookie-accept:hover {
  background: #147369;
  color: #fff;
}
.cookie-btn.cookie-reject {
  background: #fff;
  color: #145578;
  border: 2px solid #E4EFF5;
}
.cookie-btn.cookie-reject:hover {
  background: #E4EFF5;
  color: #45B3A2;
}
.cookie-btn.cookie-settings {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}
.cookie-btn.cookie-settings:hover {
  background: #147369;
  color: #fff;
  border-color: #45B3A2;
}

/* COOKIE CONSENT MODAL */
.cookie-modal {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(20,85,120,0.35);
  z-index: 1021;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.3s;
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal-content {
  background: #fff;
  border-radius: 20px;
  padding: 44px 24px 32px 24px;
  min-width: 320px;
  max-width: 95vw;
  box-shadow: 0 4px 32px 0 rgba(20,85,120,0.18);
  display: flex;
  flex-direction: column;
  gap: 18px;
  font-family: 'Roboto', Arial, sans-serif;
  color: #145578;
  position: relative;
}
.cookie-modal-close {
  position: absolute;
  right: 24px;
  top: 20px;
  background: none;
  border: none;
  font-size: 2rem;
  color: #145578;
  cursor: pointer;
}
.cookie-modal-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.cookie-modal-category label {
  font-weight: 600;
  font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-modal-category input[type="checkbox"] {
  accent-color: #45B3A2;
  width: 19px;
  height: 19px;
}
.cookie-modal-category input[disabled] {
  accent-color: #bbb;
}
/* Essential cookies always enabled (styled as disabled) */
.cookie-modal-category input[disabled]+span {
  opacity: 0.7;
}

/* THANK YOU */
.thankyou-confirmation {
  text-align: center;
  background: #E4EFF5;
  border-radius: 28px;
}
.thankyou-confirmation h1 {
  color: #145578;
}

/* GEOMETRIC STRUCTURE - BUTTON/ICON SHADOWS */
.btn, .cookie-btn, .footer-social a, .card, .testimonial-card, .features ul li, .service-list li {
  box-shadow: 0 2px 8px 0 rgba(20,85,120,0.07);
}

/* VISUAL HIERARCHY & SPACING */
.section > h2, section > h1, .content-wrapper > h2, .content-wrapper > h1 {
  margin-top: 0;
  margin-bottom: 14px;
}

/* HIDE non-mobile nav/cta on mobile */
@media (max-width: 768px) {
  .main-nav ul,
  .main-nav .btn-primary {
    display: none;
  }
}

/* Hamburger always on top */
header, .mobile-menu-toggle { z-index: 220; }

/* Prevent overlapping for all primary containers */
.card, .testimonial-card, .features ul li, .service-list li, .faq-accordion > div, .about-values .value-list li {
  margin-bottom: 20px;
}

/* FOCUS STATES (A11Y) */
a:focus, button:focus, .btn:focus, .cookie-btn:focus,
.mobile-menu-close:focus, .cookie-modal-close:focus {
  outline: 2.5px solid #147369;
  outline-offset: 2px;
  z-index: 302;
}

/* Hide scroll on body when menu/modals open (to be applied via JS) */
body.menu-open, body.modal-open {
  overflow: hidden;
}

/* ==== CUSTOM SCROLLBAR for geometric touch ==== */
::-webkit-scrollbar {
  width: 10px;
  background: #E4EFF5;
}
::-webkit-scrollbar-thumb {
  background: #45B3A2;
  border-radius: 7px;
}
::-webkit-scrollbar-thumb:hover {
  background: #147369;
}

/* ================== END ================== */