/* ==================================================  
   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 {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
  background: #F5F7FA;
}

*, *:before, *:after {
  box-sizing: inherit;
}

body {
  line-height: 1.6;
  color: #204B63;
  background: linear-gradient(110deg, #FFFFFF, #F4BE5F 320%);
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}
a {
  color: #204B63;
  text-decoration: none;
  transition: color 0.18s cubic-bezier(0.28,0.84,0.42,1);
}
a:hover, a:focus {
  color: #F4BE5F;
}

ul, ol {
  margin-left: 1.5em;
  padding-left: 0.75em;
}

/* ==================================================  
   Typography
   ================================================== */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,600|Open+Sans:400,600,700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Arial', sans-serif;
  font-weight: 700;
  letter-spacing: -0.5px;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
  color: #204B63;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.35rem;
  margin-bottom: 16px;
}
h4, h5, h6 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

p, li, blockquote, cite {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  color: #254861;
}
p {
  margin-bottom: 16px;
}
.subheadline {
  font-size: 1.25rem;
  font-weight: 500;
  color: #204B63;
  margin-bottom: 24px;
  font-family: 'Open Sans', Arial, sans-serif;
}
strong {
  font-weight: 700;
}
blockquote {
  font-style: italic;
  border-left: 4px solid #F4BE5F;
  padding-left: 16px;
  color: #1C3470;
  background: #FFFFFF;
  margin-bottom: 10px;
}
cite {
  font-size: 1rem;
  color: #204B63;
  display: block;
  margin-top: 8px;
}

/* ==================================================  
   Layout Containers
   ================================================== */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(32,75,99,0.06), 0 1.5px 4px rgba(244,190,95,0.08);
  margin-bottom: 60px;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.text-section {
  background: none;
  box-shadow: none;
  border-radius: 0;
  padding: 0;
  margin-bottom: 0;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 3px 10px rgba(32, 75, 99, 0.07);
  margin-bottom: 20px;
  padding: 24px 20px;
  flex: 1 1 320px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.22s cubic-bezier(.35,1.3,.68,1);
}
.card:hover {
  box-shadow: 0 6px 24px rgba(32, 75, 99, 0.17), 0 1.5px 4px rgba(244,190,95,0.14);
  z-index: 2;
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 24px;
  border-radius: 18px;
  background: #FFF8EF;
  box-shadow: 0 2px 8px rgba(32,75,99,0.07);
  margin-bottom: 20px;
  transition: box-shadow 0.2s;
  border-left: 4px solid #F4BE5F;
}
.testimonial-card blockquote {
  color: #223447;
  background: none;
  border-left: none;
  margin-bottom: 6px;
  font-size: 1.1rem;
}
.testimonial-card cite {
  color: #204B63;
  font-style: normal;
}
.testimonial-card:hover {
  box-shadow: 0 3px 16px rgba(32,75,99,0.13);
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
  justify-content: flex-start;
}
.feature-grid > div {
  background: #FFFFFF;
  box-shadow: 0 2px 7px rgba(32,75,99,0.09);
  border-radius: 16px;
  padding: 26px 20px;
  flex: 1 1 280px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  min-width: 220px;
  max-width: 340px;
  transition: box-shadow 0.18s cubic-bezier(.31,.95,.5,1.1);
}
.feature-grid > div:hover {
  box-shadow: 0 8px 32px rgba(244,190,95,0.17);
  transform: translateY(-2px) scale(1.03);
}
.feature-grid img {
  width: 38px;
  height: 38px;
  margin-bottom: 10px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.faq-list h2 {
  margin-bottom: 18px;
}
.faq-list article {
  background: #F9FCFF;
  border-radius: 12px;
  padding: 20px 18px;
  margin-bottom: 10px;
  box-shadow: 0 1px 6px rgba(32,75,99,0.05);
}
.faq-list h3 {
  margin-bottom: 7px;
  font-size: 1.1rem;
}

.cta-banner {
  background: linear-gradient(95deg, #204B63 68%, #F4BE5F 170%);
  color: #fff;
  text-align: center;
  border-radius: 16px;
  padding: 36px 22px;
  box-shadow: 0 2px 14px rgba(244,190,95,0.11);
  margin-bottom: 20px;
}
.cta-banner h2, .cta-banner h3, .cta-banner p {
  color: #fff;
}

/* ==================================================  
   Header & Navigation
   ================================================== */
header {
  width: 100%;
  background: #204B63;
  color: #fff;
  padding-top: 20px;
  padding-bottom: 20px;
  box-shadow: 0 2px 16px rgba(32,75,99,0.09);
  position: relative;
  z-index: 1002;
}
header .container {
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: space-between;
}
.logo img {
  height: 44px;
  width: auto;
  display: block;
}
.main-nav {
  display: flex;
  gap: 22px;
  align-items: center;
}
.main-nav a {
  color: #fff;
  font-size: 1.06rem;
  font-family: 'Montserrat', Arial, sans-serif;
  transition: color 0.18s;
  padding: 6px 10px;
  border-radius: 9px;
}
.main-nav a:hover, .main-nav a:focus {
  background: #F4BE5F;
  color: #204B63;
}
.btn-primary {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  background: linear-gradient(95deg, #F4BE5F 58%, #FFE0A1 158%);
  color: #204B63;
  padding: 13px 33px;
  border: none;
  border-radius: 30px;
  font-size: 1rem;
  cursor: pointer;
  margin-left: 12px;
  box-shadow: 0 2px 8px rgba(244,190,95,0.14);
  transition: background 0.18s, color 0.2s, transform 0.14s;
  outline: none;
}
.btn-primary:hover, .btn-primary:focus {
  background: linear-gradient(95deg, #204B63 68%, #F4BE5F 158%);
  color: #fff;
  transform: translateY(-2px) scale(1.04);
}

.mobile-menu-toggle {
  display: none;
  background: #F4BE5F;
  color: #204B63;
  font-size: 2rem;
  border: none;
  border-radius: 7px;
  padding: 7px 17px;
  margin-left: 16px;
  cursor: pointer;
  transition: background 0.17s, color 0.14s;
  z-index: 1102;
}

.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #ffe0a1;
  color: #204B63;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #204B63;
  box-shadow: 0 12px 60px rgba(32,75,99,0.20);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  transform: translateX(-100%);
  transition: transform 0.39s cubic-bezier(.36,1.2,.56,1.04);
  opacity: 0.98;
  padding: 0 !important;
  overflow-y: auto;
}
.mobile-menu.open {
  transform: translateX(0);
  transition: transform 0.39s cubic-bezier(.36,1.2,.56,1.04);
}
.mobile-menu-close {
  position: absolute;
  top: 22px;
  right: 28px;
  font-size: 2rem;
  background: transparent;
  border: none;
  color: #fff;
  z-index: 2101;
  cursor: pointer;
  padding: 7px 12px;
  border-radius: 7px;
  transition: background 0.16s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #F4BE5F;
  color: #204B63;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  padding: 90px 40px 40px 35px;
  width: 100%;
}
.mobile-nav a {
  color: #FFF;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.2rem;
  border-radius: 22px;
  padding: 16px 8px 14px 15px;
  margin-bottom: 8px;
  transition: background 0.19s, color 0.16s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F4BE5F;
  color: #204B63;
}

/* ==================================================  
   Footer
   ================================================== */
footer {
  background: #204B63;
  color: #fff;
  padding: 38px 0 18px 0;
  box-shadow: 0 -2px 10px rgba(32,75,99,0.07);
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-logo img {
  height: 38px;
  margin-bottom: 12px;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
footer nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  margin-bottom: 0;
  text-decoration: none;
  transition: color 0.15s;
}
footer nav a:hover, footer nav a:focus {
  color: #F4BE5F;
  text-decoration: underline;
}
.footer-contact p {
  font-size: 1rem;
  color: #FFF;
  line-height: 1.7;
}

/* ==================================================  
   Buttons & Interactives
   ================================================== */
button, .btn-primary {
  transition: all 0.19s cubic-bezier(.45,1.13,.48,1.09); 
}
button:focus, .btn-primary:focus {
  outline: 3px solid #F4BE5F;
  outline-offset: 1px;
}

/* ==================================================  
   Forms, Inputs (if present in extended design)
   ================================================== */
input, textarea, select {
  font-family: 'Open Sans', Arial, sans-serif;
  background: #fff;
  border: 1.5px solid #C0D2E5;
  border-radius: 7px;
  padding: 13px 14px;
  margin-bottom: 20px;
  font-size: 1rem;
  color: #204B63;
  box-shadow: 0 1px 2.5px rgba(32,75,99,0.07);
  transition: border 0.17s;
}
input:focus, textarea:focus, select:focus {
  border: 1.5px solid #F4BE5F;
  outline: none;
}

/* ==================================================  
   Miscellaneous & Utility Classes
   ================================================== */
.mt-0 {margin-top:0!important;}
.mt-1 {margin-top:8px;}
.mt-2 {margin-top:16px;}
.mt-3 {margin-top:24px;}
.mt-4 {margin-top:32px;}
.mb-0 {margin-bottom:0!important;}
.mb-1 {margin-bottom:8px;}
.mb-2 {margin-bottom:16px;}
.mb-3 {margin-bottom:24px;}
.mb-4 {margin-bottom:32px;}
.hidden {display: none !important;}
.text-center {text-align: center;}

/* CTA spacement */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* ==================================================  
   Cookie Consent Banner & Modal
   ================================================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #fffdfa;
  box-shadow: 0 -2px 22px 3px rgba(244,190,95,0.22);
  border-top: 2px solid #F4BE5F;
  z-index: 4000;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  padding: 22px 20px 18px 20px;
  font-size: 1rem;
  font-family: 'Open Sans', Arial, sans-serif;
  transition: transform 0.38s cubic-bezier(.47,1.14,.48,1.04);
  
  animation: cookie-slide-in 0.88s cubic-bezier(.45,1.13,.48,1.09);
}
@keyframes cookie-slide-in {
  from {transform: translateY(110%); opacity: 0;}
  to {transform: translateY(0); opacity: 1;}
}

.cookie-banner p {
  color: #204B63;
  margin-bottom: 0;
  font-size: 1rem;
}
.cookie-buttons {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border-radius: 22px;
  padding: 10px 26px;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  background: #204B63;
  color: #fff;
  margin-right: 6px;
  transition: background 0.17s, color 0.13s;
}
.cookie-btn.accept {
  background: #F4BE5F;
  color: #204B63;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #ffe0a1;
}
.cookie-btn.reject {
  background: #DEEAF3;
  color: #204B63;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #c4c9cc;
  color: #1C3470;
}
.cookie-btn.settings {
  background: #fff;
  color: #204B63;
  border: 1.1px solid #DEEAF3;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #F4BE5F;
  color: #204B63;
}

/* Cookie modal (preferences) */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(32,75,99,0.36);
  z-index: 4100;
  display: none;
  align-items: center;
  justify-content: center;
  transition: background 0.28s;
  animation: modal-overlay-in 0.4s;
}
@keyframes modal-overlay-in {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal-overlay.open {
  display: flex;
}
.cookie-modal {
  background: #fffdfa;
  border-radius: 18px;
  box-shadow: 0 8px 38px rgba(32,75,99,0.19);
  max-width: 420px;
  width: 93vw;
  padding: 34px 32px 25px 32px;
  position: relative;
  text-align: left;
  animation: modal-in 0.39s cubic-bezier(.5,1.3,.67,1.02);
}
@keyframes modal-in {
  from { transform: translateY(60px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-modal h2 {
  font-size: 1.32rem;
  color: #204B63;
  margin-bottom: 15px;
}
.cookie-modal .cookie-category {
  margin-bottom: 15px;
}
.cookie-modal .cookie-category label {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 1rem;
  color: #254861;
}

.cookie-modal input[type='checkbox'] {
  width: 20px; height: 20px;
  accent-color: #F4BE5F;
}
.cookie-modal .cookie-modal-close {
  position: absolute; top: 18px; right: 22px;
  background: transparent; border: none;
  color: #204B63;
  font-size: 1.6rem;
  padding: 3px 8px;
  border-radius: 7px;
  cursor: pointer;
  transition: background 0.13s;
}
.cookie-modal .cookie-modal-close:hover, .cookie-modal .cookie-modal-close:focus {
  background: #F4BE5F;
  color: #fff;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 14px;
  margin-top: 22px;
}
.cookie-category-desc {
  font-size: 0.98rem;
  color: #586D8F;
  margin-bottom: 7px;
  margin-top: 1px;
  padding-left: 29px;
}

/* ==================================================  
   RESPONSIVE DESIGN
   ================================================== */
@media (max-width: 1000px) {
  .container {
    max-width: 97vw;
    padding-left: 12px; padding-right: 12px;
  }
  .footer-contact {margin-top: 20px;}
  .main-nav { gap: 12px; }
}
@media (max-width: 900px) {
  .feature-grid { gap: 16px; }
  .card-container, .content-grid { gap: 14px; }
  .content-wrapper {padding: 30px 9px;}
  .section {padding: 30px 8px;}
  .testimonial-card {padding: 14px 10px;}
}
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.3rem; }
  h3 { font-size: 1.04rem; }
  .feature-grid > div {
    min-width: 180px;
    max-width: 100%;
    flex: 1 1 95vw;
  }
  .feature-grid {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }
  .footer-logo img { height: 32px; }
  .container, .content-wrapper {
    padding-left: 7px; padding-right: 7px;
  }
  .content-wrapper { padding: 18px 0px; }
  section, .section { padding: 20px 2px; }
  .cta-banner { padding: 20px 8px; }
  .testimonial-card {padding: 12px 5px;}
}

/* Header Responsive */
@media (max-width: 880px) {
  .main-nav, .btn-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  header .container {
    gap: 7px;
  }
}
@media (max-width: 840px) {
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}
@media (max-width: 420px) {
  .cookie-banner, .cookie-modal {
    padding-left: 6px;
    padding-right: 6px;
  }
  .cookie-modal {
    padding: 21px 5px 14px 10px;
  }
}

/* Text-image section mobile layout */
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
  }
}

/* For wide screens */
@media(min-width: 1300px) {
  .container { max-width: 1220px; }
}

/* ==================================================  
  Gradient-Modern AESTHETIC EXTRAS
   ================================================== */
hr {
  border: none;
  border-top: 1.5px solid #DEEAF3;
  margin: 32px 0;
}

/* Subtle animated highlight on buttons */
.btn-primary {
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  display: block;
  position: absolute;
  left: -80px;
  top: 0;
  width: 32px;
  height: 100%;
  background: linear-gradient(120deg,#fff1d0 40%,#F4BE5F 80%);
  opacity: 0.4;
  transform: skewX(-22deg);
  transition: left 0.4s;
  z-index: 1;
}
.btn-primary:hover::before, .btn-primary:focus::before {
  left: calc(100% + 10px);
}
.btn-primary span { position: relative; z-index: 2; }

/* Cards hover scale, ghost borders */
.card:hover, .feature-grid > div:hover {
  border: 1.7px solid #F4BE5F;
}

/* Custom scrollbar for modern feel */
body, .mobile-menu, .cookie-modal-overlay {
  scrollbar-color: #F4BE5F #DEEAF3;
  scrollbar-width: thin;
}
body::-webkit-scrollbar {
  width: 10px;
}
body::-webkit-scrollbar-thumb {
  background: #F4BE5F;
  border-radius: 7px;
}
body::-webkit-scrollbar-track {
  background: #F6F6FA;
}

/* Utlity for visually hidden labels (for a11y) */
.visually-hidden { position: absolute !important; height: 1px; width: 1px; overflow: hidden; clip: rect(1px,1px,1px,1px); white-space: nowrap; }

/* ===================== End of CSS File ==================*/
