/* 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: inherit; vertical-align: baseline; box-sizing: border-box;
}
html {
  box-sizing: border-box;
  font-size: 16px;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  line-height: 1.6;
  background: #F4F7FA;
  color: #243B55;
  min-height: 100vh;
  font-family: 'Roboto', Arial, sans-serif;
  /* Creative touch: animated color blobs (artistic) */
  position: relative;
  overflow-x: hidden;
}

/* BRAND FONTS */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,600,500|Roboto:400,500,700&display=swap');
h1, h2, h3, h4, .logo, .cta, .primary {
  font-family: 'Montserrat', Arial, sans-serif;
}
h1 { font-size: 2.7rem; line-height: 1.16; letter-spacing: -1px; font-weight: 700; margin-bottom: 18px; }
h2 { font-size: 2rem; font-weight: 700; margin-bottom: 16px; }
h3 { font-size: 1.33rem; font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }
p, ul, ol, li, .contact-info, .testimonial-card span {
  font-family: 'Roboto', Arial, sans-serif; font-size: 1.08rem;
}
p { margin-bottom: 16px; }
ul, ol {
  margin-bottom: 24px; margin-left: 26px;
}
strong { font-weight: 700; }
a {
  color: #E8B04C;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  text-decoration: underline;
  color: #243B55;
}

/* CONTAINER AND LAYOUTS */
.container {
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper, .text-section {
  width: 100%;
  margin-bottom: 0;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 6px 28px rgba(36,59,85,0.08), 0px 1px 2px 0px rgba(36,59,85,0.03);
  padding: 32px 28px;
  transition: box-shadow 0.25s;
}
/* Add creative brush border effect (artistic) */
.content-wrapper {
  position: relative;
}
.content-wrapper:before {
  content: '';
  position: absolute;
  inset: -12px;
  border-radius: 30px;
  z-index: 0;
  pointer-events: none;
  box-shadow: 0 0 0 7px #E8B04C22, 0 2px 15px #F4B04C11;
}
.content-wrapper > * { position: relative; z-index: 1; }

/* FLEX PATTERNS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 18px rgba(36,59,85,0.07);
  margin-bottom: 20px;
  position: relative;
  flex: 1 1 260px;
  min-width: 240px;
  padding: 26px 22px;
  transition: box-shadow 0.22s, transform 0.18s;
}
.card:hover {
  box-shadow: 0 8px 32px rgba(36,59,85,0.17), 0 2px 15px #E8B04C22;
  transform: translateY(-4px) scale(1.012);
}
.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;
  background: #FFF7E4;
  box-shadow: 0 4px 18px rgba(36,59,85,0.07);
  border-radius: 20px;
  margin-bottom: 20px;
  padding: 20px 26px;
  color: #243B55;
  font-size: 1.17rem;
  min-height: 70px;
  position: relative;
  transition: box-shadow 0.28s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 24px #E8B04C33;
  background: #FFFAF2;
}
.testimonial-card span {
  color: #243B55;
  font-size: 1rem;
  font-weight: 500;
  margin-left: auto;
  opacity: 0.8;
  font-style: italic;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* HEADER & NAVIGATION */
header {
  background: #243B55;
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px #243B5520;
}
header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  height: 74px;
  gap: 0;
}
.logo img { height: 44px; }
nav {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: center;
  margin-left: 30px;
}
nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.02rem;
  letter-spacing: 0.7px;
  transition: color 0.2s;
  padding: 4px 2px;
  border-radius: 2px;
}
nav a:hover, nav a:focus {
  color: #E8B04C;
}
.cta.primary {
  background: #E8B04C;
  color: #243B55 !important;
  font-weight: bold;
  border: none;
  border-radius: 18px;
  padding: 10px 30px;
  font-size: 1.16rem;
  margin-left: 18px;
  box-shadow: 0 2px 16px #E8B04C40;
  cursor: pointer;
  transition: background 0.18s, color 0.16s, box-shadow 0.15s;
}
.cta.primary:hover {
  background: #ffd87a;
  color: #243B55;
  box-shadow: 0 4px 28px #E8B04C33;
}
.cta {
  background: #243B55;
  color: #E8B04C !important;
  border-radius: 16px;
  padding: 10px 24px;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.04rem;
  font-weight: 700;
  margin-top: 18px;
  display: inline-block;
  box-shadow: 0 2px 10px #243B5528;
  transition: background 0.19s, color 0.15s, box-shadow 0.13s;
}
.cta:hover {
  background: #E8B04C;
  color: #243B55 !important;
  box-shadow: 0 6px 24px #E8B04C20;
}
.button, button {
  font-family: 'Montserrat', Arial, sans-serif;
  border: none;
  border-radius: 14px;
  padding: 8px 24px;
  font-size: 1rem;
  background: #E8B04C;
  color: #243B55;
  font-weight: 700;
  cursor: pointer;
  margin: 0 6px 0 0;
  box-shadow: 0 2px 4px #243B5525;
  transition: background 0.18s, color 0.16s, box-shadow 0.13s;
}
.button:hover, button:hover, button:focus {
  background: #ffd87a;
  color: #243B55;
  box-shadow: 0 4px 14px #E8B04C22;
}

/* HAMBURGER MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  background: none;
  color: #E8B04C;
  font-size: 2.2rem;
  border: none;
  cursor: pointer;
  margin-left: 16px;
  z-index: 120;
  transition: color 0.18s;
  padding: 2px 6px 2px 6px;
}
.mobile-menu-toggle:hover {
  color: #ffd87a;
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 350px;
  max-width: 100vw;
  height: 100vh;
  background: #243B55;
  box-shadow: 8px 0 32px #243B5527;
  z-index: 9000;
  transform: translateX(-100%);
  transition: transform 0.36s cubic-bezier(0.6,0.18,0.46,1);
  flex-direction: column;
  padding: 30px 30px 24px 28px;
  gap: 24px;
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
  animation: slideInLeft 0.33s cubic-bezier(0.6,0.18,0.46,1);
}
@keyframes slideInLeft {
  from { transform: translateX(-100%); opacity:0; }
  to { transform: translateX(0); opacity:1; }
}
.mobile-menu-close {
  background: none;
  color: #E8B04C;
  font-size: 2.1rem;
  border-radius: 50%;
  border: none;
  width: 46px;
  height: 46px;
  align-self: flex-end;
  margin-bottom: 16px;
  cursor: pointer;
  transition: background 0.16s, color 0.2s;
}
.mobile-menu-close:hover {
  background: #E8B04C33;
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 24px;
  width: 100%;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.36rem;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 0;
  padding: 10px 5px;
  border-radius: 10px;
  transition: background 0.13s, color 0.18s;
}
.mobile-nav a:hover {
  background: #E8B04C;
  color: #243B55;
}
@media (max-width: 1020px) {
  header .container {
    padding-right: 8px;
    gap: 0;
  }
}
@media (max-width: 960px) {
  nav {
    gap: 12px;
    margin-left: 0;
  }
  .cta.primary { margin-left: 8px; }
}
@media (max-width: 900px) {
  nav, .cta.primary { display: none; }
  .mobile-menu-toggle { display: inline-block; }
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (max-width: 500px) {
  .mobile-menu {
    width: 100vw;
    padding: 23px 10px 18px 8px;
  }
  .mobile-nav a { font-size: 1.07rem; }
}

/* MAIN LAYOUT */
main {
  padding-top: 22px;
  padding-bottom: 30px;
  min-height: 65vh;
}
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  width: 100%;
}
@media (max-width: 850px) {
  .content-wrapper, .text-section {
    padding: 22px 8px;
  }
}
@media (max-width: 600px) {
  .content-wrapper, .text-section {
    padding: 12px 0px;
    border-radius: 12px;
  }
  section {
    padding: 24px 0px;
    margin-bottom: 48px;
  }
}

/* HERO & SPECIAL TYPOGRAPHY */
.tagline {
  color: #E8B04C;
  font-size: 1.24rem;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 18px;
  letter-spacing: 0.5px;
  font-style: italic;
  text-shadow: 0 1px 3px #243B5541;
}

/* LISTS, ICONS, UL, LI */
ul li, ol li {
  margin-bottom: 9px;
  position: relative;
  padding-left: 31px;
  min-height: 28px;
  display: flex;
  align-items: center;
  gap: 0.4em;
}
ul li img, .contact-info span img {
  height: 23px;
  margin-right: 10px;
  vertical-align: middle;
}

/* CARDS & GRIDS */
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10px 4px;
}

/* FOOTER */
footer {
  background: #243B55;
  color: #fff;
  width: 100%;
  padding: 20px 0;
  margin-top: 40px;
  font-size: 0.99rem;
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}
footer .container > a img {
  height: 44px;
  margin-right: 16px;
}
footer nav {
  flex-direction: row;
  gap: 8px;
  margin-left: 0;
  padding: 0 6px 0 6px;
}
footer nav a {
  color: #E8B04C;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 0.97rem;
  margin: 0 3px;
  padding: 2px 1px;
}
footer nav a:hover,
footer nav a:focus {
  color: #fff;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: #fff;
  font-size: 0.98rem;
}
.contact-info span {
  display: flex; align-items: center; gap: 9px;
}

@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  footer nav {
    margin: 10px 0 0 0;
  }
}
@media (max-width: 600px) {
  .footer .container {
    padding-right: 0;
    padding-left: 0;
  }
}

/* RESPONSIVE FLEX CONTROLS */
@media (max-width: 768px) {
  .text-image-section, .content-grid, .card-container, .feature-item {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 20px !important;
  }
  .testimonial-card {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 12px !important;
    font-size: 1.02rem !important;
    padding: 16px 12px;
  }
}

/* SPACING FOR CONSISTENCY */
main > section, .section, .content-grid > *, .card-container > *, .testimonial-card, .card {
  margin-bottom: 20px;
}

/* SELECTED UX EFFECTS */
.content-wrapper:hover {
  box-shadow: 0 8px 22px #E8B04C28, 0 1px 2px #243B5522;
}
.card:after {
  content: '';
  display: block;
  position: absolute;
  left: -8px; top: -8px;
  width: 40px; height: 40px;
  background: #E8B04C33;
  z-index: 0;
  border-radius: 50%;
  filter: blur(18px);
  opacity: 0.39;
  pointer-events: none;
}
.card:hover:after {
  opacity: 0.60;
  filter: blur(10px);
}

/* FORM ELEMENTS */
input, textarea {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.04rem;
  border: 2px solid #E8B04C;
  border-radius: 12px;
  padding: 10px 13px;
  outline: none;
  margin-bottom: 18px;
  background: #fff;
  color: #243B55;
  transition: border 0.15s;
  width: 100%;
}
input:focus, textarea:focus {
  border-color: #243B55;
}

/* COOKIE CONSENT BANNER & MODAL */
.cookie-consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #243B55;
  color: #fff;
  z-index: 10002;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px 16px 16px;
  gap: 32px;
  box-shadow: 0 -3px 16px #243B5526;
  font-size: 1.08rem;
  animation: cookieBannerFade 0.55s;
  flex-wrap: wrap;
}
@keyframes cookieBannerFade {
  from { opacity:0; transform:translateY(60px); }
  to { opacity:1; transform:translateY(0); }
}
.cookie-buttons {
  display: flex;
  flex-direction: row;
  gap: 12px;
}
.cookie-consent-banner button {
  min-width: 110px;
  border-radius: 22px;
  margin: 0 6px 0 0;
}
.cookie-consent-banner .cookie-settings-btn {
  background: none;
  color: #E8B04C;
  border: 2px solid #E8B04C;
  font-weight: bold;
  transition: background 0.13s, color 0.19s;
}
.cookie-consent-banner .cookie-settings-btn:hover {
  background: #ffd87a;
  color: #243B55;
}

/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed;
  z-index: 10010;
  left: 0; right: 0; top:0; bottom:0;
  background: #243B55cc;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cookie-modal {
  background: #fff;
  color: #243B55;
  border-radius: 22px;
  max-width: 420px;
  width: 96vw;
  padding: 32px 22px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  box-shadow: 0 8px 36px #243B551c, 0 1px 2px #E8B04C15;
  animation: cookieModalShow 0.31s;
}
@keyframes cookieModalShow {
  from { opacity:0; transform: scale(0.88); }
  to { opacity:1; transform: scale(1); }
}
.cookie-modal-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.cookie-modal-title {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.44rem;
  font-weight: 700;
  color: #E8B04C;
}
.cookie-modal-close {
  background: none;
  border: none;
  color: #E8B04C;
  font-size: 2rem;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  cursor: pointer;
  transition: background 0.12s, color 0.14s;
}
.cookie-modal-close:hover {
  background: #E8B04C23;
  color: #243B55;
}
.cookie-categories {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  justify-content: space-between;
}
.cookie-category .toggle-switch {
  width: 48px; height: 26px;
  display: inline-block;
  position: relative;
}
.toggle-switch input {
  opacity: 0;
  width: 0; height: 0;
}
.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0;
  right: 0; bottom: 0;
  background: #E8B04C;
  border-radius: 19px;
  transition: background 0.22s;
}
.toggle-slider:before {
  position: absolute;
  content: '';
  height: 19px;
  width: 19px;
  left: 5px;
  bottom: 3.5px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.22s;
}
.toggle-switch input:checked + .toggle-slider:before {
  transform: translateX(16px);
}
.toggle-switch input:checked + .toggle-slider {
  background: #243B55;
}
.cookie-category.essential .toggle-switch {
  pointer-events: none;
  opacity: 0.5;
}
.cookie-modal-footer {
  margin-top: 15px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  justify-content: flex-end;
}
.cookie-modal-footer button {
  border-radius: 17px;
  min-width: 110px;
}

@media (max-width: 700px) {
  .cookie-consent-banner {
    flex-direction: column;
    gap: 18px;
    padding: 18px 7px 13px 7px;
    font-size: 0.99rem;
  }
  .cookie-modal {
    padding: 16px 5px 16px 9px;
    max-width: 98vw;
  }
}

/* ===============
  ARTISTIC DESIGN ELEMENTS
  (Brush lines, playful accents)
=============== */
/* Subtle brush underlines under h1/h2 */
h1, h2 {
  position: relative;
  display: inline-block;
  z-index: 2;
}
h1:after, h2:after {
  content: '';
  display: block;
  position: absolute;
  left: 9px;
  bottom: -7px;
  width: 78%;
  height: 13px;
  background: #E8B04C;
  opacity: 0.28;
  border-radius: 42px 4px 44px 24px;
  z-index: -1;
}
h2:after {
  height: 9px; opacity: 0.21; width: 58%; left: 4px; }

/* Decorative colorful blobs */
@media (min-width: 950px) {
  body:before, body:after {
    content: '';
    position: fixed;
    z-index: 0;
    pointer-events: none;
    filter: blur(80px);
    opacity: 0.12;
  }
  body:before {
    background: #E8B04C;
    width: 280px; height: 260px;
    left: -60px; top: 140px;
  }
  body:after {
    background: #243B55;
    width: 340px; height: 180px;
    right: -80px; bottom: 30vh;
  }
}

/* HIGH CONTRAST FOR TESTIMONIALS */
.testimonial-card {
  background: #fffbed;
  color: #243B55;
  box-shadow: 0 6px 16px #243B55q1E !important;
}

/* ACCESSIBILITY FOCUS */
:focus-visible {
  outline: 3px dashed #E8B04C;
  outline-offset: 2px;
}

/* TRANSITIONS & MICRO-INTERACTIONS */
nav a, .cta, .cta.primary, .card, .content-wrapper, .testimonial-card, .button, button {
  transition: box-shadow 0.22s, background 0.19s, color 0.19s, transform 0.24s, border 0.16s;
}

/* SCROLLBAR STYLING (modern browsers) */
::-webkit-scrollbar {
  width: 11px;
  background: #E8B04C22;
  border-radius: 10px;
}
::-webkit-scrollbar-thumb {
  background: #E8B04C99;
  border-radius: 10px;
}

/* Hide scrollbar track in unwanted places on mobile */
@media(max-width: 700px){
  ::-webkit-scrollbar{ display:none; }
}

/* UTILITIES & SMALL ADJUSTMENTS */
.text-section {
  background: transparent;
  box-shadow: none;
  border: none;
}

/* END OF CSS */
