/* RESET & BASE STYLES: Modern Normalization */
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 {
  height: 100%;
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  font-family: 'Roboto', Arial, sans-serif;
  color: #1a2840;
  background: #E6EEF6;
  line-height: 1.6;
  font-size: 1rem;
  transition: background 0.2s;
  position: relative;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
a {
  color: #16406E;
  transition: color 0.2s;
  text-decoration: none;
}
a:hover, a:focus {
  color: #FF8C27;
  outline: none;
}
ul, ol {
  padding-left: 1.3em;
  margin-bottom: 1em;
}
li {
  margin-bottom: 12px;
  line-height: 1.6;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 700;
  color: #16406E;
  letter-spacing: 0.01em;
  margin-bottom: 18px;
  line-height: 1.18;
}
h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.38rem; }
h4 { font-size: 1.18rem; }
h5 { font-size: 1rem; }
h6 { font-size: 0.93rem; }
p, .text-section, .content-wrapper {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
}
strong { font-weight: 700; }

/* CONTAINER & STRUCTURE */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}
.content-wrapper {
  margin: 0 auto;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(22,64,110,0.06), 0 1.5px 3px rgba(22,64,110,0.04);
  padding: 40px 28px;
}
@media (max-width: 768px) {
  .content-wrapper {
    padding: 28px 10px;
  }
}

/* SECTION SPACING - MANDATORY */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 768px) {
  .section {
    padding: 24px 10px;
    margin-bottom: 32px;
  }
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(22,64,110,0.08);
  min-width: 280px;
  flex: 1 1 280px;
  transition: transform 0.18s cubic-bezier(.4,0,.2,1), box-shadow 0.24s;
}
.card:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 10px 30px rgba(22,64,110,0.14);
}

.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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  background: #E6EEF6;
  border: 2.5px solid #16406E;
  border-radius: 18px;
  color: #1a2840;
  box-shadow: 0 2.5px 8px rgba(22,64,110,0.09);
  padding: 20px;
  margin-bottom: 20px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.1rem;
  font-family: 'Roboto', Arial, sans-serif;
}
.testimonial-card span {
  color: #FF8C27;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.3em;
}
.testimonial-card p {
  font-size: 1.08em;
}
.testimonial-card div {
  font-weight: 600;
  letter-spacing: 0.02em;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 3px 12px rgba(22,64,110,0.08);
  padding: 14px 22px;
}
.feature-item img {
  height: 32px;
  width: 32px;
  margin-bottom: 4px;
}

/* HEADER */
header {
  background: #16406E;
  color: #fff;
  box-shadow: 0 2.5px 8px rgba(22,64,110,0.12);
  position: relative;
  z-index: 40;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  padding-top: 12px;
  padding-bottom: 12px;
}
header nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
header nav a {
  font-family: 'Oswald', Arial, sans-serif;
  color: #fff !important;
  font-size: 1.10rem;
  letter-spacing: 0.02em;
  font-weight: 700;
  position: relative;
  padding: 2px 0;
  transition: color 0.2s;
  text-transform: uppercase;
}
header nav a:hover, header nav a:focus {
  color: #FF8C27 !important;
}
header img {
  height: 48px;
  width: auto;
  margin-right: 24px;
}

.cta.primary {
  background: #FF8C27;
  color: #fff !important;
  font-family: 'Oswald', Arial, sans-serif;
  border: none;
  border-radius: 13px;
  padding: 11px 28px;
  box-shadow: 0 2.5px 8px rgba(22,64,110,0.09);
  font-size: 1.13rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin-left: 25px;
  cursor: pointer;
  outline: none;
  transition: background 0.18s, box-shadow 0.24s, color 0.18s, transform 0.19s cubic-bezier(.4,0,.2,1);
  text-transform: uppercase;
  display: inline-block;
  position: relative;
}
.cta.primary:hover, .cta.primary:focus {
  background: #16406E;
  color: #fff;
  transform: translateY(-2.5px) scale(1.04);
}
.cta {
  background: #fff;
  color: #16406E;
  font-family: 'Oswald', Arial, sans-serif;
  border: 2.5px solid #16406E;
  border-radius: 13px;
  padding: 10px 25px;
  font-size: 1.11em;
  font-weight: 700;
  margin-top: 8px;
  cursor: pointer;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s, transform 0.19s cubic-bezier(.4,0,.2,1);
  display: inline-block;
}
.cta:hover, .cta:focus {
  background: #FF8C27;
  color: #fff;
  border-color: #FF8C27;
  transform: scale(1.03);
}

/* RESPONSIVE NAVIGATION */
.mobile-menu-toggle {
  display: none;
}
@media (max-width: 1024px) {
  header .container {
    flex-wrap: wrap;
  }
  header nav {
    gap: 18px;
  }
}
@media (max-width: 900px) {
  header .container {
    flex-direction: row;
    align-items: center;
    gap: 0;
  }
  header nav {
    display: none;
  }
  .cta.primary {
    margin-left: 0;
  }
  .mobile-menu-toggle {
    display: block;
    position: fixed;
    top: 18px;
    right: 18px;
    z-index: 98;
    background: #FFF;
    color: #16406E;
    font-size: 2.1rem;
    border: none;
    border-radius: 12px;
    width: 46px;
    height: 46px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    cursor: pointer;
    transition: background 0.15s, color 0.15s, transform 0.15s;
  }
  .mobile-menu-toggle:active,
  .mobile-menu-toggle:focus {
    background: #FF8C27;
    color: #fff;
    outline: 2px solid #16406E;
  }
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  display: flex;
  flex-direction: column;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #E6EEF6;
  box-shadow: 0 0 28px 0 rgba(22,64,110,0.09);
  transform: translateX(-100vw);
  transition: transform 0.32s cubic-bezier(.31,1.26,.28,1), box-shadow 0.2s;
  z-index: 105;
  overflow-y: auto;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 18px 18px 15px 0;
  font-size: 2.2rem;
  background: none;
  color: #16406E;
  border: none;
  cursor: pointer;
  transition: color 0.19s, transform 0.18s;
  border-radius: 8px;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #FF8C27;
  transform: scale(1.06);
  background: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 26px;
  margin-left: 36px;
  margin-top: 10px;
}
.mobile-nav a {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.26em;
  color: #16406E;
  font-weight: 700;
  padding: 10px 2px 8px 0;
  width: 100%;
  text-transform: uppercase;
  border-bottom: 2.5px solid transparent;
  transition: color 0.15s, border-color 0.19s, background 0.18s;
  border-radius: 8px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #FF8C27;
  border-bottom-color: #FF8C27;
  background: #fff;
  padding-left: 8px;
}

@media (min-width: 901px) {
  .mobile-menu, .mobile-menu-toggle {
    display: none !important;
  }
}

/* FOOTER */
footer {
  background: #16406E;
  color: #fff;
  padding-top: 38px;
  padding-bottom: 24px;
  margin-top: 56px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  max-width: 1200px;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
footer nav a {
  color: #fff;
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  font-size: 1.025rem;
  opacity: 0.96;
  transition: color 0.17s;
}
footer nav a:hover, footer nav a:focus {
  color: #FF8C27;
}
footer img {
  height: 42px;
  margin-bottom: 18px;
}
footer .contact-info {
  font-size: 0.97rem;
  color: #fff;
}
footer .contact-info img {
  height: 18px;
  width: 18px;
  vertical-align: middle;
  margin-right: 6px;
}
@media (max-width: 820px) {
  footer .container {
    flex-direction: column;
    align-items: stretch;
    gap: 22px;
    text-align: left;
  }
}

/* TABLES */
table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 24px;
  margin-top: 12px;
}
th, td {
  border: 2.5px solid #E6EEF6;
  padding: 13px 8px;
  text-align: center;
  font-family: 'Roboto', Arial, sans-serif;
}
th {
  background: #16406E;
  color: #fff;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}
td {
  background: #fff;
  color: #1a2840;
  font-size: 1rem;
}

/* TEXT-SECTION & SUB-BLOCKS */
.text-section {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 7px rgba(22,64,110,0.06);
  padding: 22px 20px 16px 20px;
  margin-bottom: 24px;
}

/* CONTACT-INFO FLEX */
.contact-info {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
}
.contact-info > div {
  min-width: 140px;
}
@media (max-width: 700px) {
  .contact-info {
    flex-direction: column;
    gap: 14px;
  }
}

/* ANIMATIONS & TRANSITIONS */
.section, .card, .cta, .cta.primary, .testimonial-card, .feature-item {
  transition: box-shadow 0.18s, transform 0.17s, background 0.19s, color 0.15s;
}

/* GEOMETRIC/STRUCTURED SHAPES */
.card, .content-wrapper, .section, .testimonial-card, .feature-item, .text-section {
  border-radius: 18px;
  box-shadow: 0 4px 16px rgba(22,64,110,0.07);
}
hr {
  border: none;
  border-top: 2.5px solid #16406E;
  margin: 32px 0;
}

/* LISTS WITH ICONS */
ul li img {
  display: inline-block;
  height: 26px;
  width: 26px;
  vertical-align: middle;
  margin-right: 12px;
  border-radius: 7px;
  background: #E6EEF6;
  padding: 2px;
}

/* QUOTATION & BLOCKQUOTE */
blockquote {
  background: #f9fbfd;
  border-left: 5.5px solid #16406E;
  margin: 18px 0;
  padding: 17px 22px;
  font-style: italic;
  border-radius: 10px;
  color: #16406E;
}

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #16406E;
  color: #fff;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 22px;
  justify-content: center;
  padding: 23px 14px;
  z-index: 300;
  box-shadow: 0 -4px 16px rgba(22,64,110,0.15);
  font-size: 1.06rem;
  animation: cookiefadein 0.38s cubic-bezier(.4,0,.2,1) 1;
}
@keyframes cookiefadein {
  from { transform: translateY(130px); opacity:0; }
  to   { transform: translateY(0); opacity:1; }
}
.cookie-banner__buttons {
  display: flex;
  gap: 15px;
}
.cookie-button, .cookie-settings-btn, .cookie-reject-btn {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.025em;
  border: none;
  border-radius: 10px;
  padding: 9px 22px;
  cursor: pointer;
  transition: background 0.17s, color 0.17s, transform 0.18s;
  outline: none;
}
.cookie-button {
  background: #FF8C27;
  color: #fff;
}
.cookie-button:hover, .cookie-button:focus {
  background: #e67410;
  transform: translateY(-2px) scale(1.04);
}
.cookie-reject-btn {
  background: #fff;
  color: #16406E;
  border: 2px solid #16406E;
}
.cookie-reject-btn:hover, .cookie-reject-btn:focus {
  background: #FF8C27;
  color: #fff;
  border-color: #FF8C27;
}
.cookie-settings-btn {
  background: #E6EEF6;
  color: #16406E;
}
.cookie-settings-btn:hover, .cookie-settings-btn:focus {
  background: #FF8C27;
  color: #fff;
}

/* Cookie Modal */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(22,64,110,0.5);
  z-index: 410;
  align-items: center;
  justify-content: center;
}
.cookie-modal-overlay.open {
  display: flex;
  animation: cookieModalIn 0.34s cubic-bezier(.21,1.05,.25,1.08);
}
@keyframes cookieModalIn {
  from { opacity:0; }
  to   { opacity:1; }
}
.cookie-modal {
  background: #fff;
  color: #1a2840;
  border-radius: 18px;
  box-shadow: 0 6px 32px rgba(22,64,110,0.2);
  padding: 30px 34px 24px 34px;
  max-width: 370px;
  width: 92vw;
  display: flex;
  flex-direction: column;
  gap: 13px;
  position: relative;
  font-size: 1rem;
}
.cookie-modal h2 {
  font-size: 1.28rem;
  margin-bottom: 14px;
  font-family: 'Oswald', Arial, sans-serif;
  color: #16406E;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
  justify-content: space-between;
  margin: 9px 0 5px 0;
}
.cookie-category label {
  font-weight: 700;
  color: #16406E;
  font-family: 'Oswald', Arial, sans-serif;
}
.cookie-category input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: #FF8C27;
  border-radius: 5px;
  margin-right: 6px;
  outline: 2px solid #E6EEF6;
}
.cookie-modal .modal-actions {
  margin-top: 16px;
  display: flex;
  gap: 12px;
  flex-direction: row-reverse;
  justify-content: flex-end;
}
.cookie-modal .modal-close {
  position: absolute;
  top: 12px;
  right: 14px;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #16406E;
  cursor: pointer;
  border-radius: 7px;
  transition: background 0.17s, color 0.15s;
}
.cookie-modal .modal-close:hover, .cookie-modal .modal-close:focus {
  background: #E6EEF6;
  color: #FF8C27;
}

@media (max-width: 600px) {
  .cookie-modal {
    padding: 13px 10px 18px 10px;
    font-size: 0.98em;
  }
  .cookie-modal h2 {
    font-size: 1.08rem;
  }
}

/* FORM ELEMENTS - if needed in future */
input, select, textarea {
  font-family: 'Roboto', Arial, sans-serif;
  border: 2px solid #E6EEF6;
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 1em;
  background: #fff;
  margin-bottom: 20px;
  outline: none;
  transition: border-color 0.16s;
  width: 100%;
  max-width: 360px;
}
input:focus, select:focus, textarea:focus {
  border-color: #FF8C27;
}
label {
  font-family: 'Oswald', Arial, sans-serif;
  color: #16406E;
  font-weight: 700;
  font-size: 1em;
}

/* UTILITIES */
.d-none { display: none !important; }
.mt-32 { margin-top: 32px !important; }
.mb-32 { margin-bottom: 32px !important; }
.mt-18 { margin-top: 18px !important; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .container { max-width: 970px; }
}
@media (max-width: 820px) {
  .container { max-width: 730px; }
}
@media (max-width: 700px) {
  body, html { font-size: 15px; }
  .container { max-width: 98vw; padding: 0 8px; }
}

/* GEOMETRIC HEADING DECORATION */
h1, h2, h3 {
  position: relative;
}
h1::before, h2::before, h3::before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 28px;
  height: 6px;
  background: #FF8C27;
  border-radius: 5px;
  margin-right: 14px;
  margin-bottom: 3px;
}

/* CARD GRIDS AND FLEX LAYOUTS */
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

/* FAQ answer highlighting */
.text-section h3 {
  color: #FF8C27;
  font-size: 1.10em;
}

/* Accessibility - focus states */
a, button, input, select, textarea {
  outline: none;
}
:focus-visible {
  outline: 2.5px solid #FF8C27;
  outline-offset: 2px;
}

/* Misc geometric details */
.card::after {
  content: '';
  display: block;
  width: 55px;
  height: 5.5px;
  background: #E6EEF6;
  border-radius: 4px 4px 0 0;
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
}

/* Hide empty sections/cards */
.card:empty, .testimonial-card:empty, .feature-item:empty {
  display: none;
}

/* Print Styling (subtle) */
@media print {
  .mobile-menu, .mobile-menu-toggle, .cookie-banner, .cookie-modal-overlay, header, footer { display: none !important; }
  .container { box-shadow: none !important; border: none !important; }
  .content-wrapper, .section, .card { box-shadow: none !important; border-radius: 0 !important; }
  h1, h2, h3::before { display: none !important; }
}
