/* -----------------------------------------------------------
   CSS Reset and Normalize
----------------------------------------------------------- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; }
body {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  background: #fff;
  color: #1C1C1E;
  min-height: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
  line-height: 1.6;
}
img { max-width: 100%; display: block; height: auto; border-radius: 8px; }
a { color: #1C3144; text-decoration: none; transition: color 0.2s; }
a:focus, a:hover { color: #FFD95A; outline: none; }
button, .primary-cta, .secondary-link {
  font-family: 'Montserrat', 'Roboto', Arial, Helvetica, sans-serif;
  cursor: pointer;
  border: none;
  background: none;
  outline: none;
  transition: all 0.2s cubic-bezier(.4,0,.2,1);
}

/* -----------------------------------------------------------
   Typography
----------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #1C3144;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
h1 {
  font-size: 2.375rem; /* 38px */
  line-height: 1.15;
  margin-bottom: 24px;
}
h2 {
  font-size: 1.75rem; /* 28px */
  margin-bottom: 20px;
}
h3 {
  font-size: 1.25rem; /* 20px */
  margin-bottom: 14px;
  font-weight: 600;
}
h4, h5, h6 { font-size: 1rem; margin-bottom: 8px; }
p, li, ul, ol {
  color: #232325;
  font-size: 1rem;
  margin-bottom: 8px;
}
strong { color: #1C3144; font-weight: 700; }

/* Typography hierarchy */
.text-section h2 { margin-top: 32px; }
.text-section ul { margin-left: 24px; margin-bottom: 16px; }
.text-section li { margin-bottom: 6px; }

/* -----------------------------------------------------------
   Global Spacing and Container
----------------------------------------------------------- */
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  box-shadow: 0 2px 14px rgba(30,30,35,0.06);
  border-radius: 14px;
  margin-bottom: 20px;
  position: relative;
  padding: 32px 24px;
  min-width: 240px;
  flex: 1 1 300px;
  transition: transform 0.16s, box-shadow 0.16s;
}
.card:hover {
  box-shadow: 0 4px 20px rgba(30,30,35,0.13);
  transform: translateY(-2px) scale(1.014);
}

.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;
  padding: 20px;
  border-radius: 12px;
  background: #f7f7fa;
  box-shadow: 0 2px 10px rgba(28,49,68,0.05);
  margin-bottom: 20px;
  border-left: 4px solid #1C3144;
  font-size: 1.05rem;
  color: #111;
}
.testimonial-card strong,
.testimonial-card span {
  color: #1C3144;
  font-weight: 700;
  margin-left: auto;
  font-size: 1rem;
}
.testimonial-card.rating-summary {
  color: #fff;
  border-left: 4px solid #FFD95A;
}
.testimonial-card.rating-summary h2 strong { color: #FFD95A; }
.testimonial-card ul {
  list-style: disc inside;
  color: #fff;
}
.testimonials-preview .testimonial-card {
  background: #f7f7fa;
}

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

.features-grid,
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.features-grid > div,
.service-list > div {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(60,60,80,0.09);
  padding: 24px 18px;
  flex: 1 1 240px;
  min-width: 220px;
  max-width: 310px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  transition: box-shadow 0.18s, transform 0.17s;
}
.features-grid > div:hover,
.service-list > div:hover {
  box-shadow: 0 6px 20px rgba(60,60,80,0.17);
  transform: translateY(-2px) scale(1.01);
}
.features-grid img,
.service-list img {
  width: 48px;height: 48px;object-fit: contain;margin-bottom: 8px;filter: grayscale(1) contrast(1.08);
}
.features-grid h3, .service-list h3 {
  font-size: 1.15rem;
}

ul, ol { padding-left: 26px; }
li { margin-bottom: 12px; }

/* -----------------------------------------------------------
   Header and Navigation
----------------------------------------------------------- */
header {
  width: 100%;
  background: #fff;
  border-bottom: 1px solid #eee;
  padding: 0 0 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  position: sticky;
  top: 0;
  z-index: 1010;
}
header > a > img {
  height: 44px;
  margin-top: 8px;
  margin-left: 16px;
}
.main-nav {
  display: flex;
  gap: 28px;
  align-items: center;
  margin-left: 36px;
  flex-wrap: wrap;
}
.main-nav a {
  color: #1C3144;
  font-weight: 500; 
  font-family:'Montserrat',sans-serif;
  font-size: 1rem;
  letter-spacing: -0.01em;
  padding: 8px 2px;
  border-radius: 3px;
  position: relative;
  transition: color 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
  color: #FFD95A;
  background: transparent;
}
.primary-cta {
  display: inline-block;
  background: #1C3144;
  color: #fff;
  font-family: 'Montserrat',sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 10px 26px;
  margin-left: 22px;
  border-radius: 6px;
  letter-spacing: 0.01em;
  box-shadow: 0 2px 10px rgba(60,60,80,0.06);
  border: 1.5px solid #1C3144;
  transition: background 0.21s, color 0.21s, box-shadow 0.21s;
}
.primary-cta:hover, .primary-cta:focus {
  background: #FFD95A;
  color: #1C3144;
  border-color: #FFD95A;
  box-shadow: 0 5px 18px rgba(28,49,68,0.09);
}
.secondary-link {
  display: inline-block;
  color: #1C3144;
  background: transparent;
  border-bottom: 2px solid #FFD95A;
  font-family: 'Montserrat',sans-serif;
  font-size: 1rem;
  font-weight: 500;
  padding: 8px 3px;
  border-radius: 2px;
  margin-left: 4px;
  margin-bottom: 8px;
  transition: border-color 0.2s, color 0.2s;
}
.secondary-link:hover, .secondary-link:focus {
  color: #FFD95A;
  border-color: #1C3144;
}

/* Burger (Mobile Menu) */
.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  background: none;
  color: #1C3144;
  border: none;
  border-radius: 6px;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  margin-left: 18px;
  z-index: 2002;
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  max-width: 370px;
  height: 100vh;
  background: #fff;
  box-shadow: -3px 0 20px rgba(28,49,68,0.13);
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(.4,0,.2,1);
  z-index: 2010;
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  color: #222;
  font-size: 2rem;
  border: none;
  margin: 8px 20px 0 0;
  align-self: flex-end;
  cursor: pointer;
  transition: color 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #FFD95A;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  margin-top: 16px;
  padding-left: 26px;
}
.mobile-nav a {
  color: #232325;
  font-size: 1.1rem;
  padding: 9px 0;
  font-family: 'Montserrat',sans-serif;
  font-weight: 500;
  border-radius: 2px;
  transition: background 0.2s, color 0.2s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #e7e9ee;
  color: #1C3144;
}

/* Hide main nav and show burger on mobile */
@media (max-width: 991px) {
  .main-nav,
  .primary-cta {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 992px) {
  .mobile-menu { display: none !important; }
}

/* -----------------------------------------------------------
   Hero Section
----------------------------------------------------------- */
.hero-section {
  background: #1C3144;
  color: #fff;
  padding: 72px 0 60px 0;
  min-height: 340px;
  box-shadow: 0 2px 20px rgba(28,49,68,0.10);
  margin-bottom: 50px;
}
.hero-section h1 {
  color: #fff;
  font-size: 2.35rem;
  margin-bottom: 14px;
}
.hero-section p {
  color: #FFD95A;
  font-size: 1.25rem;
  line-height: 1.5;
  margin-bottom: 30px;
}
.hero-section .primary-cta {
  background: #FFD95A;
  color: #1C3144;
  border-color: #FFD95A;
}
.hero-section .primary-cta:hover, .hero-section .primary-cta:focus {
  background: #1C3144;
  color: #FFD95A;
  border-color: #fff;
}

/* -----------------------------------------------------------
   Sections, Cards, Lists
----------------------------------------------------------- */
.info-card, .faq-list, .text-section {
  background: #f6f6f9;
  border-radius: 12px;
  padding: 28px 24px;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(30,49,68,0.04);
}
.info-card h2, .faq-list h2, .text-section h2 { margin-bottom: 14px; }
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-bottom: 16px;
}
.service-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(30,49,68,0.05);
  padding: 22px 16px;
  min-width: 230px;
  flex: 1 1 250px;
  margin-bottom: 20px;
}
.service-item h2 {
  font-size: 1.17rem;
  margin-bottom: 4px;
  font-weight: 600;
  display: flex;
  align-items: flex-end;
  gap: 12px;
}
.service-item .price {
  color: #FFD95A;
  font-size: 1rem;
  font-family: 'Montserrat',sans-serif;
}
.service-item p {
  color: #595959;
  font-size: 1rem;
}

/**** FAQ ****/
.faq-list h2 { font-size: 1.32rem; margin-bottom: 18px; }
.faq-list ul {
  padding-left: 12px;
  margin-bottom: 18px;
  color: #1C3144;
}
.faq-list li {
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid #dedede;
  list-style: none;
}
.faq-list li:last-child {
  border-bottom: 0; margin-bottom: 0; padding-bottom: 8px;
}
.faq-list h3 {
  font-size: 1.05rem;
  color: #1C3144;
  margin-bottom: 8px;
  font-weight: 700;
}
.faq-list p {
  color: #2a2a2d;
  margin-bottom: 6px;
}
.faq-list .contact-cta {
  background: none;
  box-shadow: none;
  padding: 0;
  margin-top: 8px;
}
.faq-list .contact-cta a {
  color: #FFD95A;
  font-weight: 700;
  border-bottom: 1.5px solid #FFD95A;
  padding-bottom: 2px;
  transition: color 0.17s, border-bottom 0.17s;
}
.faq-list .contact-cta a:hover {
  color: #1C3144;
  border-bottom: 1.5px solid #1C3144;
}

/**** Contact Details Section ****/
.contact-details ul,
.info-card ul {
  list-style: none;
  padding-left: 0;
}
.contact-details li,
.info-card li {
  color: #2a2a2d;
  margin-bottom: 7px;
}
.contact-details a {
  color: #1C3144;
  font-weight: 500;
  border-bottom: 1px dotted #FFD95A;
  padding-bottom: 1px;
  transition: color 0.17s;
}
.contact-details a:hover {
  color: #FFD95A;
}

/**** Thank You Section ****/
.thank-you-section {
  background: #f3f5f8;
  padding: 70px 0;
  text-align: center;
}
.thank-you-section h1 {
  margin-bottom: 24px;
}
.thank-you-section .text-section {
  max-width: 600px;
  margin: 0 auto;
  background: none;
  box-shadow: none;
  padding: 0;
}
.thank-you-section .primary-cta {
  margin-top: 24px;
}

/* -----------------------------------------------------------
   Footer
----------------------------------------------------------- */
footer {
  background: #232325;
  color: #fff;
  padding: 42px 0 22px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  margin-top: 20px;
}
footer img {
  height: 40px;
  margin-bottom: 12px;
}
.footer-nav {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 14px;
}
.footer-nav a {
  color: #ddd;
  font-size: 1rem;
  padding: 5px 4px;
  border-radius: 3px;
  transition: color 0.18s, background 0.18s;
}
.footer-nav a:focus, .footer-nav a:hover {
  color: #FFD95A;
  background: #1C3144;
}
footer p {
  color: #bbb;
  font-size: 0.98rem;
  text-align: center;
}

/* -----------------------------------------------------------
   Cookie Consent Banner
----------------------------------------------------------- */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  background: #232325;
  color: #faf8fa;
  z-index: 3050;
  padding: 20px 16px 15px 16px;
  box-shadow: 0 -4px 22px rgba(28,49,68,0.17);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  justify-content: space-between;
  font-size: 1rem;
  animation: cookie-slide-up 0.46s cubic-bezier(.4,0,.2,1);
}
@keyframes cookie-slide-up {
  from { transform: translateY(120%); }
  to { transform: translateY(0); }
}
.cookie-banner__text { flex: 3 1 300px; color: #faf8fa; }
.cookie-banner__actions {
  flex: 1 1 180px;
  display: flex;
  gap: 10px 18px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
}
.cookie-banner button {
  background: #fff;
  color: #1C3144;
  border-radius: 5px;
  border: 1.3px solid #d6d7d9;
  padding: 7px 16px;
  font-size: 1rem;
  font-family: 'Montserrat',sans-serif;
  font-weight: 600;
  box-shadow: 0 1px 5px rgba(30,49,68,0.06);
  cursor: pointer;
  margin: 0;
  transition: background 0.17s, color 0.17s, border 0.13s;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #FFD95A;
  color: #1C3144;
  border-color: #FFD95A;
}

/**** Cookie Modal ****/
.cookie-modal {
  position: fixed;
  left: 50%;
  bottom: 50px;
  transform: translateX(-50%) scale(0.89);
  min-width: 320px;
  max-width: 360px;
  background: #fff;
  color: #111;
  box-shadow: 0 8px 50px rgba(28,49,68,0.17);
  border-radius: 12px;
  z-index: 4000;
  padding: 34px 24px 20px 24px;
  display: none;
  flex-direction: column;
  gap: 22px;
  animation: cookie-modal-fadein 0.21s cubic-bezier(.4,0,.2,1);
}
.cookie-modal.open { display: flex; }
@keyframes cookie-modal-fadein {
  from { opacity: 0; transform: translateX(-50%) scale(0.8); }
  to { opacity: 1; transform: translateX(-50%) scale(0.89); }
}
.cookie-modal h3 {
  color: #1C3144;
  font-size: 1.13rem;
  margin-bottom: 8px;
}
.cookie-modal ul {padding-left: 0;}
.cookie-modal li {
  color: #232325;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.cookie-modal label {
  font-size: 1rem;
  color: #1C3144;
  font-weight: 500;
  cursor: pointer;
}
.cookie-modal input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #FFD95A;
  border-radius: 4px;
  margin-right: 7px;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 18px;
}
.cookie-modal button {
  padding: 7px 16px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 1rem;
  font-family: 'Montserrat',sans-serif;
  background: #1C3144;
  color: #fff;
  border: none;
  transition: background 0.16s, color 0.16s;
}
.cookie-modal button.secondary {
  background: #FFD95A;
  color: #1C3144;
  border: 1.3px solid #FFD95A;
}
.cookie-modal button:hover, .cookie-modal button:focus {
  background: #FFD95A;
  color: #1C3144;
}
.cookie-modal .essential {
  font-weight: 700;
  color: #bbb;
}

/* -----------------------------------------------------------
   Animations, Transitions
----------------------------------------------------------- */
section, .card, .testimonial-card, .features-grid > div, .service-list > div {
  transition: box-shadow 0.17s, transform 0.18s;
}

a, button, .primary-cta, .secondary-link {
  transition: color 0.18s, background 0.19s, border 0.13s, box-shadow 0.17s;
}

/* -----------------------------------------------------------
   Responsive Design (Mobile-first)
----------------------------------------------------------- */
@media (max-width: 768px) {
  .container {
    max-width: 96vw;
    padding-left: 6px; padding-right: 6px;
  }
  header { flex-direction: row; }
  .main-nav, .footer-nav {
    flex-direction: column;
    gap: 6px;
    align-items: flex-start;
  }
  .section, section { padding: 22px 5px; }
  .card, .features-grid > div, .service-list > div,
  .testimonial-card {
    min-width: 98vw;
    max-width: 98vw;
    padding: 22px 10px;
  }
  .features-grid, .service-list {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .content-grid {
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
  }
  .content-wrapper { gap: 14px; }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
    justify-content: flex-start;
  }
  .testimonial-card {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
  .footer-nav {
    gap: 9px;
  }
}

@media (max-width: 500px) {
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.13rem; }
  .hero-section { padding: 32px 0 22px 0; }
}

/* -----------------------------------------------------------
   Utilities
----------------------------------------------------------- */
.bg-dark { background: #232325 !important; color: #fff !important; }
.bg-light { background: #f6f6f9 !important; }
.text-accent { color: #FFD95A !important; }
.text-secondary { color: #767678 !important; }
.text-primary { color: #1C3144 !important; }

.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mt-32 { margin-top: 32px !important; }
.mb-32 { margin-bottom: 32px !important; }
.mb-16 { margin-bottom: 16px !important; }

/* END OF STYLE SHEET */