/* 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 {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  background: #F5F5F5;
  color: #212B36;
  min-height: 100vh;
  line-height: 1.7;
  -webkit-tap-highlight-color: transparent;
}
img {
  max-width: 100%;
  height: auto;
}
a {
  color: #FFA733;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #21376D;
  text-decoration: underline;
}
ul, ol {
  margin-left: 1.25em;
  margin-bottom: 1.5em;
}
li {
  margin-bottom: 0.5em;
}
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  box-sizing: border-box;
}

/***** Typography *****/
h1, .display, .main-title {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-size: 2.4rem;
  color: #21376D;
  margin-bottom: 20px;
  letter-spacing: -1px;
  line-height: 1.15;
  text-shadow: 0 4px 14px rgba(33,55,109, 0.08), 0 1.5px 0 #FFA733;
}
h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  color: #21376D;
  margin-bottom: 16px;
  line-height: 1.2;
  text-shadow: 0 2px 12px rgba(255,167,51, 0.06);
}
h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.22rem;
  color: #FFA733;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}
h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #21376D;
  font-weight: 600;
}
p, ul, ol, li, span {
  font-size: 1rem;
  color: #263144;
  letter-spacing: 0.01em;
}
.main-title {
  color: #21376D;
}
strong, b {
  font-weight: 700;
}

/***** Header *****/
header {
  background: #fff;
  box-shadow: 0 6px 20px rgba(33,55,109,0.07);
  border-bottom: 4px solid #FFA733;
  position: relative;
  z-index: 100;
}
.header-wrapper {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.header-wrapper img {
  height: 50px;
  width: auto;
  display: block;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #21376D;
  padding: 8px 12px;
  border-radius: 44px;
  font-size: 1rem;
  transition: background 0.18s, color 0.18s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #FFA733;
  color: #fff;
  outline: none;
}

.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  border-radius: 44px;
  padding: 14px 32px;
  font-size: 1.12rem;
  cursor: pointer;
  border: none;
  outline: none;
  box-shadow: 0 2px 8px rgba(255,167,51,0.15);
  transition: background 0.2s, color 0.2s, box-shadow 0.25s;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-left: 10px;
}
.btn-primary {
  background: #FFA733;
  color: #21376D;
  border: 2px solid #FFA733;
}
.btn-primary:hover, .btn-primary:focus {
  background: #ff7300;
  color: #fff;
  box-shadow: 0 8px 28px rgba(255,167,51,0.16);
}
.btn-secondary {
  background: #21376D;
  color: #fff;
  border: 2px solid #21376D;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #FFA733;
  color: #21376D;
  border-color: #FFA733;
}

/* Burger Mobile Menu */
.mobile-menu-toggle {
  display: none;
  background: #FFA733;
  color: #fff;
  font-size: 2rem;
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 16px;
  top: 14px;
  z-index: 120;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(33,55,109,0.07);
  transition: background 0.2s;
}
.mobile-menu-toggle:hover {
  background: #21376D;
  color: #FFA733;
}
.mobile-menu {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(33, 55, 109, 0.96);
  z-index: 9999;
  display: none;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 24px 0 24px 0;
  box-shadow: 0 4px 24px rgba(33, 55, 109, 0.25);
  transition: transform 0.4s cubic-bezier(0.77,0,0.175,1);
  transform: translateX(-100%);
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
}
.mobile-menu-close {
  background: #FFA733;
  color: #21376D;
  border: none;
  font-size: 2.1rem;
  border-radius: 50%;
  padding: 6px 16px 6px 16px;
  margin: 0 0 18px 24px;
  cursor: pointer;
  z-index: 10001;
  align-self: flex-start;
  box-shadow: 0 1.5px 8px rgba(255,167,51,0.19);
  transition: background 0.2s;
}
.mobile-menu-close:hover {
  background: #fff;
  color: #21376D;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-left: 32px;
  margin-top: 20px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #FFA733;
  font-size: 1.4rem;
  background: none;
  padding: 12px 4px;
  border-radius: 8px;
  transition: color 0.16s, background 0.16s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #FFA733;
  color: #21376D;
}

/***** Main Content *****/
.main {
  flex: 1 0 auto;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  justify-content: flex-start;
  margin-top: 10px;
  margin-bottom: 10px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 3px 24px rgba(255,167,51,0.07);
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 20px rgba(255,167,51,0.11);
  margin-bottom: 20px;
  padding: 30px 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 0.24s, box-shadow 0.21s;
}
.card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 16px 36px rgba(33,55,109, 0.13);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
/***** Feature/Service Grid Styles *****/
.feature-grid, .feature-list, .service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.feature, .service {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 7px 32px rgba(255,167,51,0.07);
  padding: 28px 20px;
  flex: 1 1 240px;
  min-width: 210px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  transition: box-shadow 0.24s, transform 0.17s;
  margin-bottom: 20px;
  border-top: 5px solid #FFA733;
}
.feature img, .service img {
  width: 48px;
  height: 48px;
  margin-bottom: 6px;
  filter: drop-shadow(2px 5px 8px rgba(255,167,51,0.06));
}
.feature:hover, .service:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 18px 36px rgba(33,55,109,0.18);
}

/***** CTAs, Confirmation, Ask, etc. *****/
.cta-section, .confirmation-section, .ask-question, .next-steps {
  background: #21376D;
  color: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 28px rgba(33,55,109,0.13);
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 32px 20px;
  align-items: center;
  text-align: center;
}
.cta-section h2, .confirmation-section h1 {
  color: #FFA733;
  font-size: 2rem;
  letter-spacing: 1.2px;
  margin-bottom: 10px;
}
.cta-section p, .confirmation-section p, .ask-question p, .next-steps p {
  color: #fff;
  font-size: 1.08rem;
  line-height: 1.65;
}
.next-steps strong {
  color: #FFA733;
}

/***** Testimonial Styles *****/
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 20px;
  margin-bottom: 8px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px 30px;
  background: #fff;
  border-radius: 18px;
  margin-bottom: 20px;
  box-shadow: 0 5px 28px rgba(33,55,109,0.10);
  min-width: 240px;
  max-width: 340px;
  flex: 1 1 280px;
  border-left: 5px solid #FFA733;
  transition: box-shadow 0.22s, transform 0.18s;
}
.testimonial-card:hover {
  transform: scale(1.04);
  box-shadow: 0 18px 44px rgba(255,167,51,0.22);
}
.testimonial-card p {
  font-size: 1rem;
  color: #222;
  font-weight: 600;
  padding-bottom: 2px;
  text-align: center;
}
.testimonial-card span {
  font-size: 0.96rem;
  color: #21376D;
  font-weight: 700;
}

/***** Contact Section *****/
.contact-section {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 18px rgba(33,55,109,0.10);
  padding: 36px 20px;
  margin-bottom: 20px;
}
.contact-info {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-top: 18px;
  margin-bottom: 4px;
}
.info-block {
  background: #F5F5F5;
  border-radius: 14px;
  box-shadow: 0 3px 14px rgba(33,55,109,0.07);
  padding: 18px 16px;
  flex: 1 1 180px;
}
.info-block img {
  width: 36px;
  height: 36px;
  margin-bottom: 6px;
}
.info-block h2 {
  font-size: 1.13rem;
  margin-bottom: 2px;
  color: #21376D;
}
.info-block p, .info-block a {
  font-size: 0.97rem;
  color: #21376D;
  word-break: break-all;
}
.info-block a {
  color: #FFA733;
}

/***** FAQ Styles *****/
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 22px 0 12px 0;
}
.faq-item {
  background: #fff;
  border-radius: 12px;
  padding: 24px 22px;
  box-shadow: 0 4px 17px rgba(255,167,51,0.06);
  margin-bottom: 8px;
}
.faq-item h2 {
  font-size: 1.17rem;
  color: #21376D;
  margin-bottom: 5px;
}
.faq-item p {
  color: #263144;
  font-size: 1rem;
}
.ask-question {
  margin-top: 24px;
}
.ask-question a {
  color: #FFA733;
  font-weight: 700;
  text-decoration: underline;
}

/***** Footer *****/
footer {
  background: #21376D;
  color: #fff;
  margin-top: 60px;
  padding-top: 30px;
}
.footer-wrapper {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 36px;
  justify-content: space-between;
  padding-bottom: 22px;
  border-bottom: 1px solid #FFA733;
}
.footer-wrapper img {
  height: 54px;
  width: auto;
  margin-bottom: 10px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-nav a {
  color: #FFA733;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.17s;
}
.footer-nav a:hover {
  color: #fff;
}
.contact-brief {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact-brief p, .contact-brief a {
  color: #fff;
  font-size: 0.97rem;
  display: flex;
  align-items: center;
  gap: 7px;
}
.contact-brief img {
  width: 20px;
  height: 20px;
}

.copyright {
  text-align: center;
  color: #fff;
  font-size: 0.93rem;
  padding: 10px 0 14px 0;
}

/***** Utility & Effects *****/
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.card-container, .content-grid, .feature-grid, .feature-list, .service-list {
  gap: 24px;
}
.card, .testimonial-card, .feature, .service, .faq-item {
  margin-bottom: 20px;
}

/***** Cookie Consent Banner *****/
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  background: #21376D;
  color: #fff;
  z-index: 11000;
  box-shadow: 0 -3px 28px rgba(33,55,109,0.14);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  padding: 24px 22px;
  transition: transform 0.38s cubic-bezier(0.77,0,0.175,1);
  font-size: 1rem;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 10px;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 10px 22px;
  border-radius: 24px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  outline: none;
  margin-right: 10px;
  transition: background 0.18s, color 0.14s;
}
.cookie-banner .accept {
  background: #FFA733;
  color: #21376D;
}
.cookie-banner .accept:hover {
  background: #ff7300;
  color: #fff;
}
.cookie-banner .reject {
  background: #fff;
  color: #21376D;
  border: 2px solid #FFA733;
}
.cookie-banner .reject:hover {
  background: #FFA733;
  color: #fff;
}
.cookie-banner .settings {
  background: transparent;
  color: #FFA733;
  border: 2px solid #FFA733;
}
.cookie-banner .settings:hover {
  background: #FFA733;
  color: #21376D;
}
/* Cookie Modal */
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  width: 92vw;
  max-width: 410px;
  background: #fff;
  color: #21376D;
  border-radius: 18px;
  z-index: 11200;
  box-shadow: 0 12px 68px rgba(33,55,109,0.19);
  transform: translate(-50%, -50%) scale(0.97);
  padding: 28px 22px 22px 22px;
  display: none;
  flex-direction: column;
  gap: 18px;
  animation: fadeInCookie 0.38s;
}
.cookie-modal.active {
  display: flex;
}
@keyframes fadeInCookie {
  0% { opacity:0; transform: translate(-50%, -45%) scale(0.94); }
  100% { opacity:1; transform: translate(-50%, -50%) scale(1); }
}
.cookie-modal h2 {
  font-size: 1.25rem;
  color: #FFA733;
  margin-bottom: 8px;
}
.cookie-modal .modal-close {
  align-self: flex-end;
  background: #FFA733;
  color: #21376D;
  border: none;
  border-radius: 16px;
  font-size: 1.2rem;
  padding: 0 12px;
  cursor: pointer;
  margin-top: -12px;
  margin-bottom: 2px;
  transition: background 0.2s;
}
.cookie-modal .modal-close:hover {
  background: #21376D;
  color: #FFF;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  padding: 7px 0;
}
.cookie-category input[type="checkbox"] {
  width: 22px;
  height: 22px;
  accent-color: #FFA733;
}
.cookie-category label {
  font-weight: 600;
  color: #21376D;
  margin-right: 5px;
}
.cookie-category .always {
  color: #FFA733;
}
.cookie-modal .save {
  width: 100%;
  background: #21376D;
  color: #fff;
  border-radius: 24px;
  border: none;
  padding: 11px 0;
  font-size: 1.08rem;
  font-weight: 700;
  transition: background 0.18s;
  margin-top: 18px;
}
.cookie-modal .save:hover {
  background: #FFA733;
  color: #21376D;
}

/***** Responsive Styles *****/
@media (max-width: 1024px) {
  .container {
    max-width: 92vw;
  }
  .feature, .service {
    max-width: 260px;
  }
}
@media (max-width: 900px) {
  .footer-wrapper {
    flex-direction: column;
    gap: 22px;
    align-items: flex-start;
  }
  .feature, .service {
    max-width: 340px;
    min-width: 170px;
  }
}
@media (max-width: 768px) {
  h1, .main-title, .display {
    font-size: 1.62rem;
  }
  h2 {
    font-size: 1.23rem;
  }
  header, .section, .container, .confirmation-section, .cta-section, .faq-item, .card {
    padding-left: 8px;
    padding-right: 8px;
  }
  .header-wrapper {
    flex-direction: row;
    gap: 8px;
    padding: 14px 4px 16px 4px;
    justify-content: space-between;
  }
  .main-nav {
    display: none;
  }
  .btn-primary {
    margin-left: 0;
  }

  .mobile-menu-toggle {
    display: flex;
  }
  .mobile-menu {
    display: none;
  }
  .feature-grid, .feature-list, .service-list, .content-grid, .contact-info {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .feature, .service, .faq-item, .testimonial-card, .card {
    min-width: 90vw;
    max-width: 100%;
    flex: 1 1 100%;
  }
  .testimonial-slider {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .contact-info {
    gap: 10px;
  }
  .section {
    padding: 30px 7px;
    margin-bottom: 44px;
  }
  .cookie-modal {
    max-width: 99vw;
    padding: 18px 3vw 16px 3vw;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(1);
  }
}
@media (max-width: 520px) {
  h1, .main-title, .display {
    font-size: 1.01rem;
    line-height: 1.18;
  }
  h2 {
    font-size: 0.99rem;
  }
  .header-wrapper img {
    height: 40px;
  }
  .feature, .service, .faq-item, .testimonial-card, .card {
    padding: 17px 6px;
    min-width: 96vw;
    max-width: 99vw;
    border-radius: 9px;
  }
  .bootstrap-container {
    padding: 0 2px;
  }
  .cookie-banner {
    padding: 20px 3vw 14px 3vw;
    font-size: 0.98rem;
  }
}

/***** Animations *****/
.btn-primary, .btn-secondary, .faq-item, .feature, .service, .testimonial-card, .cta-section, .confirmation-section {
  transition: background 0.19s, color 0.16s, box-shadow 0.19s, transform 0.2s;
}

/***** Z-Index Utility ******/
.mobile-menu.open {
  z-index: 9999;
}
.mobile-menu-toggle {
  z-index: 12000;
}
.cookie-banner, .cookie-modal {
  z-index: 11000;
}

/***** Miscellaneous ******/
::-webkit-scrollbar {
  width: 9px;
  background: #eee;
}
::-webkit-scrollbar-thumb {
  background: #FFA733;
  border-radius: 8px;
}
::-webkit-scrollbar-thumb:hover {
  background: #21376D;
}

/***** Utility for spacing on last element *****/
.card-container > :last-child, .feature-grid > :last-child, .service-list > :last-child,
.content-grid > :last-child, .testimonial-slider > :last-child {
  margin-bottom: 0 !important;
}

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