/* ==== CSS 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 {
  font-size: 100%;
  scroll-behavior: smooth;
}
body {
  line-height: 1.6;
  background: #F5FCFF;
  color: #242629;
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  min-height: 100vh;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #03588C;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #6DD1F3;
  outline: none;
}
ul, ol {
  padding-left: 1.5em;
  margin-bottom: 20px;
}
li {
  margin-bottom: 8px;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  color: #03588C;
  font-weight: 700;
  letter-spacing: 0.02em;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.17;
  margin-bottom: 16px;
}
h2 {
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: 14px;
}
h3 {
  font-size: 1.25rem;
  line-height: 1.25;
  margin-bottom: 10px;
}
h4, h5, h6 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
p {
  font-size: 1rem;
  color: #242629;
  margin-bottom: 16px;
  font-family: 'Georgia', 'Times New Roman', Times, serif;
}
strong {
  font-weight: 700;
}
small {
  font-size: 0.93em;
  color: #627087;
}
/* ==== CONTAINER AND LAYOUT ==== */
.container {
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 6px 20px rgba(3,88,140,0.05);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.content-wrapper, .content-grid, .feature-grid, .service-list, .service-grid, .team-grid, .faq-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.content-wrapper {
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.align-center {
  align-items: center !important;
  text-align: center;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.card-container, .card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.card {
  background: #fff;
  box-shadow: 0 3px 10px rgba(3,88,140,0.09);
  border-radius: 12px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 26px 22px;
  transition: box-shadow 0.3s;
}
.card:hover {
  box-shadow: 0 8px 28px rgba(3,88,140,0.14);
  z-index: 2;
}
.feature-item, .service-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #F9FBFD;
  border-radius: 10px;
  box-shadow: 0 1px 6px rgba(3,88,140,0.06);
  padding: 22px 18px;
  gap: 15px;
  min-width: 220px;
  flex: 1 1 230px;
  transition: box-shadow 0.25s, transform 0.18s;
}
.feature-item img, .service-item img {
  width: 40px;
  height: 40px;
  margin-bottom: 6px;
}
.feature-item:hover, .service-item:hover {
  box-shadow: 0 4px 18px rgba(3,88,140,0.11);
  transform: translateY(-2px) scale(1.016);
}
.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.team-member {
  background: #FAF4F3;
  padding: 22px 18px;
  border-radius: 10px;
  box-shadow: 0 1px 5px rgba(3,88,140,0.06);
  flex: 1 1 240px;
  min-width: 210px;
}
.reference-case {
  background: #F2F4F9;
  border-left: 4px solid #03588C;
  padding: 18px 20px;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(3,88,140,0.06);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}
.contact-info-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-info-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  color: #03588C;
}
.contact-info-list img {
  width: 22px;
  height: 22px;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.faq-item {
  background: #F9FBFD;
  padding: 18px 22px;
  border-radius: 10px;
  box-shadow: 0 1px 6px rgba(3,88,140,0.04);
}
/* ==== TABLES ==== */
table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 22px;
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(3,88,140,0.07);
}
th, td {
  padding: 14px 10px;
  text-align: left;
  border-bottom: 1px solid #E4E7EF;
}
th {
  background: #F5FCFF;
  color: #03588C;
  font-size: 1.08em;
}
tr:last-child td {
  border-bottom: none;
}
/* ==== HEADERS & FOOTER ==== */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 20px rgba(3,88,140,0.05);
  position: relative;
  z-index: 999;
}
.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 18px;
}
.logo img {
  height: 48px;
  width: auto;
}
.main-nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
.main-nav a {
  font-family: 'Georgia', serif;
  color: #242629;
  font-size: 1.09rem;
  font-weight: 500;
  padding: 2px 7px;
  border-radius: 3px;
  transition: background 0.18s, color 0.18s;
}
.main-nav a:hover, .main-nav a.active {
  color: #03588C;
  background: #E8F4FB;
}
.btn-primary, .btn-secondary {
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  display: inline-block;
  padding: 13px 36px;
  border-radius: 6px;
  font-size: 1.08rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  text-align: center;
  transition: background 0.18s, color 0.16s, box-shadow 0.22s;
  box-shadow: 0 2px 6px rgba(3,88,140,0.08);
}
.btn-primary {
  background: #03588C;
  color: #fff;
}
.btn-primary:hover, .btn-primary:focus {
  background: #02395c;
  color: #fff;
  box-shadow: 0 5px 22px rgba(3,88,140,0.11);
}
.btn-secondary {
  background: #fff;
  color: #03588C;
  border: 2px solid #03588C;
  margin-top: 8px;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #03588C;
  color: #fff;
  box-shadow: 0 5px 18px rgba(3,88,140,0.10);
}
footer {
  background: #f7fafc;
  padding: 38px 0 18px 0;
  margin-top: 70px;
}
.footer-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  max-width: 1200px;
}
.footer-nav {
  display: flex;
  gap: 17px;
  flex-wrap: wrap;
}
.footer-nav a {
  color: #03588C;
  font-size: 1em;
  font-family: 'Georgia', serif;
  transition: text-decoration 0.17s;
  text-decoration: underline dotted #A3BFD2 1.5px;
}
.footer-nav a:hover {
  text-decoration: underline solid #03588C 2px;
  color: #6DD1F3;
}
.footer-contact {
  color: #5f768b;
  font-size: 1em;
  line-height: 1.6;
  font-family: 'Georgia', serif;
}
/* ==== TESTIMONIALS ==== */
.testimonial-slider, .testimonial-card {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.testimonial-card {
  background: #fff;
  box-shadow: 0 3px 14px rgba(3,88,140,0.10);
  border-radius: 10px;
  padding: 20px 26px;
  align-items: center;
  min-width: 250px;
  flex: 1 1 250px;
  color: #242629;
  font-size: 1.06em;
  position: relative;
  margin-bottom: 20px;
  transition: box-shadow 0.23s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 28px rgba(3,88,140,0.17);
}
.testimonial-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1em;
  color: #03588C;
  font-family: 'Georgia', serif;
  margin-top: 5px;
}
/* ==== MOBILE NAVIGATION & HAMBURGER ==== */
.mobile-menu-toggle {
  display: inline-flex;
  align-items: center;
  background: #03588C;
  color: #fff;
  font-size: 2rem;
  border: none;
  padding: 8px 13px;
  border-radius: 6px;
  cursor: pointer;
  margin-left: 10px;
  transition: background 0.19s, color 0.14s;
  z-index: 10002;
}
.mobile-menu-toggle:focus {
  outline: 2px solid #6DD1F3;
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #fff;
  z-index: 10010;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  box-shadow: 0 6px 40px rgba(3,88,140,0.17);
  transition: transform 0.32s cubic-bezier(0.87, 0, 0.13, 1), opacity 0.23s;
  transform: translateX(100%);
  opacity: 0;
}
.mobile-menu.active {
  display: flex;
  transform: translateX(0);
  opacity: 1;
}
.mobile-menu-close {
  align-self: flex-end;
  background: transparent;
  color: #03588C;
  font-size: 2.1rem;
  border: none;
  padding: 21px 22px 0 0;
  cursor: pointer;
  transition: color 0.18s;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  color: #6DD1F3;
}
.mobile-nav {
  margin: 38px 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
  width: 100%;
}
.mobile-nav a {
  font-family: 'Georgia', serif;
  font-weight: 500;
  font-size: 1.25rem;
  padding: 20px;
  color: #03588C;
  border-bottom: 1px solid #E0E8EF;
  transition: background 0.16s, color 0.17s;
  width: 100%;
  text-align: left;
}
.mobile-nav a:active, .mobile-nav a:hover {
  background: #E8F4FB;
  color: #02395c;
}
/* ==== COOKIE CONSENT BANNER ==== */
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100%;
  background: #fff;
  color: #242629;
  box-shadow: 0 -2px 18px rgba(3,88,140,0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 24px 20px;
  z-index: 10500;
  font-family: 'Georgia', serif;
  font-size: 1rem;
  opacity: 1;
  transition: opacity 0.3s, bottom 0.3s;
}
.cookie-consent-banner.hide {
  opacity: 0;
  bottom: -100px;
  pointer-events: none;
}
.cookie-consent-banner .cookie-consent-btn {
  margin-left: 18px;
  background: #03588C;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 11px 18px;
  font-family: 'Georgia', serif;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.12s;
}
.cookie-consent-btn.secondary {
  background: #fff;
  color: #03588C;
  border: 2px solid #03588C;
  margin-left: 10px;
}
.cookie-consent-btn.secondary:hover,
.cookie-consent-btn.secondary:focus {
  background: #03588C;
  color: #fff;
}
.cookie-consent-btn.settings {
  background: #6DD1F3;
  color: #03588C;
  margin-left: 10px;
}
.cookie-consent-btn.settings:hover,
.cookie-consent-btn.settings:focus {
  background: #03588C;
  color: #fff;
}
/* ==== COOKIE MODAL ==== */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  top: 0; right: 0; left: 0; bottom: 0;
  background: rgba(16,44,82,0.37);
  justify-content: center;
  align-items: center;
  z-index: 10550;
  opacity: 0;
  transition: opacity 0.28s;
}
.cookie-modal-overlay.active {
  display: flex;
  opacity: 1;
}
.cookie-modal {
  background: #fff;
  max-width: 420px;
  width: 92vw;
  border-radius: 10px;
  padding: 42px 28px 30px 28px;
  box-shadow: 0 6px 38px rgba(3,88,140,0.29);
  text-align: left;
  font-family: 'Georgia', serif;
  position: relative;
  top: 0;
  animation: showCookieModal 0.32s cubic-bezier(0.77,0,0.18,1);
}
@keyframes showCookieModal {
  0% { opacity:0; transform:translateY(80px) scale(0.95); }
  100% { opacity:1; transform:translateY(0) scale(1); }
}
.cookie-modal h3 {
  font-size: 1.15em;
  color: #03588C;
  margin-bottom: 8px;
}
.cookie-modal-category {
  display: flex;
  align-items: center;
  margin-bottom: 13px;
  font-size: 1rem;
}
.cookie-modal-category input[type='checkbox'] {
  accent-color: #03588C;
  margin-right: 9px;
  width: 16px; height: 16px;
}
.cookie-modal-category label {
  font-weight: 600;
  color: #242629;
}
.cookie-modal .cookie-modal-actions {
  margin-top: 26px;
  display: flex;
  justify-content: flex-end;
  gap: 14px;
}
.cookie-modal-close {
  position: absolute;
  right: 13px;
  top: 8px;
  background: transparent;
  border: none;
  font-size: 2rem;
  color: #03588C;
  cursor: pointer;
}
.cookie-modal-close:focus,
.cookie-modal-close:hover {
  color: #6DD1F3;
}
/* ==== BUTTON, INTERACTIONS & EFFECTS ==== */
button {
  font-family: 'Georgia', 'Times New Roman', Times, serif;
}
.btn-primary:active, .btn-secondary:active {
  transform: scale(0.96);
}
.btn-primary:focus, .btn-secondary:focus {
  outline: 2px solid #6DD1F3;
}
/* ==== RESPONSIVE BREAKPOINTS ==== */
@media (max-width: 1150px) {
  .container {
    max-width: 960px;
  }
}
@media (max-width: 992px) {
  .main-nav {
    gap: 18px;
  }
  .footer-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
}
@media (max-width: 860px) {
  .feature-grid, .service-list, .service-grid, .team-grid {
    flex-direction: column;
    gap: 18px;
  }
  .testimonial-slider {
    flex-direction: column;
    gap: 16px;
  }
}
@media (max-width: 768px) {
  .header-top {
    flex-direction: row;
  }
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-flex;
  }
  .container {
    padding: 0 12px;
    max-width: 100vw;
  }
  .section {
    padding: 28px 8px;
    margin-bottom: 34px;
  }
  .content-wrapper, .content-grid, .feature-grid, .service-list, .service-grid, .team-grid, .faq-list {
    flex-direction: column !important;
    gap: 16px;
  }
  .testimonial-card {
    min-width: unset;
    padding: 17px 10px;
  }
  .footer-wrapper {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }
}
@media (max-width: 600px) {
  h1 {
    font-size: 1.55rem;
  }
  h2 {
    font-size: 1.22rem;
  }
  p {
    font-size: 0.98rem;
  }
  .btn-primary, .btn-secondary {
    padding: 12px 17px;
    font-size: 0.98rem;
  }
  .testimonial-meta {
    font-size: 0.95em;
  }
  .reference-case, .team-member, .feature-item, .service-item, .faq-item {
    padding: 15px 10px;
  }
  .cookie-consent-banner {
    flex-direction: column;
    gap: 10px;
    font-size: 0.96em;
    align-items: flex-start;
    border-radius: 12px 12px 0 0;
  }
  .cookie-consent-btn {
    margin: 12px 0 0 0 !important;
  }
}
/* ==== PRINT & ACCESSIBILITY ==== */
@media print {
  header, .mobile-menu, .cookie-consent-banner, .cookie-modal-overlay, footer {
    display: none;
  }
  .container {
    max-width: 100% !important;
    padding: 0 !important;
  }
}
/* ==== MISC / UTILITY ==== */
.align-center {
  text-align: center !important;
  align-items: center !important;
  justify-content: center !important;
}
::-webkit-scrollbar {
  width: 8px; height: 8px;
  background: #e6edf5;
}
::-webkit-scrollbar-thumb {
  background: #bce3f6;
  border-radius: 4px;
}
