/* ===== CSS RESET & NORMALIZE ===== */
html {
  box-sizing: border-box;
  height: 100%;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  background: #FFFFFF;
  color: #192027;
  min-height: 100vh;
  line-height: 1.6;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
img {
  max-width: 100%;
  vertical-align: middle;
  border-style: none;
}
ul, ol {
  list-style: none;
  padding-left: 0;
}
table {
  border-collapse: collapse;
  width: 100%;
}
th, td {
  padding: 12px 16px;
  text-align: left;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #192027;
  margin-bottom: 16px;
  line-height: 1.22;
}
h1 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}
h2 {
  font-size: 1.6rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  font-weight: 600;
}
p {
  margin-bottom: 16px;
  color: #22304F;
}
strong {
  font-weight: 600;
}
/* ======= LAYOUT & CONTAINER ======= */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #FFF;
}
/* ===== HEADER & NAVIGATION ====== */
header {
  background: #FFF;
  box-shadow: 0 2px 16px rgba(34,81,165,0.04);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding: 10px 0;
}
header nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
}
header nav a {
  color: #192027;
  padding: 8px 4px;
  transition: color 0.2s;
  border-radius: 4px;
  font-weight: 500;
}
header nav a:hover,
header nav a:focus {
  color: #2251A5;
  background: #F5F7FA;
}
.cta-desktop {
  display: none;
}
/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  background: #2251A5;
  color: #FFF;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  border: none;
  border-radius: 32px;
  font-weight: 700;
  outline: none;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(34,81,165,0.08);
  transition: background 0.2s, box-shadow 0.2s, transform 0.1s;
}
.btn-primary:hover, .btn-primary:focus {
  background: #1a3e80;
  transform: translateY(-1px) scale(1.02);
  box-shadow: 0 4px 22px rgba(34,81,165,0.12);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px;
  background: #F5F7FA;
  color: #2251A5;
  border: 1px solid #2251A5;
  border-radius: 32px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  outline: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border 0.2s, box-shadow 0.2s;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #e7eefd;
  color: #1a3e80;
}
.btn-accent {
  background: #C25408;
  color: #fff;
  border: none;
  border-radius: 32px;
  padding: 10px 24px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.18s, box-shadow 0.18s;
}
.btn-accent:hover, .btn-accent:focus {
  background: #E8722C;
}
/* ===== MOBILE NAVIGATION ===== */
.mobile-menu-toggle {
  background: transparent;
  border: none;
  font-size: 2rem;
  line-height: 1;
  color: #2251A5;
  border-radius: 6px;
  cursor: pointer;
  padding: 8px 14px;
  margin-left: 8px;
  display: flex;
  align-items: center;
  transition: background 0.18s;
  z-index: 102;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: #F5F7FA;
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #FFFFFF;
  box-shadow: 0 2px 24px 0 rgba(34,81,165,0.06);
  transform: translateX(-100vw);
  transition: transform 0.3s cubic-bezier(.83,0,.17,1);
  z-index: 1100;
  pointer-events: none;
  opacity: 0;
  display: flex;
  flex-direction: column;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: all;
  opacity: 1;
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2rem;
  margin: 16px 20px 0 0;
  background: none;
  border: none;
  color: #C25408;
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  transition: background 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #F5F7FA;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 48px 0 0 32px;
}
.mobile-nav a {
  color: #2251A5;
  font-size: 1.18rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  padding: 10px 0;
  border-radius: 6px;
  transition: background 0.15s, color 0.15s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F5F7FA;
  color: #C25408;
}
/* Hide desktop nav on mobile */
@media (max-width: 1024px) {
  .header-flex nav {
    display: none;
  }
  .cta-desktop {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 1025px) {
  .mobile-menu,
  .mobile-menu-toggle {
    display: none !important;
  }
  .cta-desktop {
    display: inline-flex;
    margin-left: 24px;
  }
}

/* ========== MAIN SECTIONS & FLEX COMPONENTS ========== */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  flex: 1 1 260px;
  background: #F5F7FA;
  border-radius: 16px;
  padding: 28px 20px 22px 20px;
  box-shadow: 0 1px 7px rgba(34,81,165,0.06);
  min-width: 240px;
  transition: box-shadow 0.18s, transform 0.13s;
}
.feature-item img {
  width: 40px;
  height: 40px;
  margin-bottom: 8px;
}
.feature-item:hover {
  box-shadow: 0 6px 32px rgba(34,81,165,0.14);
  transform: translateY(-4px) scale(1.03);
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #FFF;
  border-radius: 14px;
  box-shadow: 0 2px 16px rgba(34,81,165,0.04);
  padding: 32px 24px;
  min-width: 250px;
  transition: box-shadow 0.16s;
}
.card:hover {
  box-shadow: 0 6px 28px rgba(34,81,165,0.11);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  align-items: flex-start;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #F5F7FA;
  color: #192027;
  box-shadow: 0 2px 16px rgba(34,81,165,0.05);
  border-radius: 16px;
  padding: 20px;
  margin-bottom: 20px;
  min-width: 220px;
  transition: box-shadow 0.13s, transform 0.14s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 36px rgba(34,81,165,0.11);
  transform: translateY(-3px) scale(1.015);
}
.testimonial-card p {
  font-style: italic;
  color: #192027;
  margin-bottom: 8px;
}
.testimonial-card strong {
  color: #2251A5;
  font-weight: 700;
  display: block;
  margin-bottom: 4px;
}
.star-rating img {
  width: 18px;
  height: 18px;
  filter: grayscale(0%) brightness(0.95);
  margin-right: 2px;
}
.article-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.article-list article {
  background: #F5F7FA;
  border-radius: 10px;
  box-shadow: 0 1px 9px 0 rgba(34,81,165,0.05);
  padding: 24px 20px;
  transition: box-shadow 0.15s, transform 0.09s;
}
.article-list article:hover {
  box-shadow: 0 5px 22px rgba(34,81,165,0.09);
  transform: scale(1.01);
}
.article-list article h2 a {
  color: #2251A5;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.18rem;
  transition: color 0.12s;
}
.article-list article h2 a:hover, .article-list article h2 a:focus {
  color: #C25408;
}
.featured-articles ul li a {
  color: #2251A5;
  border-bottom: 1px solid #C25408;
  transition: color 0.14s, border-bottom-color 0.19s;
}
.featured-articles ul li a:hover, .featured-articles ul li a:focus {
  color: #C25408;
  border-bottom: 1px solid #2251A5;
}

/* ========== TABLES ========== */
.pricing-table {
  width: 100%;
  background: #FFF;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(34,81,165,0.05);
  margin-bottom: 32px;
  overflow: hidden;
}
.pricing-table th {
  background: #F5F7FA;
  color: #192027;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.06rem;
  padding: 16px 12px;
  font-weight: 700;
}
.pricing-table td {
  background: #FFF;
  font-size: 1rem;
  color: #22304F;
  padding: 13px 12px;
}
.pricing-table tbody tr {
  border-bottom: 1px solid #F2F2F2;
}
.pricing-table tr:last-of-type {
  border-bottom: none;
}

/* ========== ICON/LIST SUPPORT SECTIONS ========== */
.service-highlights,
.service-descriptions,
.service-benefits,
.company-strengths {
  margin: 12px 0 0 0;
  font-size: 1.08rem;
  color: #192027;
  background: #F5F7FA;
  border-radius: 8px;
  padding: 18px;
}
.usp-icons, .support-icons, .value-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  margin: 16px 0 0 0;
}
.usp-icons img, .support-icons img, .value-icons img {
  width: 40px;
  height: 40px;
  filter: none;
}
/* ===== SECTION SPACING & FLEX-PATTERNS ===== */
.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; align-items: center; gap: 20px; padding: 20px; }
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }

/* ========== FORMS (for future/marketing) ========== */
input, textarea, select {
  font-family: inherit;
  font-size: 1rem;
  padding: 10px 14px;
  border: 1px solid #E3E8F0;
  border-radius: 8px;
  background: #F5F7FA;
  color: #192027;
  margin-bottom: 20px;
  transition: border-color 0.15s, box-shadow 0.15s;
}
input:focus, textarea:focus, select:focus {
  border-color: #2251A5;
  outline: none;
  box-shadow: 0 2px 8px rgba(34,81,165,0.06);
}
label {
  font-size: 1rem;
  margin-bottom: 8px;
  color: #192027;
}

/* ========== FOOTER ======== */
footer {
  background: #F5F7FA;
  padding: 44px 0 32px 0;
  font-size: 0.98rem;
  color: #192027;
  border-top: 1px solid #E3E8F0;
  margin-top: 60px;
}
.footer-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 32px;
  align-items: flex-start;
}
.footer-flex > div,
.footer-flex > nav {
  flex: 1 1 230px;
  min-width: 190px;
}
.footer-flex img {
  width: 44px;
  height: 44px;
  margin-bottom: 14px;
}
.footer-flex nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-flex nav a {
  color: #2251A5;
  transition: color 0.17s;
}
.footer-flex nav a:hover, .footer-flex nav a:focus {
  color: #C25408;
  text-decoration: underline;
}
.footer-contact p {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 7px;
  color: #22304F;
  font-size: 0.95rem;
}
.footer-contact img {
  width: 18px;
  height: 18px;
}

/* ========== COOKIE CONSENT BANNER ========== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #192027;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 22px 16px 22px 32px;
  box-shadow: 0 -2px 24px rgba(34,81,165,0.13);
  z-index: 2200;
  font-size: 1rem;
  opacity: 1;
  transition: transform 0.33s cubic-bezier(.83,0,.17,1), opacity 0.24s;
}
.cookie-banner.hide {
  opacity: 0;
  transform: translateY(100%);
  pointer-events: none;
}
.cookie-banner p {
  color: #fff;
  margin-bottom: 0;
  flex: 1 1 auto;
  font-size: 1rem;
}
.cookie-banner .btn-primary, .cookie-banner .btn-secondary, .cookie-banner .btn-accent {
  font-size: 0.97rem;
  padding: 9px 19px;
}
.cookie-banner .btn-secondary {
  background: #fff;
  color: #2251A5;
  border: 1px solid #2251A5;
  margin-left: 4px;
}
.cookie-banner .btn-secondary:hover {
  background: #e7eefd;
  color: #1a3e80;
}
.cookie-banner .btn-accent {
  background: #C25408;
  color: #fff;
  border: none;
  margin-left: 4px;
}
.cookie-banner .btn-accent:hover {
  background: #E8722C;
}

/* ========== COOKIE CONSENT MODAL ========== */
.cookie-modal-backdrop {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(25, 32, 39, 0.55);
  z-index: 2300;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.25s;
}
.cookie-modal {
  background: #fff;
  color: #192027;
  border-radius: 16px;
  box-shadow: 0 4px 44px rgba(34,81,165,0.21);
  max-width: 420px;
  width: 93vw;
  padding: 38px 28px 28px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  z-index: 2310;
  animation: modal-pop 0.25s cubic-bezier(.4,0,.2,1);
}
@keyframes modal-pop {
  from { opacity: 0; transform: translateY(34px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.cookie-modal h2 {
  margin-top: 0;
  margin-bottom: 11px;
  color: #2251A5;
  font-size: 1.36rem;
}
.cookie-modal strong {
  color: #C25408;
}
.cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 18px 0 16px 0;
}
.cookie-modal .category-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
}
.cookie-modal .category-row label {
  flex: 1 1 auto;
  font-size: 1.08rem;
  color: #22304F;
}
.cookie-modal .toggle-switch {
  position: relative;
  width: 42px;
  height: 22px;
  display: inline-block;
}
.cookie-modal .toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-modal .slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #F5F7FA;
  border-radius: 22px;
  transition: background 0.17s;
}
.cookie-modal .toggle-switch input:checked + .slider {
  background: #2251A5;
}
.cookie-modal .slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 2px;
  bottom: 2px;
  background: #fff;
  transition: transform 0.14s;
  border-radius: 50%;
  box-shadow: 0 1px 3px rgba(34,81,165,0.03);
}
.cookie-modal .toggle-switch input:checked + .slider:before {
  transform: translateX(20px);
}
.cookie-modal .toggle-switch input:disabled + .slider {
  background: #D6DDE5;
  cursor: not-allowed;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 12px;
}
.cookie-modal .btn-primary, .cookie-modal .btn-secondary, .cookie-modal .btn-accent {
  font-size: 1rem;
  padding: 9px 19px;
}
.cookie-modal .btn-secondary {
  background: #fff;
  color: #2251A5;
  border: 1px solid #2251A5;
}
.cookie-modal .btn-secondary:hover {
  background: #f5f7fa;
  color: #C25408;
}
.cookie-modal-close {
  position: absolute;
  top: 11px; right: 15px;
  background: none;
  border: none;
  color: #C25408;
  font-size: 1.4rem;
  cursor: pointer;
  border-radius: 50%;
  padding: 5px 7px;
  transition: background 0.13s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #F5F7FA;
}
/* Hide modal/backdrop by default */
.cookie-modal-backdrop.hide {
  opacity: 0;
  pointer-events: none;
}

/* ========== SPECIAL BLOCKS & UTILITIES ========== */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.text-section ul, .company-strengths ul {
  margin-left: 18px;
  padding-left: 14px;
  margin-bottom: 8px;
  list-style: disc;
}
.text-section li, .company-strengths li {
  margin-bottom: 6px;
  color: #22304F;
}
ul > li strong {
  color: #2251A5;
}

ol {
  margin-left: 18px;
  padding-left: 14px;
  margin-bottom: 8px;
  list-style: decimal;
}
ol li {
  margin-bottom: 7px;
}

.map-location p {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #22304F;
  font-size: 1rem;
  margin-bottom: 10px;
}
.contact-details p {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #22304F;
  font-size: 1rem;
  margin-bottom: 10px;
}

/* =========== RESPONSIVE BREAKPOINTS ================= */
@media (max-width: 1020px) {
  .container {
    max-width: 98vw;
    padding: 0 12px;
  }
  .footer-flex {
    flex-wrap: wrap;
    gap: 18px;
  }
}
@media (max-width: 900px) {
  .feature-grid {
    flex-direction: column;
    gap: 20px;
  }
  .card-container {
    flex-direction: column;
    gap: 16px;
  }
  .content-grid {
    flex-direction: column;
    gap: 16px;
  }
  .footer-flex {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}
@media (max-width: 768px) {
  .section {
    padding: 24px 6px;
    margin-bottom: 38px;
  }
  h1 {
    font-size: 1.46rem;
  }
  h2 {
    font-size: 1.12rem;
  }
  .feature-grid {
    flex-direction: column;
    gap: 16px;
  }
  .feature-item,
  .testimonial-card,
  .card {
    padding: 16px 11px;
    min-width: 0;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .content-grid {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
  .footer-flex {
    flex-direction: column;
    gap: 17px;
    align-items: stretch;
  }
  .footer-flex > div,
  .footer-flex > nav {
    min-width: 0;
  }
  .mobile-menu .mobile-nav {
    margin: 40px 0 0 20px;
    gap: 16px;
  }
}
@media (max-width: 500px) {
  .cookie-modal {
    padding: 22px 8px 20px 8px;
  }
  .cookie-banner {
    flex-direction: column;
    padding: 16px 4px 16px 4px;
    gap: 8px;
    font-size: 0.98rem;
    align-items: flex-start;
  }
  .footer-flex {
    gap: 8px;
  }
  .article-list article {
    padding: 12px 6px;
  }
}
/* ========== ANIMATIONS ========== */
.btn-primary, .btn-secondary, .btn-accent, .mobile-menu-toggle, .mobile-menu-close, .footer-flex nav a, .mobile-nav a {
  transition: background 0.19s, color 0.17s, box-shadow 0.17s, transform 0.13s;
}
.mobile-menu, .cookie-banner, .cookie-modal-backdrop {
  transition: transform 0.32s cubic-bezier(.83,0,.17,1), opacity 0.19s;
}
/* End of CSS */
