/* --- RESET & BASE --- */
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.6;
  font-family: 'Roboto', Arial, sans-serif;
  color: #232323;
  background: #fff;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #232323;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #1A466B;
  outline: none;
}
ul, ol {
  margin-left: 24px;
  margin-bottom: 16px;
}
li {
  margin-bottom: 8px;
}

/* --- TYPOGRAPHY HIERARCHY --- */

h1, h2, h3, h4 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #111;
  font-weight: 700;
  letter-spacing: -0.01em;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  line-height: 1.17;
}
h2 {
  font-size: 1.8rem;
  margin-bottom: 16px;
  line-height: 1.22;
}
h3 {
  font-size: 1.28rem;
  margin-bottom: 12px;
  line-height: 1.22;
}
h4 {
  font-size: 1.1rem;
  margin-bottom: 12px;
}
p, .text-section, .content-wrapper {
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  color: #232323;
}
strong {
  font-weight: bold;
}
blockquote {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.15rem;
  color: #1A466B;
  border-left: 4px solid #191919;
  margin: 0 0 12px 0;
  padding: 0 0 0 20px;
  font-style: italic;
}

/* --- LAYOUT HELPERS --- */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
/* Spacing for section stacking */
main > section:not(:last-child) {
  margin-bottom: 60px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  border-radius: 14px;
  padding: 28px 22px 22px 22px;
  transition: box-shadow 0.3s;
}
.card:hover {
  box-shadow: 0 8px 32px rgba(25,25,25,0.12);
}
.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;
  background: #F4F4F4;
  border-radius: 12px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.07);
  flex-direction: column;
  min-width: 0;
}
.testimonial-meta {
  color: #444;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  font-style: normal;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 1px 6px rgba(25,25,25,0.06);
  padding: 24px 18px;
  transition: box-shadow 0.2s, transform 0.2s;
  margin-bottom: 20px;
}
.feature-item:hover {
  box-shadow: 0 8px 32px rgba(25,25,25,0.13);
  transform: translateY(-2px) scale(1.02);
}
.feature-item img {
  width: 44px;
  height: 44px;
  filter: grayscale(1) contrast(1.1);
}

/* --- MONOCHROME SOPHISTICATED COLOR SCHEME --- */
body {
  background-color: #fff;
  color: #232323;
}
section {
  background-color: #fff;
}
.hero {
  background: #171717;
  color: #fff;
  padding: 48px 0 56px 0;
  margin-bottom: 60px;
}
.hero h1,
.hero p {
  color: #fff;
}
.hero .button-primary {
  background: #fff;
  color: #191919;
}
.hero .button-primary:hover {
  background: #E8F0F6;
  color: #1A466B;
}
.features {
  background-color: #F6F6F6;
}
.cta {
  background: #191919;
  color: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(10,10,10,0.12);
  text-align: center;
  margin-bottom: 60px;
}
.cta h2 {
  color: #fff;
}
.cta .button-primary {
  background: #fff;
  color: #111;
}
.cta .button-primary:hover {
  background: #1A466B;
  color: #fff;
}

/* --- NAVIGATION --- */
header {
  background: #fff;
  box-shadow: 0 2px 14px rgba(10,10,10,0.05);
  width: 100%;
  z-index: 30;
  position: sticky;
  top: 0;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 0;
}
.logo img {
  height: 40px;
  width: auto;
  display: block;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: #232323;
  padding: 4px 4px;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
}
.main-nav a:hover,
.main-nav a:focus {
  background: #E8F0F6;
  color: #1A466B;
}
.main-nav .button-primary {
  margin-left: 8px;
}

/* --- BUTTONS --- */
.button-primary, button.button-primary {
  appearance: none;
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  background: #191919;
  color: #fff;
  border-radius: 24px;
  padding: 12px 28px;
  font-size: 1.06rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0,0,0,0.10);
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, transform 0.18s;
  position: relative;
  overflow: hidden;
}
.button-primary:hover, .button-primary:focus {
  background: #1A466B;
  color: #fff;
  box-shadow: 0 4px 24px rgba(15,15,15,0.13);
  transform: translateY(-1px) scale(1.01);
}
.button-secondary {
  background: #E8F0F6;
  color: #1A466B;
  border: 1.5px solid #1A466B;
  padding: 10px 24px;
  border-radius: 23px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
}
.button-secondary:hover,
.button-secondary:focus {
  background: #1A466B;
  color: #FFF;
}

/* --- MOBILE NAVIGATION --- */
.mobile-menu-toggle {
  display: none;
  background: none;
  color: #1A466B;
  border: none;
  font-size: 2rem;
  padding: 5px 15px;
  cursor: pointer;
  border-radius: 8px;
  transition: background 0.18s;
  z-index: 101;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background-color: #E8F0F6;
  color: #191919;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(245,245,245,0.97);
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.6,0,0.4,1);
  z-index: 120;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 20px;
  box-shadow: 2px 0 24px rgba(40,40,40,0.08);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 20px 0 20px 0;
  background: none;
  border: none;
  font-size: 2rem;
  color: #1A466B;
  cursor: pointer;
  transition: color 0.18s;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  color: #191919;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  width: 100%;
  margin-top: 20px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  padding: 12px 4px;
  color: #232323;
  border-radius: 6px;
  transition: background 0.19s, color 0.19s;
}
.mobile-nav a:focus,
.mobile-nav a:hover {
  background: #E8F0F6;
  color: #1A466B;
}
.main-nav, .main-nav .button-primary {
  display: flex;
  flex-direction: row;
  align-items: center;
}

/* --- FOOTER --- */
footer {
  background: #191919;
  color: #fff;
  padding: 38px 0 24px 0;
  margin-top: 42px;
  font-size: 1rem;
}
footer .container {
  align-items: flex-start;
  gap: 24px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 14px;
}
.footer-nav a {
  color: #CECECE;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.footer-nav a:hover {
  color: #FFB71B;
  text-decoration: underline;
}
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  color: #E8F0F6;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
}
.footer-contact img {
  width: 20px;
  height: 20px;
  margin-right: 7px;
  vertical-align: middle;
  filter: grayscale(1) contrast(1.1);
}
.brand-credit {
  margin-top: 14px;
  color: #ACACAC;
  font-size: 0.98rem;
  font-family: 'Roboto', Arial, sans-serif;
  text-align: left;
}

/* --- FEATURES & OFFERINGS --- */
.features .feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.feature-item h3 {
  color: #191919;
  margin-top: 4px;
}

/* --- TESTIMONIALS --- */
.testimonials {
  background: #F6F6F6;
  padding-bottom: 48px;
}
.testimonial-card {
  background: #fff;
  color: #1A466B;
  border: 1.5px solid #D6D6D6;
  min-height: 98px;
}
.testimonial-card blockquote {
  color: #191919;
}
.testimonial-meta {
  color: #555;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.96rem;
  font-style: normal;
}

/* --- SERVICES/RESOURCE/LISTS --- */
.service-list, .resource-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.service-item, .resource-item {
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 2px 8px rgba(25,25,25,0.07);
  padding: 24px;
  margin-bottom: 20px;
  flex: 1 1 300px;
  min-width: 250px;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.22s;
}
.service-item:hover, .resource-item:hover {
  box-shadow: 0 8px 28px rgba(25,25,25,0.15);
}
.resource-item img {
  width: 36px;
  height: 36px;
  filter: grayscale(1) contrast(1.1);
}
.resource-item ul, .service-item ul {
  margin-left: 18px;
  margin-bottom: 10px;
}

/* --- TABLES --- */
.price-table {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 16px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 1px 6px rgba(20,20,20,0.07);
  overflow: hidden;
}
.price-table th, .price-table td {
  padding: 14px 20px;
  border-bottom: 1px solid #E5E5E5;
  text-align: left;
  font-family: 'Roboto', Arial, sans-serif;
}
.price-table th {
  background: #F6F6F6;
  color: #111;
  font-size: 1.08rem;
}
.price-table tr:last-child td {
  border-bottom: none;
}
.price-notes {
  color: #444;
  font-size: 0.99rem;
  background: #F6F8F9;
  padding: 14px 20px;
  border-radius: 6px;
  margin-bottom: 12px;
}

/* --- LEGAL, PRIVACY, ETC --- */
.legal .text-section,
.about .text-section,
.contact .text-section {
  background: #F6F6F6;
  border-radius: 10px;
  padding: 22px 24px;
}

/* --- FAQ ACCORDION --- */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-item {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 1px 8px rgba(22,22,22,0.06);
  padding: 20px 22px;
  margin-bottom: 12px;
  transition: box-shadow 0.18s;
}
.faq-item h2 {
  font-size: 1.13rem;
  margin-bottom: 9px;
  color: #1A466B;
}
.faq-item p {
  font-size: 1rem;
  color: #242424;
}

/* --- VALUES LIST --- */
.values-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 18px;
  margin: 20px 0 0 0;
  padding: 0;
}
.values-list li {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  padding: 8px 16px;
  background: #E8F0F6;
  color: #1A466B;
  border-radius: 21px;
  margin-bottom: 0;
  cursor: default;
  list-style: none;
  display: inline-block;
}

/* --- TIMELINE/SVG --- */
.timeline-graphic {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px 0 0 0;
}

/* --- CARD STYLES GENERAL --- */
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* --- CONTACT --- */
.contact-form-info ul {
  margin-bottom: 0;
}

/* --- CONFIRMATION --- */
.confirmation .content-wrapper {
  align-items: center;
  text-align: center;
}
.confirmation .button-primary {
  margin-top: 20px;
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  z-index: 990;
  background: #F6F6F6;
  color: #232323;
  box-shadow: 0 -2px 16px rgba(40,40,40,0.12);
  padding: 22px 14px 22px 14px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  font-size: 1rem;
  transition: transform 0.36s, opacity 0.36s;
}
.cookie-banner.hide {
  transform: translateY(110%);
  opacity: 0;
}
.cookie-banner .cookie-banner-title {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #191919;
}
.cookie-banner-actions {
  display: flex;
  flex-direction: row;
  gap: 20px;
  margin-top: 6px;
}
.cookie-banner-actions .button-primary {
  font-size: 0.96rem;
  padding: 9px 17px;
}
.cookie-banner-actions .button-secondary {
  font-size: 0.96rem;
  padding: 9px 17px;
  border: 1.2px solid #1A466B;
}
.cookie-banner-actions .cookie-settings-btn {
  font-size: 0.96rem;
  background: transparent;
  color: #1A466B;
  border: none;
  margin-left: 5px;
  text-decoration: underline;
  cursor: pointer;
  transition: color 0.18s, text-decoration 0.16s;
}
.cookie-banner-actions .cookie-settings-btn:hover {
  color: #191919;
}

/* --- COOKIE PREFERENCES MODAL --- */
.cookie-modal {
  position: fixed;
  z-index: 9999;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(0,0,0,0.45);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal-content {
  background: #fff;
  color: #191919;
  padding: 34px 24px 24px 24px;
  border-radius: 12px;
  box-shadow: 0 6px 44px rgba(22,22,22,0.25);
  min-width: 320px;
  max-width: 93vw;
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: cookieModalOpen 0.45s cubic-bezier(.58,1.57,.47,1);
}
@keyframes cookieModalOpen {
  from { transform: translateY(60px) scale(0.98); opacity: 0; }
  to { transform: none; opacity: 1; }
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  padding: 7px 0;
  border-bottom: 1px solid #E5E5E5;
}
.cookie-category:last-child {
  border-bottom: none;
}
.cookie-category-label {
  flex: 1;
  font-size: 1rem;
  color: #191919;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
}
.cookie-toggle {
  appearance: none;
  width: 42px;
  height: 22px;
  border-radius: 14px;
  background: #E8F0F6;
  position: relative;
  outline: none;
  cursor: pointer;
  border: none;
  transition: background 0.18s;
}
.cookie-toggle:checked {
  background: #1A466B;
}
.cookie-toggle::before {
  content: '';
  position: absolute;
  left: 2px; top: 2px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 4px rgba(30,30,30,0.08);
  transition: left 0.18s;
}
.cookie-toggle:checked::before {
  left: 22px;
  background: #FFB71B;
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 18px;
  margin-top: 6px;
}
.cookie-modal-actions .button-primary {
  font-size: 0.97rem;
  padding: 9px 17px;
}
.cookie-modal-actions .button-secondary {
  font-size: 0.97rem;
  padding: 9px 17px;
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  right: 30px;
  top: 16px;
  background: none;
  border: none;
  color: #1A466B;
  font-size: 2rem;
  cursor: pointer;
  border-radius: 5px;
  transition: background 0.16s;
}
.cookie-modal .cookie-modal-close:hover {
  background: #E8F0F6;
}
.cookie-modal .cookie-modal-title {
  font-size: 1.2rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  margin-bottom: 10px;
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 1100px) {
  .container {
    padding-left: 10px;
    padding-right: 10px;
    max-width: 98vw;
  }
  .footer-nav {
    gap: 12px;
  }
}
@media (max-width: 950px) {
  .main-nav {
    gap: 14px;
  }
  .features .feature-grid,
  .service-list, .resource-list {
    gap: 18px;
  }
  .service-item, .resource-item {
    min-width: 190px;
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .container {
    max-width: 100vw;
    padding-left: 3vw;
    padding-right: 3vw;
  }
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
  .section, main > section:not(:last-child), .cta {
    margin-bottom: 38px;
    padding: 28px 5vw;
  }
  .footer-contact {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
  .brand-credit {
    text-align: left;
    width: 100%;
  }
  .feature-item, .service-item, .resource-item, .testimonial-card {
    padding: 18px 13px;
    font-size: 0.98rem;
    min-width: 0;
    width: 100%;
  }
  .content-wrapper {
    gap: 14px;
  }
  .feature-grid,
  .service-list, .resource-list {
    flex-direction: column;
    gap: 14px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }
  .testimonial-card {
    padding: 15px 8px;
  }
  .footer-nav {
    flex-direction: column;
    gap: 3px;
    margin-bottom: 10px;
    width: 100%;
  }
  .hero {
    padding: 28px 0 32px 0;
  }
  h1 {
    font-size: 1.63rem;
  }
  h2 {
    font-size: 1.18rem;
  }
  .cta {
    padding: 24px 5vw;
    border-radius: 10px;
  }
}
@media (max-width: 550px) {
  .hero {
    padding-top: 16px;
    padding-bottom: 18px;
  }
  .cookie-modal-content {
    padding: 17px 4vw 20px 4vw;
    min-width: 0;
  }
}

/* --- SYSTEM FONTS FALLBACK --- */
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  src: local('Montserrat'), local('Montserrat-Regular'), url(https://fonts.gstatic.com/s/montserrat/v25/JTUQjIg1_i6t8kCHKm45_Qphzg.ttf) format('truetype');
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  src: local('Montserrat Bold'), local('Montserrat-Bold'), url(https://fonts.gstatic.com/s/montserrat/v25/JTURjIg1_i6t8kCHKm45_dJE3gnD-w.ttf) format('truetype');
  font-display: swap;
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  src: local('Roboto'), local('Roboto-Regular'), url(https://fonts.gstatic.com/s/roboto/v30/KFOmCnqEu92Fr1Me4WxKOzY.ttf) format('truetype');
  font-display: swap;
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 700;
  src: local('Roboto Bold'), local('Roboto-Bold'), url(https://fonts.gstatic.com/s/roboto/v30/KFOlCnqEu92Fr1MmWUlfBBc9AMX6lJBP.ttf) format('truetype');
  font-display: swap;
}

/* --- MISC: SELECTION, SCROLLBAR, FOCUS --- */
::selection {
  background: #1A466B;
  color: #fff;
}
a:focus, button:focus, .button-primary:focus, .button-secondary:focus {
  outline: 2px solid #FFB71B;
  outline-offset: 2px;
}
::-webkit-scrollbar {
  width: 10px;
  background: #F6F6F6;
}
::-webkit-scrollbar-thumb {
  background: #CDCDCD;
  border-radius: 8px;
}
