/* 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, input, menu, nav, output, section, summary, time, mark, audio, video {
  margin: 0; padding: 0; border: 0; font-size: 100%; font: inherit; vertical-align: baseline;
}
html { box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; }
body {
  background: #F5F5F5;
  color: #2e3c4d;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: #205375; text-decoration: none; transition: color 0.15s; }
a:hover, a:focus { color: #27AE60; text-decoration: underline; }
ul, ol { list-style: none; }
strong { font-weight: 600; }
hr { border: none; border-top: 1px solid #dde3e9; margin: 24px 0; }

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  margin-bottom: 14px;
  color: #205375;
  letter-spacing: -0.02em;
}
h1 { font-size: 2.4rem; line-height: 1.1; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.2rem; }

p, li, small {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: #384657;
}
p { margin-bottom: 16px; }
small { color: #8192a7; font-size: 0.92rem; }

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

/* HEADER & NAVIGATION */
header {
  background: #fff;
  box-shadow: 0 2px 8px rgba(32,83,117,0.05);
  position: sticky;
  top: 0;
  z-index: 1100;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 20px;
}
header nav {
  display: flex;
  gap: 32px;
  align-items: center;
}
header nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #205375;
  padding: 8px 0;
  position: relative;
  transition: color 0.2s;
}
header nav a:hover, header nav a:focus {
  color: #27AE60;
}
/* CTA Primary */
.cta-primary {
  display: inline-block;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  background: #205375;
  color: #fff;
  padding: 12px 32px;
  border-radius: 28px;
  border: none;
  font-size: 1rem;
  box-shadow: 0 2px 8px rgba(32,83,117,0.12);
  transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
  cursor: pointer;
  margin-left: 24px;
}
.cta-primary:hover, .cta-primary:focus {
  background: #27AE60;
  color: #fff;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 4px 16px rgba(39,174,96,0.18);
  text-decoration: none;
}
.cta-secondary {
  display: inline-block;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  background: #fff;
  color: #205375;
  border: 2px solid #205375;
  padding: 10px 28px;
  border-radius: 28px;
  font-size: 1rem;
  transition: background 0.18s, color 0.18s;
  cursor: pointer;
  margin-top: 2px;
}
.cta-secondary:hover, .cta-secondary:focus {
  background: #205375;
  color: #fff;
  border-color: #27AE60;
}

/* MOBILE NAVIGATION */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 18px;
  z-index: 1201;
  background: #205375;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  font-size: 2rem;
  box-shadow: 0 1px 8px rgba(32,83,117,0.08);
  transition: background 0.22s, transform 0.14s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #27AE60;
  color: #fff;
  outline: none;
  transform: scale(1.08);
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: #f5f5f5;
  z-index: 1300;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding-top: 64px;
  transform: translateX(-100vw);
  opacity: 0;
  transition: transform 0.32s cubic-bezier(0.4,0,0.2,1), opacity 0.22s cubic-bezier(0.4,0,0.2,1);
  box-shadow: 0 0 24px 0 rgba(32,83,117, 0.18);
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
}
.mobile-menu-close {
  position: absolute;
  top: 22px;
  right: 24px;
  background: none;
  border: none;
  color: #205375;
  font-size: 2rem;
  z-index: 1301;
  cursor: pointer;
  transition: color 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #27AE60;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  width: 100%;
  align-items: flex-start;
  padding: 32px 36px 0 36px;
}
.mobile-nav a {
  font-size: 1.3rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #205375;
  padding: 12px 0;
  width: 100%;
  font-weight: 500;
  border-bottom: 1px solid #dde3e9;
  transition: color 0.18s;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover, .mobile-nav a:focus { color: #27AE60; background: #e9f5ef; }

/* Hide main nav, show burger on mobile */
@media (max-width: 1079px) {
  header nav, header .cta-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 1080px) {
  .mobile-menu, .mobile-menu-toggle {
    display: none !important;
  }
}

/* SECTIONS */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 6px 24px rgba(32,83,117,0.05);
}

/* FLEX CONTAINERS/UTILITY */
.card-container {
  display: flex; flex-wrap: wrap; gap: 24px;
}
.card { margin-bottom: 20px; position: relative; border-radius: 12px; background: #fff; box-shadow: 0 2px 9px rgba(32,83,117,0.06); padding: 26px 24px; min-width: 280px; flex: 1 1 330px; transition: box-shadow 0.15s, transform 0.15s; }
.card:hover { box-shadow: 0 8px 32px rgba(32,83,117,0.12); transform: translateY(-4px) scale(1.02); }
.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; align-items: center; gap: 20px; padding: 20px;
  border-radius: 14px;
  background: #f1f5fa;
  box-shadow: 0 2px 12px rgba(32,83,117, 0.07);
  margin-bottom: 20px;
  flex-direction: column;
  align-items: flex-start;
  min-width: 280px;
  border-left: 6px solid #205375;
  transition: box-shadow 0.14s;
}
.testimonial-card p {
  color: #2e3c4d; font-size: 1.08rem;
}
.testimonial-card strong {
  color: #205375; font-size: 1.01rem;
}
.testimonial-card span {
  font-size: 1.3rem; color: #27AE60; margin-right: 6px;
}
.feature-item {
  display: flex; flex-direction: column; align-items: flex-start; gap: 15px;
}

/* FEATURE GRID, SERVICE GRID, TIMELINES, TIPS */
.feature-grid, .service-highlights, .service-list, .tip-grid, .case-study-list, .timeline, .faq-list, .team-list {
  display: flex; flex-wrap: wrap; gap: 24px; margin-top: 8px;
}
.feature-grid li, .service-highlights li, .service-list li, .tip-grid li, .case-study-list li, .team-list li {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 1px 7px rgba(32,83,117,0.06);
  padding: 20px 18px;
  min-width: 240px;
  flex: 1 1 230px;
  display: flex; flex-direction: column; align-items: flex-start; gap: 10px;
  font-size: 1.01rem;
  margin-bottom: 20px;
  transition: box-shadow 0.17s, transform 0.17s;
}
.feature-grid li:hover, .service-highlights li:hover, .service-list li:hover, .tip-grid li:hover {
  box-shadow: 0 8px 22px rgba(32,83,117,0.10); transform: translateY(-2px) scale(1.01);
}

.timeline li {
  border-left: 4px solid #205375;
  padding-left: 18px; margin-bottom: 12px; background: #f7fafc;
  font-size: 1.04rem;
}

/* BENEFIT ICONS, TEAM SKILLS, ETC */
.benefit-icons, .team-skills {
  display: flex; flex-wrap: wrap; gap: 20px; margin-top: 8px;
}

/* FAQ SECTION */
.faq-list { flex-direction: column; }
.faq-list details {
  background: #fff;
  border-radius: 11px;
  box-shadow: 0 1px 7px rgba(32,83,117,0.07);
  padding: 20px;
  margin-bottom: 16px;
  font-size: 1.02rem;
  transition: box-shadow 0.14s;
}
.faq-list details[open] {
  box-shadow: 0 4px 17px rgba(32,83,117,0.13);
}
.faq-list summary {
  font-weight: 600;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #205375;
  cursor: pointer;
  outline: none;
  margin-bottom: 10px;
}
.faq-answer {
  padding-top: 10px;
  line-height: 1.7;
  color: #384657;
}

/* CONFIRMATION PAGE */
.confirmation-message { background: #e6f3fa; border-radius: 14px; padding: 20px; margin-bottom: 12px; }
.next-steps ul { margin-top: 8px; }

/* FOOTER */
footer {
  background: #18455b;
  color: #fff;
  padding: 48px 0 16px 0;
  margin-top: 48px;
}
.footer-wrapper {
  display: flex; flex-wrap: wrap; gap: 40px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-logo img { max-height: 44px; }
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav a {
  color: #c5d2df;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  transition: color 0.17s;
}
.footer-nav a:hover, .footer-nav a:focus { color: #27AE60; }
.footer-contact {
  font-size: 0.98rem;
  color: #c5d2df;
  margin-bottom: 12px;
  line-height: 1.6;
}
.footer-contact img { height: 18px; vertical-align: text-bottom; margin-right: 4px; }
.footer-copy { width: 100%; text-align: left; margin-top: 22px; }
.footer-copy small {
  color: #8aa2bb;
}

/* COOKIE BANNER */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 1700;
  background: rgba(255,255,255,0.99);
  border-top: 2px solid #205375;
  box-shadow: 0 -2px 12px rgba(32,83,117,0.08);
  display: flex;
  flex-direction: row;
  gap: 32px;
  align-items: center;
  padding: 24px;
  justify-content: center;
  font-size: 1rem;
  animation: cookieShow 0.38s cubic-bezier(0.32, 0.04, 0.6, 1) 1;
}
@keyframes cookieShow { from { transform: translateY(100px); opacity: 0;} to {transform: translateY(0); opacity: 1;} }
.cookie-banner p { margin: 0 10px 0 0; color: #2e3c4d; }
.cookie-btn {
  background: #205375;
  color: #fff;
  border: none;
  border-radius: 22px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  padding: 10px 20px;
  font-size: 1rem;
  margin-right: 10px;
  transition: background 0.18s, color 0.18s, transform 0.16s;
  cursor: pointer;
}
.cookie-btn.settings {
  background: #fff;
  color: #205375;
  border: 2px solid #205375;
  margin-right: 0;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #27AE60;
  color: #fff;
  transform: scale(1.07);
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #f3f3f3;
  color: #205375;
  border-color: #27AE60;
}

/* COOKIE MODAL */
.cookie-modal-overlay {
  position: fixed; left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(32,83,117,0.17);
  z-index: 1750;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.17s;
}
.cookie-modal-overlay.open { opacity: 1; pointer-events: auto; }
.cookie-modal {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 40px rgba(32,83,117,0.19);
  max-width: 390px;
  width: 92vw;
  padding: 32px 32px 18px 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  animation: cookieModalAppear 0.32s cubic-bezier(0.3,0.08,0.6,1) 1;
}
@keyframes cookieModalAppear { from {transform: scale(0.95) translateY(30px); opacity:0;} to {transform: scale(1) translateY(0); opacity:1;} }
.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  color: #205375;
  font-size: 1.5rem;
  cursor: pointer;
  transition: color 0.14s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus { color: #27AE60; }
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f0f4f8;
  border-radius: 10px;
  padding: 14px 12px;
  margin-bottom: 12px;
}
.cookie-category label {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  color: #205375;
  font-weight: 500;
}
.toggle-switch {
  position: relative;
  width: 46px;
  height: 24px;
}
.toggle-switch input { opacity: 0; width: 0; height: 0; }
.toggle-switch .slider {
  position: absolute; cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #205375;
  border-radius: 22px;
  transition: background 0.16s;
}
.toggle-switch input:checked + .slider { background: #27AE60; }
.toggle-switch .slider:before {
  position: absolute; content: "";
  height: 18px; width: 18px; left: 3px; bottom: 3px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.19s;
  box-shadow: 0 1px 3px rgba(32,83,117,0.07);
}
.toggle-switch input:checked + .slider:before {
  transform: translateX(22px);
}
.toggle-switch .slider { box-shadow: 0 1px 4px rgba(32,83,117,0.09); }

/* Hide banner on small mobile overlay */
@media (max-width: 400px) {
  .cookie-banner { flex-direction: column; padding: 21px 10px; gap: 15px; }
}

/* RESPONSIVE DESIGN & FLEX DIRECTION */
@media (max-width: 900px) {
  .container { max-width: 99vw; padding: 0 10px; }
  .footer-wrapper {
    flex-direction: column;
    gap: 28px;
    align-items: flex-start;
  }
  header .container { flex-direction: row; gap: 8px; height: auto; }
  .section {
    padding: 26px 4px;
  }
  .feature-grid, .service-highlights, .service-list, .tip-grid, .case-study-list, .timeline, .team-list {
    gap: 16px;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.4rem; }
  .section { margin-bottom: 34px; padding: 20px 2px; }
  .footer-nav { gap: 2px; }
  header .container { flex-direction: row; flex-wrap: wrap; height: auto; }
  .content-grid, .card-container {
    flex-direction: column;
    gap: 18px;
  }
  .feature-grid, .service-highlights, .service-list, .tip-grid, .case-study-list, .timeline, .team-list {
    flex-direction: column;
    gap: 12px;
  }
  .content-wrapper { gap: 16px; }
  .testimonial-card { flex-direction: column; align-items: flex-start; }
  .text-image-section { flex-direction: column; gap: 18px; align-items: flex-start; }
}

@media (max-width: 500px) {
  h1 { font-size: 1.44rem; }
  h2 { font-size: 1.13rem; }
  .container { padding: 0 2px; }
  .section { border-radius: 8px; }
  .card, .testimonial-card { padding: 14px 7px; border-radius: 7px; }
}

/* MICRO-INTERACTIONS */
.card, .feature-grid li, .service-highlights li, .service-list li, .tip-grid li, .testimonial-card, .faq-list details {
  transition: box-shadow 0.15s, transform 0.16s;
}
.card:hover, .feature-grid li:hover, .service-highlights li:hover, .service-list li:hover, .tip-grid li:hover, .testimonial-card:hover {
  box-shadow: 0 6px 20px rgba(32,83,117,0.13);
  transform: translateY(-3px) scale(1.01);
}

/* ACCESSIBILITY FOCUS */
a:focus, button:focus, .cta-primary:focus, .cta-secondary:focus {
  outline: 3px solid #27AE60;
  outline-offset: 1.5px;
}

/* PRINT SUPPORT: light bg, dark text only */
@media print {
  body, .section, .card, .testimonial-card, .footer {
    background: #fff !important; color: #000 !important;
    box-shadow: none !important;
  }
}

/* UTILITY CLASSES */
.text-center { text-align: center; }
.text-right { text-align: right; }
.rounded { border-radius: 8px; }
.bg-primary { background: #205375 !important; color: #fff !important; }
.bg-secondary { background: #F5F5F5 !important; }
.accent { color: #27AE60; }

/* CUSTOM SCROLLBARS */
::-webkit-scrollbar { width: 9px; background: #e6ebf0; }
::-webkit-scrollbar-thumb { background: #205375; border-radius: 10px; }

/* END OF CSS */
