/* 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, menu, 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;
}
/* Set default box-sizing */
*, *::before, *::after { box-sizing: inherit; }

html {
  box-sizing: border-box;
  scroll-behavior: smooth;
  background: #EAEAEA;
  min-height: 100%;
}

body {
  font-family: 'Open Sans', Arial, sans-serif;
  color: #2B4162;
  background: linear-gradient(135deg, #EAEAEA 0%, #ffffff 100%);
  line-height: 1.6;
  font-size: 16px;
  min-height: 100vh;
}

img { max-width: 100%; display: block; }
a { color: #2B4162; text-decoration: none; transition: color 0.2s; }
a:hover, a:focus { color: #F7B32B; }

ul, ol {
  list-style: none;
  margin-left: 0;
}

strong { font-weight: 700; }

/* BRANDING FONTS */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #2B4162;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
h2 {
  font-size: 1.8rem;
  margin-bottom: 16px;
}
h3 { font-size: 1.2rem; }
.subtitle {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  color: #434b5e;
  font-size: 1.125rem;
  margin-bottom: 28px;
}

/* CONTAINER & LAYOUTS */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(43,65,98, 0.05);
}

.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card { margin-bottom: 20px; position: relative; background: #fff; border-radius: 16px; box-shadow: 0 4px 16px rgba(43,65,98,0.08); padding: 24px; transition: transform 0.2s, box-shadow 0.2s; }
.card:hover { transform: translateY(-5px) scale(1.02); box-shadow: 0 10px 32px rgba(43,65,98,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; }
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #F7FBFF;
  border-radius: 18px;
  box-shadow: 0 2px 6px rgba(43,65,98,0.07);
  margin-bottom: 20px;
  color: #222;
  font-size: 1rem;
}
.testimonial-card p {
  color: #222;
  margin-bottom: 10px;
}
.testimonial-card strong {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #2B4162;
  font-size: 1rem;
  font-weight: 700;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  padding: 18px 20px;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(43,65,98,0.06);
}

.text-section {
  font-size: 1rem;
  color: #333;
  margin-bottom: 12px;
  line-height: 1.7;
}

.tag {
  background: #F7B32B;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 10px;
  font-size: 0.95rem;
  margin-right: 9px;
  margin-bottom: 8px;
  display: inline-block;
}

/* HEADER & NAVIGATION */
header {
  width: 100%;
  background: linear-gradient(90deg, #F7B32B 0%, #2B4162 100%);
  box-shadow: 0 2px 8px rgba(43,65,98,0.08);
  position: relative;
  z-index: 99;
}
header nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}
header nav > a img {
  height: 38px;
  display: block;
}
header nav ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
}
header nav ul li a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #fff;
  padding: 7px 12px;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}
header nav ul li a:hover, header nav ul li a:focus {
  color: #F7B32B;
  background: #fff;
}
.cta-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  background: linear-gradient(90deg, #F7B32B 0%, #FFDD7A 100%);
  color: #2B4162;
  border: none;
  border-radius: 20px;
  padding: 12px 32px;
  font-size: 1.12rem;
  box-shadow: 0 2px 10px rgba(247,179,43,0.10);
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.18s;
  margin-left: 32px;
  display: inline-block;
  outline: none;
  text-align: center;
}
.cta-btn:hover, .cta-btn:focus {
  background: linear-gradient(90deg, #fdcb5b 0%, #F7B32B 100%);
  color: #fff;
  box-shadow: 0 6px 24px rgba(43,65,98,0.14);
}

/* MOBILE NAVIGATION */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 22px;
  right: 22px;
  z-index: 103;
  background: linear-gradient(90deg, #F7B32B 0%, #2B4162 100%);
  border: none;
  color: #fff;
  font-size: 2.2rem;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  box-shadow: 0 4px 12px rgba(43,65,98,0.09);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.17s, color 0.17s;
}
.mobile-menu-toggle:active, .mobile-menu-toggle:focus {
  background: #F7B32B;
  color: #2B4162;
}
@media (max-width: 990px) {
  .mobile-menu-toggle { display: flex; }
  header nav ul, header nav .cta-btn { display: none; }
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: linear-gradient(120deg, #EAEAEA 60%, #F7B32B 100%);
  transform: translateX(102vw);
  transition: transform 0.32s cubic-bezier(0.8,0,0.3,1);
  z-index: 1111;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 56px;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 22px;
  background: none;
  border: none;
  font-size: 2.1rem;
  color: #2B4162;
  font-family: 'Montserrat', Arial, sans-serif;
  z-index: 1120;
  cursor: pointer;
  transition: color 0.2s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  color: #F7B32B;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 100%;
  padding: 32px 24px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.2rem;
  color: #2B4162;
  background: #fff;
  border-radius: 13px;
  padding: 16px 18px;
  margin-bottom: 3px;
  box-shadow: 0 2px 9px rgba(43,65,98,0.09);
  transition: background 0.18s, color 0.18s;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  background: #F7B32B;
  color: #fff;
}

/* MAIN & SECTION */
main {
  width: 100%; /* allow for full width bg */
  padding-top: 36px;
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  gap: 36px;
}
section {
  margin-bottom: 60px;
  padding: 40px 0;
  background: transparent;
}

@media (max-width: 650px) {
  main { gap: 0; }
  section { padding: 28px 0; margin-bottom: 40px; }
  .section { padding: 28px 10px; }
}

/* FOOTER */
footer {
  width: 100%;
  padding: 0;
  background: linear-gradient(90deg, #2B4162 50%, #F7B32B 120%);
  color: #fff;
  margin-top: 90px;
  box-shadow: 0 -2px 6px rgba(43,65,98,0.03);
}
footer .container {
  padding: 0 20px;
}
footer .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 32px 0;
}
footer img {
  height: 36px;
  margin-bottom: 10px;
}
footer nav a {
  color: #fff;
  font-weight: 500;
  margin: 0 7px;
  transition: color 0.15s;
}
footer nav a:hover { color: #F7B32B; }
footer .social-links {
  display: flex;
  flex-direction: row;
  gap: 14px;
  margin-top: 12px;
}
footer .social-links img {
  width: 27px;
  height: 27px;
  filter: contrast(1.2) brightness(1.05) drop-shadow(0 2px 8px rgba(43,65,98,0.1));
}

/* BUTTONS & INTERACTIONS */
button, .cta-btn {
  transition: background 0.17s, box-shadow 0.17s, color 0.17s;
}
button:focus-visible, .cta-btn:focus-visible {
  outline: 2px solid #F7B32B;
  outline-offset: 2px;
}

/* Blog Tags */
.tag { margin-bottom: 10px; }

/* Utility Classes */
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.text-center { text-align: center; }

/* FORMS (for possible newsletter/forms) */
input, textarea, select {
  border-radius: 10px;
  border: 1px solid #EAEAEA;
  padding: 12px 14px;
  font-size: 1rem;
  margin-bottom: 20px;
  font-family: inherit;
  width: 100%;
  background: #fff;
  transition: border 0.15s;
}
input:focus, textarea:focus, select:focus {
  border: 1.5px solid #F7B32B;
  outline: none;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  width: 100vw;
  background: linear-gradient(90deg,#2B4162 0%, #F7B32B 120%);
  color: #fff;
  box-shadow: 0 -2px 24px rgba(43,65,98,0.16);
  padding: 28px 16px 20px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  z-index: 1300;
  animation: slideUpCookie 0.7s cubic-bezier(.45,1.45,.7,.98);
}
@keyframes slideUpCookie {
  0% { transform: translateY(60px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner-text { font-size: 1rem; }
.cookie-banner-actions {
  display: flex;
  flex-direction: row;
  gap: 18px;
  margin-top: 6px;
}
.cookie-btn {
  padding: 10px 24px;
  font-size: 1.05rem;
  border: none;
  border-radius: 12px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.16s, color 0.16s, box-shadow 0.15s;
  box-shadow: 0 1px 7px rgba(43,65,98,0.08);
}
.cookie-btn.accept { background: #F7B32B; color: #fff; }
.cookie-btn.reject { background: #2B4162; color: #fff; }
.cookie-btn.settings { background: #fff; color: #2B4162; border: 1px solid #2B4162; }
.cookie-btn:hover, .cookie-btn:focus { box-shadow: 0 4px 18px rgba(43,65,98,0.13); opacity: 0.92; }

/* COOKIE MODAL */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(43,65,98,0.15);
  z-index: 1400;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInCookieModal 0.3s cubic-bezier(.45,1.45,.7,.98);
}
@keyframes fadeInCookieModal {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  color: #222;
  border-radius: 16px;
  max-width: 400px;
  width: 90vw;
  box-shadow: 0 2px 16px rgba(43,65,98,0.14);
  padding: 32px 22px 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  animation: popInCookieModal 0.25s cubic-bezier(.55, 1.6, .25, 1.05);
}
@keyframes popInCookieModal {
  0% { transform: scale(0.93); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
.cookie-modal-title {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.4rem;
  color: #2B4162;
  margin-bottom: 2px;
}
.cookie-category {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 11px;
  font-size: 1rem;
}
.cookie-toggle {
  width: 45px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  background: #EAEAEA;
  border-radius: 14px;
  cursor: pointer;
  position: relative;
  border: 1.5px solid #D5D5D5;
  transition: background 0.2s, border 0.2s;
}
.cookie-toggle input[type="checkbox"] {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-toggle-slider {
  position: absolute;
  left: 3px; top: 3px;
  width: 19px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  transition: left 0.19s;
  box-shadow: 0 1px 3px rgba(43,65,98,0.09);
}
.cookie-toggle input[type="checkbox"]:checked + .cookie-toggle-slider {
  left: 22px;
  background: #F7B32B;
}
.cookie-modal-btns {
  display: flex;
  flex-direction: row;
  gap: 12px;
  margin-top: 10px;
}
.cookie-modal-close {
  background: none;
  border: none;
  color: #2B4162;
  font-size: 1.8rem;
  cursor: pointer;
  position: absolute;
  top: 12px; right: 19px;
  line-height: 1;
}
.cookie-modal-close:focus, .cookie-modal-close:hover { color: #F7B32B; }

/* RESPONSIVE BREAKPOINTS */
@media (max-width:990px) {
  header nav > a img { height: 33px; }
  .cta-btn { margin-left: 6px; padding: 10px 18px; font-size: 1rem; }
  .container { padding-left: 12px; padding-right: 12px; }
  .content-wrapper { gap: 18px; }
}
@media (max-width: 768px) {
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.3rem; }
  .container { padding-left: 8px; padding-right: 8px; }
  .content-grid, .card-container, .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
  .testimonial-card { font-size: 0.98rem; }
  .section { margin-bottom: 36px; padding: 18px 5px; }
  footer .content-wrapper { padding: 19px 0 19px 0; }
}
@media (max-width: 480px) {
  .card, .feature-item {
    padding: 14px 8px;
    font-size: 0.99rem;
  }
  .section { border-radius: 10px; }
  .cta-btn { padding: 8px 16px; font-size: 0.93rem; }
  .testimonial-card {
    border-radius: 10px;
    padding: 12px 7px;
  }
}

/* Spacing for no-overlap between cards and sections */
.card, .testimonial-card, .feature-item, .text-section, .tag {
  margin-bottom: 20px;
}
.content-wrapper > *:not(:last-child) { margin-bottom: 20px; }

/* Z-index for superposed overlays/menus */
.mobile-menu, .mobile-menu-close, .mobile-menu-toggle { z-index: 1111; }
.cookie-banner, .cookie-modal-overlay, .cookie-modal { z-index: 1300; }
header { z-index: 1002; }

/* ANIMATIONS FOR BUTTONS & INTERACTIVES */
.cta-btn, .cookie-btn {
  transition: background 0.18s, color 0.18s, box-shadow 0.15s, transform 0.13s;
}
.cta-btn:active, .cookie-btn:active { transform: scale(0.97); }

/* Accessibility for hidden visually only */
.sr-only {
  border: 0 !important;
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  width: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
}

/* --- END OF STYLE.CSS --- */
