/* 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, main, 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 {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}
body {
  background: #F6F8FA;
  color: #102235;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  min-height: 100vh;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: #154C7C;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #21A4C3;
  outline: none;
}
ul, ol {
  list-style: none;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Open Sans', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #102235;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 16px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 12px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.subheadline {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1.125rem;
  color: #21A4C3;
  margin-bottom: 24px;
  font-weight: 500;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 18px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 6px 24px rgba(21,76,124,0.06);
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* HEADER */
header {
  background: #154C7C;
  color: #fff;
  position: relative;
  z-index: 10;
}
.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 16px;
}
header .container {
  padding: 0 18px;
}
.main-nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.01em;
  position: relative;
  padding: 8px 0;
  transition: color 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
  color: #21A4C3;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #21A4C3;
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 28px;
  border: none;
  padding: 11px 32px;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(33,164,195,0.11);
  transition: background 0.2s, box-shadow 0.2s, color 0.2s, transform 0.18s;
  letter-spacing: 0.03em;
  margin-left: 24px;
}
.btn-primary:hover, .btn-primary:focus {
  background: #19a1da;
  color: #fff;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 12px 32px rgba(33,164,195,0.14);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 2.5px solid #21A4C3;
  color: #21A4C3;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 28px;
  padding: 11px 28px;
  cursor: pointer;
  margin-top: 18px;
  margin-bottom: 6px;
  transition: background 0.2s, color 0.2s, border 0.2s, transform 0.13s;
}
.btn-secondary:hover,.btn-secondary:focus {
  background: #21A4C3;
  color: #fff;
  border-color: #21A4C3;
  transform: scale(1.02);
}

/* HERO */
.hero {
  margin-bottom: 60px;
  background: #154C7C;
  color: #fff;
  padding: 64px 0 56px 0;
}
.hero .container { padding: 0 18px; }
.hero h1 {
  color: #fff;
  text-shadow: 0 4px 32px rgba(33,164,195,0.16);
  font-size: 2.25rem;
}
.hero .subheadline {
  color: #F7B801;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.15rem;
  margin-bottom: 30px;
  font-weight: 600;
}
.hero .btn-primary {
  background: #F05945;
  color: #fff;
  box-shadow: 0 10px 30px rgba(240,89,69,0.14);
}
.hero .btn-primary:hover, .hero .btn-primary:focus {
  background: #D0472B;
  color: #fff;
}

/* SECTION LAYOUTS */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  align-items: stretch;
}
.feature-grid li {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 14px rgba(21,76,124,0.10);
  padding: 28px 20px 24px 20px;
  flex: 1 1 260px;
  min-width: 230px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  transition: box-shadow 0.18s, transform 0.2s, background 0.14s;
  margin-bottom: 20px;
  border-left: 6px solid #21A4C3;
}
.feature-grid li:hover, .feature-grid li:focus-within {
  background: #21A4C311;
  box-shadow: 0 8px 28px rgba(33,164,195,0.11), 0 1.5px 8px #19a1da55;
  transform: translateY(-4px) scale(1.03);
}
.feature-grid img {
  width: 38px;
  height: 38px;
  margin-bottom: 10px;
}

.service-list {
  margin: 14px 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.service-list li {
  font-size: 1.07rem;
  background: #F6F8FA;
  color: #17395D;
  border-radius: 10px;
  padding: 14px 20px;
  box-shadow: 0 1.5px 5px rgba(21,76,124,0.04);
  transition: background 0.18s, color 0.21s;
}
.service-list li strong {
  color: #154C7C;
}
.service-list li:hover {
  background: #21A4C318;
  color: #21A4C3;
}

.value-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 12px;
  margin-bottom: 12px;
}
.value-list li {
  background: #21A4C3;
  color: #fff;
  border-radius: 20px;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 13px 26px;
  box-shadow: 0 1.5px 8px #154C7C18;
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.value-list li:not(:last-child) {
  margin-right: 10px;
}

.contact-info {
  margin: 8px 0 18px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: #102235;
  font-size: 1rem;
}
.contact-info a {
  color: #21A4C3;
  font-weight: bold;
}

.text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.text-section p, .text-section li {
  font-size: 1.05rem;
  color: #26517A;
  line-height: 1.7;
}
.text-section h2 {
  color: #154C7C;
  margin: 19px 0 8px 0;
  font-size: 1.32rem;
}
.text-section ul {
  margin: 10px 0;
  padding-left: 18px;
  list-style: disc;
  color: #17395D;
}
.text-section ul li {
  margin-bottom: 5px;
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

/* FLEX SPACING & ALIGNMENT */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 3px 14px #21A4C333;
  display: flex;
  flex-direction: column;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 3px 18px rgba(33,164,195,0.09);
  margin-bottom: 22px;
  border-left: 5px solid #F05945;
  position: relative;
  transition: box-shadow 0.17s, transform 0.18s;
}
.testimonial-card p {
  color: #233C56;
  font-size: 1.08rem;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  line-height: 1.7;
  font-style: italic;
  margin: 0;
}
.testimonial-author {
  font-size: 1rem;
  font-weight: 700;
  color: #21A4C3;
  margin-left: 12px;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 7px 24px #F0594533, 0 1.5px 8px #154C7C25;
  transform: scale(1.02);
}

/* FOOTER & NAV */
footer {
  background: #154C7C;
  color: #fff;
  padding: 30px 0 0 0;
}
.footer-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0 18px 18px 18px;
}
.footer-logo img {
  width: 54px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-nav a {
  color: #F6F8FA;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  transition: color 0.2s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #21A4C3;
}
.footer-contact p, .footer-contact a {
  color: #fff;
  font-size: 1rem;
  margin: 0;
}
.footer-contact a { font-weight: 700; }

/* NAVIGATION: MOBILE BURGER MENU */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 28px;
  right: 22px;
  z-index: 1001;
  background: #154C7C;
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 2.2rem;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px #154C7C33;
  transition: background 0.18s, color 0.18s;
  cursor: pointer;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #21A4C3;
  color: #fff;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #154C7C;
  color: #fff;
  z-index: 2000;
  transform: translateX(100%);
  transition: transform 0.36s cubic-bezier(0.63,0.01,0.29,1.12);
  box-shadow: 0 0 18px #154C7C44;
  padding: 0 0 0 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: transparent;
  color: #fff;
  font-size: 2.4rem;
  border: none;
  margin: 18px 24px 0 0;
  cursor: pointer;
  transition: color 0.18s;
  z-index: 2;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  color: #21A4C3;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 40px 32px;
  width: 100%;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.3rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  padding: 16px 0;
  border-radius: 7px;
  transition: background 0.18s, color 0.18s;
  text-align: left;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  background: #21A4C3;
  color: #fff;
}

/* Hide main nav and show burger on mobile */
@media (max-width: 1023px) {
  .main-nav, .btn-primary {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (max-width: 900px) {
  .footer-flex {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}
@media (max-width: 768px) {
  .header-flex {
    flex-direction: row;
    align-items: center;
    gap: 8px;
  }
  .feature-grid {
    flex-direction: column;
  }
  .footer-flex {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }
  .section, .hero {
    padding: 26px 7px;
    margin-bottom: 40px;
  }
  .content-wrapper {
    gap: 20px;
  }
  .hero {
    padding: 52px 0 38px 0;
  }
}

@media (max-width: 610px) {
  .feature-grid li {
    min-width: unset;
    padding: 17px 9px 13px 12px;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
  }
  .footer-logo img {
    width: 40px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.45rem;
  }
  h2 {
    font-size: 1.07rem;
  }
  .btn-primary,
  .btn-secondary {
    font-size: 0.97rem;
    padding: 10px 18px;
  }
  .footer-contact,
  .footer-contact p {
    font-size: 0.93rem;
  }
  .mobile-menu-toggle {
    font-size: 2rem;
    width: 40px;
    height: 40px;
    top: 12px;
    right: 10px;
  }
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section { flex-direction: column; }
}

/* SPACING FOR LAYOUT CARDS */
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 11px;
}
.section, .content-wrapper, .testimonial-card, .feature-grid {
  margin-bottom: 20px;
}

/* ANIMATION MICRO-INTERACTIONS */
.btn-primary, .btn-secondary, .feature-grid li, .testimonial-card, .service-list li {
  transition: box-shadow .16s, color .14s, background .13s, border .16s, transform .15s;
}

/* FORM ELEMENTS (placeholder for when added) */
input, select, textarea, button {
  font-family: inherit;
  font-size: 1rem;
  outline: none;
  border-radius: 6px;
  border: 1px solid #B6DEED;
  padding: 10px 14px;
  margin-bottom: 12px;
  box-sizing: border-box;
  transition: border 0.2s, box-shadow 0.18s;
}
input:focus, textarea:focus, select:focus {
  border-color: #21A4C3;
  box-shadow: 0 2px 7px #21A4C333;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: #fff;
  color: #154C7C;
  box-shadow: 0 -2px 14px #154C7C22;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
  z-index: 2100;
  padding: 20px 12px 18px 12px;
  font-size: 1rem;
  border-top: 3px solid #21A4C3;
  transition: transform 0.33s cubic-bezier(0.63,0.01,0.29,1.12), opacity 0.18s;
}
.cookie-banner.hide {
  transform: translateY(100%);
  opacity: 0;
}
.cookie-banner p {
  flex: 2 1 320px;
  margin: 0;
  color: #154C7C;
  font-size: 1rem;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
}
.cookie-banner .cookie-btns {
  display: flex;
  gap: 13px;
  flex-wrap: wrap;
}
.cookie-banner button {
  border: none;
  border-radius: 7px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  outline: none;
  box-shadow: 0 2px 7px #21A4C326;
  transition: background 0.2s, color 0.15s, transform 0.11s;
  padding: 9px 22px;
}
.cookie-banner .accept {
  background: #21A4C3;
  color: #fff;
}
.cookie-banner .accept:hover,
.cookie-banner .accept:focus {
  background: #154C7C;
}
.cookie-banner .reject {
  background: #fff;
  color: #154C7C;
  border: 2px solid #21A4C3;
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: #F05945;
  color: #fff;
  border-color: #F05945;
}
.cookie-banner .settings {
  background: #F6F8FA;
  color: #21A4C3;
  border: 2px solid #21A4C3;
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: #21A4C3;
  color: #fff;
}

/* COOKIE SETTINGS MODAL */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(16,34,53,0.26);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: all;
  transition: opacity 0.18s;
}
.cookie-modal-overlay.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 6px 32px #21A4C344;
  padding: 32px 26px;
  max-width: 380px;
  width: 88vw;
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 3710;
}
.cookie-modal h3 {
  margin-bottom: 7px;
  color: #154C7C;
  font-size: 1.29rem;
}
.cookie-modal .category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 0;
  border-bottom: 1px solid #21A4C326;
}
.cookie-modal .category:last-child {
  border-bottom: none;
}
.cookie-modal label {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  color: #154C7C;
}
.cookie-modal input[type="checkbox"] {
  width: 22px;
  height: 22px;
  accent-color: #21A4C3;
  margin-right: 7px;
}
.cookie-modal input[disabled] {
  accent-color: #ccc;
}
.cookie-modal .modal-btns {
  margin-top: 11px;
  display: flex;
  gap: 14px;
  justify-content: flex-end;
}
.cookie-modal .modal-btns button {
  padding: 10px 19px;
  font-size: 1rem;
  border-radius: 8px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
}
.cookie-modal .save {
  background: #21A4C3;
  color: #fff;
  border: none;
}
.cookie-modal .save:hover, .cookie-modal .save:focus {
  background: #154C7C;
}
.cookie-modal .cancel {
  background: #F6F8FA;
  color: #154C7C;
  border: 1.7px solid #21A4C3;
}
.cookie-modal .cancel:hover, .cookie-modal .cancel:focus {
  background: #eaeaea;
}
@media (max-width: 600px) {
  .cookie-modal {
    padding: 19px 8px;
    max-width: 96vw;
  }
}

/* SCROLLBAR STYLES FOR VIBRANT APPEAL */
::-webkit-scrollbar {
  width: 8px;
  background: #EAF6FB;
}
::-webkit-scrollbar-thumb {
  background: #21A4C3;
  border-radius: 7px;
}
::-webkit-scrollbar-thumb:hover {
  background: #154C7C;
}

/* SELECTION COLOR */
::selection {
  background: #21A4C3;
  color: #fff;
}

/* A11y: Focus States */
a:focus, button:focus, input:focus, textarea:focus, .btn-primary:focus, .btn-secondary:focus {
  outline: 2.5px solid #F05945;
  outline-offset: 2px;
}

/* UTILITIES FOR VIBRANT_EFFECTS */
.vibrant-border {
  border-left: 5px solid #21A4C3;
}

/* LOADING/TRANSITION PLACEHOLDER (for future) */
@keyframes slideInRight {
  from { transform: translateX(100%); opacity: 0; } to { transform: translateX(0); opacity: 1; }
}
@keyframes fadeInUp {
  from { transform: translateY(60px); opacity: 0; } to { transform: translateY(0); opacity: 1; }
}

/* EXTRAS: VIBRANT ENERGETIC DECORATIONS - ELECTRIC HIGHLIGHTS */
.card:before, .feature-grid li:before {
  content: '';
  display: block;
  width: 0;
  height: 0;
}

/* RESPONSIVE TYPOGRAPHY SCALE */
@media (max-width: 400px) {
  body { font-size: 15px; }
  h1 { font-size: 1.12rem; }
}
