/* RESET & NORMALIZE (MOBILE-FIRST) */
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: #fff;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  min-height: 100vh;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  color: #222;
  background: #fff;
  line-height: 1.6;
}
img, picture, video {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: #204060;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #4B8FA6;
}
ul, ol {
  list-style: none;
  padding-left: 0;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
  background: none;
  border: none;
  outline: none;
  color: inherit;
}
button {
  cursor: pointer;
}

/** BRAND COLORS (VIBRANT ENERGETIC STYLE) **/
:root {
  --primary: #204060;
  --secondary: #4B8FA6;
  --accent: #F4ECE5;
  --electric1: #007bff;
  --electric2: #ffbe0b;
  --electric3: #f72585;
  --electric4: #00dca6;
  --electric5: #ff5d1a;
}

/** TYPOGRAPHY **/
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--primary);
  line-height: 1.1;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 16px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}
h4 {
  font-size: 1.1rem;
}
p, li {
  font-size: 1rem;
  color: #222;
}
strong, b {
  color: var(--electric1);
  font-weight: 700;
}

/** LAYOUT CONTAINER & SECTION SPACING **/
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding-left: 18px;
  padding-right: 18px;
  box-sizing: border-box;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* Spacing for footer, header */
footer .container, header .container {
  padding-top: 18px;
  padding-bottom: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}


/** FLEXBOX PATTERN MANDATORY ALIGNMENTS **/
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  flex: 1 1 300px;
  background: var(--accent);
  border-radius: 18px;
  box-shadow: 0 2px 10px rgba(32,64,96,0.07);
  padding: 32px;
  min-width: 260px;
  max-width: 420px;
  transition: box-shadow 0.25s;
}
.card:hover {
  box-shadow: 0 4px 16px var(--electric4), 0 2px 28px 6px rgba(0,123,255,0.08);
  z-index: 3;
}
.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;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 1px 9px 0 rgba(32,64,96,0.10);
  margin-bottom: 20px;
  color: #212432;
  min-width: 250px;
  max-width: 430px;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.18s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 24px var(--electric2), 0 2px 36px 10px rgba(247,37,133,0.08);
  transform: translateY(-4px) scale(1.03);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  min-width: 210px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 1px 8px rgba(32,64,96,0.09);
  padding: 20px 18px 18px 18px;
  transition: box-shadow 0.21s;
  margin-bottom: 22px;
}
.feature-item img {
  width: 38px;
  height: 38px;
}
.feature-item:hover {
  box-shadow: 0 8px 22px var(--electric5), 0 1.5px 40px 6px rgba(75,143,166,0.15);
}

/* Service Card Styles */
.service-cards, .service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.service-card {
  background: var(--accent);
  border-radius: 18px;
  box-shadow: 0 2px 8px rgba(75,143,166,0.09);
  color: var(--primary);
  padding: 28px 22px;
  flex: 1 1 280px;
  min-width: 220px;
  max-width: 360px;
  margin-bottom: 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.22s, background 0.17s;
  border-left: 4px solid var(--electric3);
  position: relative;
}
.service-card h2, .service-card h3 {
  color: var(--electric3);
  margin-bottom: 10px;
}
.service-price {
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--electric1);
}
.service-card:hover {
  box-shadow: 0 6px 24px var(--electric3), 0 2px 38px 6px rgba(32,64,96,0.09);
  background: #fff;
}

/** HERO SECTION **/
.hero {
  min-height: 340px;
  display: flex;
  align-items: center;
  background: linear-gradient(90deg, var(--electric4) 0%, var(--electric2) 99%);
  color: #fff;
  padding-top: 42px;
  padding-bottom: 42px;
  margin-bottom: 60px;
  border-bottom-left-radius: 60px 42px;
  border-bottom-right-radius: 60px 42px;
}
.hero h1 {
  color: #fff;
  font-size: 2.7rem;
  font-weight: 900;
  text-shadow: 0 3px 21px rgba(32,64,96,0.14);
}
.hero p {
  color: #f0f5ff;
  font-size: 1.1rem;
  margin-bottom: 24px;
}
.hero .btn-primary {
  margin-top: 14px;
}

/** CTA SECTION **/
.cta-section {
  background: var(--electric1);
  color: #fff;
  border-radius: 36px 36px 0 0/24px 24px 0 0;
  text-align: center;
  padding: 44px 16px;
  margin-top: 60px;
}
.cta-section h2, .cta-section h3 {
  color: #fff;
}
.cta-section p {
  color: #fff;
}
.cta-section .btn-primary {
  margin-top: 22px;
}

/***** NAVIGATION *****/
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 10px 0 rgba(32,64,96,0.07);
  z-index: 51;
  position: sticky;
  top: 0;
}
header .container {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}
.logo img {
  height: 36px;
  width: auto;
}
.main-nav {
  display: flex;
  flex-direction: row;
  gap: 18px;
  align-items: center;
  font-size: 1.08rem;
}
.main-nav a {
  padding: 6px 12px;
  border-radius: 8px;
  color: var(--primary);
  font-weight: 600;
  transition: background 0.15s, color 0.18s;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--electric2);
  color: #fff;
}
.btn-primary {
  display: inline-block;
  padding: 12px 34px;
  background: var(--electric3);
  color: #fff;
  border-radius: 32px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.13rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  box-shadow: 0 2px 12px 0 rgba(247,37,133,0.11);
  transition: background 0.18s, color 0.13s, box-shadow 0.19s;
  margin-left: 12px;
  border: none;
  outline: none;
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--electric5);
  color: #fff !important;
  box-shadow: 0 5px 21px var(--electric5);
}

/***** MOBILE MENU *****/
.mobile-menu-toggle {
  display: none;
  background: var(--electric5);
  color: #fff;
  font-size: 2.2rem;
  border-radius: 11px;
  border: none;
  width: 48px;
  height: 48px;
  transition: background 0.13s, color 0.14s;
  margin-left: 16px;
  z-index: 92;
}
.mobile-menu-toggle:active,
.mobile-menu-toggle:focus {
  background: var(--electric3);
  color: #fff;
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(120deg, var(--electric3) 40%, var(--electric4) 100%);
  z-index: 97;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding-top: 54px;
  transform: translateX(-100%);
  transition: transform 0.33s cubic-bezier(.86,.01,.45,.97);
}
.mobile-menu.open {
  transform: translateX(0%);
  box-shadow: 12px 0 60px 18px rgba(75,143,166,0.18);
}
.mobile-menu-close {
  position: absolute;
  top: 18px;
  right: 22px;
  background: #fff;
  color: var(--electric3);
  font-size: 2rem;
  border: none;
  border-radius: 80px;
  width: 44px;
  height: 44px;
  box-shadow: 0 2px 12px 0 rgba(247,37,133,0.12);
  z-index: 99;
  transition: background 0.18s, color 0.14s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: var(--electric3);
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  padding: 28px 24px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
  font-size: 1.35rem;
  color: #fff;
  padding: 14px 0 9px 3px;
  border-radius: 9px;
  transition: background 0.11s, color 0.17s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--electric2);
  color: #222;
}

/* Hide desktop nav on mobile, show mobile burger */
@media (max-width: 1024px) {
  .main-nav, .btn-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
  header .container {
    flex-direction: row;
    align-items: center;
    gap: 2vw;
  }
}
@media (min-width: 1025px) {
  .mobile-menu, .mobile-menu-toggle {
    display: none !important;
  }
}


/***** FOOTER *****/
footer {
  background: var(--primary);
  color: #fff;
  padding: 26px 0 4px 0;
  font-size: 1rem;
}
footer .container {
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  margin-top: 4px;
}
.footer-nav a {
  color: var(--secondary);
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 3px 6px;
  transition: color 0.16s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--electric2);
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.98rem;
  color: #fff;
}
.contact-details p {
  color: #fff;
}
.contact-details a {
  color: var(--electric4);
}
.contact-details a:hover {
  text-decoration: underline;
  color: var(--electric2);
}

footer img {
  height: 40px;
  margin-bottom: 8px;
}

/****** TESTIMONIALS *******/
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.star-rating {
  color: var(--electric2);
  font-size: 1.15rem;
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 0.2em;
  margin-top: 9px;
}

/****** FAQ ACCORDION ******/
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-item {
  background: var(--accent);
  border-radius: 15px;
  padding: 21px 22px;
  box-shadow: 0 1px 7px rgba(32,64,96,0.07);
  transition: box-shadow 0.14s;
}
.faq-item:hover {
  box-shadow: 0 6px 16px var(--electric2);
}
.help-search {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.6em;
}
.help-search label {
  font-weight: bold;
  color: var(--primary);
  margin-bottom: 6px;
}
.help-search input {
  padding: 9px 15px;
  border-radius: 8px;
  border: 1.7px solid var(--electric4);
  background: #fff;
  font-size: 1rem;
  color: var(--primary);
  transition: border 0.18s;
}
.help-search input:focus {
  border-color: var(--electric2);
}

/* legal text blocks */
.legal-text {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 1px 7px rgba(32,64,96,0.07);
  padding: 24px 22px;
  color: #333;
  font-size: 1.01rem;
  margin-bottom: 22px;
}


/******** ICON/BENEFITS & STEPS ************/
.benefit-icons, .team-intros, .timeline-steps, .icon-guided-steps, .common-questions {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 15px;
  flex: 1 1 280px;
  min-width: 210px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 1px 7px rgba(32,64,96,0.09);
  padding: 23px 18px 19px 17px;
}
.timeline-steps ol, .step-by-step-guide ol,
.icon-guided-steps ul, .resource-links ul, .common-questions ul,
.legal-text ul, .credentials-list ul, .faq-accordion ul, .feature-grid ul, .benefit-icons ul {
  padding-left: 0;
  list-style: none;
  margin-left: 0;
}
.timeline-steps li, .icon-guided-steps li, .resource-links li, .common-questions li {
  margin-bottom: 8px;
}
.step-by-step-guide {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 8px;
}

/****** RESOURCE LINKS ********/
.resource-links ul {
  display: flex;
  flex-direction: row;
  gap: 18px;
  margin-top: 10px;
}
.resource-links a {
  color: var(--electric3);
  font-weight: bold;
  text-decoration: underline;
  transition: color 0.18s;
}
.resource-links a:hover {
  color: var(--electric2);
}

/******* CREDENTIALS LIST *******/
.credentials-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.credentials-list h3 {
  font-size: 1.03rem;
}
.credentials-list ul li {
  color: var(--electric4);
  font-weight: 500;
  margin-bottom: 3px;
}

/*********** COOKIE CONSENT BANNER & MODAL ***********/
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: var(--electric1);
  color: #fff;
  z-index: 1355;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 24px;
  padding: 24px 14px 22px 14px;
  box-shadow: 0 -6px 22px 3px rgba(32,64,96,0.19);
  font-size: 1rem;
  animation: fadeInUp 0.69s cubic-bezier(.45,.9,.57,1.1);
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(80px); }
  to { opacity: 1; transform: translateY(0); }
}
.cookie-banner .cookie-msg {
  flex: 3 1 380px;
  font-size: 1rem;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 15px;
}
.cookie-banner button {
  padding: 8px 26px;
  border-radius: 26px;
  border: none;
  font-weight: bold;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  transition: background 0.15s, color 0.18s;
}
.cookie-banner .accept-btn {
  background: var(--electric4);
  color: #fff;
}
.cookie-banner .accept-btn:hover {
  background: var(--electric3);
  color: #fff;
}
.cookie-banner .reject-btn {
  background: var(--electric2);
  color: #fff;
}
.cookie-banner .reject-btn:hover {
  background: var(--electric5);
  color: #fff;
}
.cookie-banner .settings-btn {
  background: #fff;
  color: var(--electric1);
  border: 2px solid var(--electric1);
}
.cookie-banner .settings-btn:hover {
  background: var(--electric1);
  color: #fff;
}

/* Cookie modal */
.cookie-modal {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(32,64,96,0.44);
  z-index: 1357;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInModal 0.33s cubic-bezier(.45,.9,.57,1.1);
}
@keyframes fadeInModal {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal-content {
  background: #fff;
  color: var(--primary);
  border-radius: 18px;
  box-shadow: 0 4px 42px 13px rgba(36, 64, 96, 0.19);
  padding: 42px 28px 29px 28px;
  max-width: 370px;
  width: 98vw;
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
  animation: cookieBounceIn 0.38s;
}
@keyframes cookieBounceIn {
  0% { opacity: 0; transform: scale(.87) translateY(130px); }
  80% { opacity: 1; transform: scale(1.045) translateY(-10px); }
  100% { opacity: 1; transform: scale(1) translateY(0px); }
}
.cookie-modal-content h3 {
  color: var(--electric3);
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}
.cookie-category label {
  font-weight: 600;
  font-size: 1.01rem;
}
.cookie-toggle {
  width: 48px;
  height: 28px;
  background: var(--accent);
  border-radius: 16px;
  position: relative;
  cursor: pointer;
  transition: background 0.18s;
  border: 2px solid var(--secondary);
}
.cookie-toggle.enabled {
  background: var(--electric4);
}
.cookie-toggle-indicator {
  display: block;
  position: absolute;
  left: 3px;
  top: 3px;
  width: 22px;
  height: 22px;
  background: #fff;
  border-radius: 99px;
  box-shadow: 0 1px 3px rgba(32,64,96,0.08);
  transition: left 0.17s;
}
.cookie-toggle.enabled .cookie-toggle-indicator {
  left: 23px;
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
  justify-content: center;
}
.cookie-modal-actions button {
  padding: 8px 25px;
  border-radius: 26px;
}
.cookie-modal .cookie-close {
  position: absolute;
  right: 19px;
  top: 21px;
  font-size: 1.2rem;
  background: transparent;
  color: var(--electric5);
  border: none;
  cursor: pointer;
}

/********* CONFIRMATION PAGE ********/
.confirmation-message {
  background: var(--accent);
  padding: 20px 18px;
  border-radius: 16px;
  font-weight: 500;
  color: var(--electric4);
  box-shadow: 0 1px 8px rgba(32,64,96,0.10);
  margin-bottom: 20px;
}
.next-steps {
  background: #fff;
  padding: 18px 16px;
  border-radius: 14px;
  color: var(--secondary);
  margin-bottom: 16px;
  box-shadow: 0 2px 8px rgba(32,64,96,0.06);
}
.next-steps h2 {
  font-size: 1.15rem;
  color: var(--electric1);
}

/***** RESPONSIVE MEDIA QUERIES *****/
@media (max-width: 960px) {
  .container {
    max-width: 96vw;
    padding-left: 7px;
    padding-right: 7px;
  }
  .testimonial-slider, .service-cards, .feature-grid, .benefit-icons, .team-intros {
    gap: 15px;
  }
}
@media (max-width: 768px) {
  .container {
    max-width: 100vw;
    padding-left: 4px;
    padding-right: 4px;
  }
  .section {
    margin-bottom: 37px;
    padding: 23px 6px;
  }
  .hero {
    padding-top: 24px;
    padding-bottom: 22px;
    min-height: 210px;
    border-bottom-left-radius: 30px 20px;
    border-bottom-right-radius: 30px 20px;
  }
  .hero h1 {
    font-size: 1.5rem;
  }
  .content-wrapper {
    gap: 17px;
    padding: 0;
  }
  .text-image-section, .feature-grid, .content-grid, .service-cards, .benefit-icons, .team-intros, .testimonial-slider {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 14px;
  }
  .card, .feature-item, .service-card, .testimonial-card, .text-section {
    min-width: unset !important;
    max-width: unset !important;
    width: 100% !important;
    padding: 17px 10px !important;
    font-size: 0.98rem;
  }
  .footer-nav {
    flex-direction: column;
    gap: 4px;
    font-size: 0.97rem;
  }
  footer .container, header .container {
    flex-direction: column;
    align-items: center;
    gap: 13px;
  }
  .cta-section {
    padding: 30px 7px;
    margin-top: 32px;
    border-radius: 18px 18px 0 0 / 8px 8px 0 0;
  }
  .cookie-banner {
    flex-direction: column;
    gap: 8px;
    font-size: 0.98rem;
    padding: 15px 4px 10px 4px;
  }
  .cookie-modal-content {
    padding: 29px 8px 15px 8px;
    max-width: 97vw;
    gap: 17px;
  }
}
@media (max-width: 400px) {
  .hero h1 {
    font-size: 1.19rem;
  }
}

/******* UTILITY CLASSES **/
.hide-mobile { display: block !important; }
@media (max-width: 768px) { .hide-mobile { display: none !important; } }
.show-mobile { display: none !important; }
@media (max-width: 768px) { .show-mobile { display: block !important; } }

/****** MICRO-INTERACTIONS ******/
a, button, .btn-primary, .feature-item, .card, .service-card, .testimonial-card, .faq-item, .cookie-banner button, .cookie-modal-actions button, .mobile-nav a {
  transition: background 0.19s, color 0.13s, box-shadow 0.13s, transform 0.12s;
}
.service-card:hover, .card:hover, .feature-item:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 8px 31px var(--electric1), 0 6px 40px 6px rgba(32,64,96,0.09);
}

/***** ENSURE NO OVERLAPPING *****/
.section, .card, .feature-item, .testimonial-card, .service-card, .text-section {
  margin-bottom: 20px;
}
.card-container, .content-grid, .service-cards, .service-list, .testimonial-slider, .feature-grid, .team-intros, .benefit-icons {
  gap: 20px;
}

/***** END OF STYLES *****/
