/* 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; }
body {
  line-height: 1.5;
  font-family: 'Roboto', Arial, sans-serif;
  min-height: 100vh;
  background: #F6F9FC;
  color: #123A5D;
  font-size: 16px;
}
*, *:before, *:after { box-sizing: inherit; }
img, video, svg { max-width: 100%; display: block; }
ul, ol { padding-left: 1.4em; }
a { color: #EB7A26; text-decoration: none; font-weight: 600; transition: color .2s; }
a:hover,a:focus { color: #C25D00; text-decoration: underline; }

/* FONT IMPORTS (assuming via HTML) */

body, p, li, ul, ol, address, table {
  font-family: 'Roboto', Arial, sans-serif;
  letter-spacing: 0.01em;
}
h1, h2, h3, h4, h5, h6, .btn-primary, .btn-secondary {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.5rem; color: #EB7A26; margin-bottom: 18px; }
h2 { font-size: 1.8rem; margin-bottom: 14px; color: #123A5D; }
h3 { font-size: 1.2rem; margin-bottom: 8px; color: #123A5D; }
h4, h5, h6 { color: #123A5D; }
p, li { font-size: 1rem; margin-bottom: 8px; }
strong { color: #EB7A26; }

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

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 12px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0; 
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 0;
}

/* PLAYFUL_DYNAMIC COLORS */
:root {
  --blue: #123A5D;
  --orange: #EB7A26;
  --white: #FFFFFF;
  --bg-light: #F6F9FC;
  --secondary: #C25D00;
  --shadow: 0 6px 28px 0 rgba(60,60,110,0.07), 0 2px 8px rgba(0,0,0,0.03);
}

/* HEADER & NAVIGATION */
header {
  background: var(--white);
  box-shadow: 0 2px 12px rgba(18,58,93,0.06);
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 18px 12px;
  gap: 26px;
}
.logo img {
  height: 44px;
  width: auto;
  transition: transform .25s cubic-bezier(.22,.7,.61,1.38);
}
.logo:hover img {
  transform: scale(1.1) rotate(-2deg);
}
nav {
  display: flex;
  flex-direction: row;
  gap: 26px;
  align-items: center;
}
header nav a {
  font-size: 1rem;
  color: var(--blue);
  padding: 8px 6px;
  border-radius: 12px;
  transition: background .16s, color .16s;
}
header nav a:hover, header nav a:focus {
  background: var(--orange);
  color: var(--white);
}
.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.04rem;
  letter-spacing: 0.02em;
  border-radius: 24px;
  padding: 14px 34px;
  margin: 0;
  cursor: pointer;
  border: none;
  outline: none;
  box-shadow: 0 2px 8px rgba(235,122,38,0.12);
  transition: background .22s, color .19s, transform .17s;
  text-decoration: none;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--blue);
  color: var(--orange);
  transform: translateY(-2px) scale(1.045) rotate(-2deg);
}
.btn-secondary {
  background: var(--white);
  color: var(--blue);
  border: 2px solid var(--orange);
}
.btn-secondary:hover, .btn-secondary:focus {
  background: var(--orange);
  color: var(--white);
  transform: translateY(-2px) scale(1.03) rotate(1.5deg);
}

/**************************************/
/****** MOBILE BURGER MENU ******/
.mobile-menu-toggle {
  display: none;
  background: var(--orange);
  color: var(--white);
  font-size: 2rem;
  padding: 10px 18px;
  border: none;
  border-radius: 18px;
  position: fixed;
  top: 18px;
  right: 16px;
  z-index: 302;
  box-shadow: 0 2px 8px rgba(235,122,38,0.12);
  transition: background .18s;
  cursor: pointer;
}
.mobile-menu-toggle:active {
  background: var(--blue);
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--white);
  z-index: 301;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.77,0,0.18,1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 0 0 0;
}
.mobile-menu.open {
  transform: translateX(0);
  box-shadow: 0 2px 42px rgba(18,58,93,0.16);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 18px 18px 0 0;
  font-size: 2rem;
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: 30px;
  width: 48px;
  height: 48px;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(235,122,38,0.11);
  transition: background .17s;
  z-index: 302;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--blue);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 32px 0 0 34px;
  width: calc(100vw - 60px);
}
.mobile-nav a {
  font-size: 1.3rem;
  color: var(--blue);
  padding: 14px 0;
  font-family: 'Montserrat',Arial,sans-serif;
  letter-spacing: 0.01em;
  transition: color .21s, background .18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--orange);
  background: rgba(235,122,38,0.10);
  border-radius: 16px;
}

/**** Hide main nav on mobile, show burger ******/
@media (max-width: 960px) {
  header .container {
    flex-direction: row;
  }
  nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 961px) {
  .mobile-menu,
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* HERO SECTION */
.hero {
  margin-bottom: 60px;
  padding: 60px 0 36px 0;
  background: linear-gradient(100deg, #F8E5D8 0 50%, #F6F9FC 100%);
  border-radius: 0 0 44px 44px;
  box-shadow: 0 4px 20px rgba(18,58,93,0.07);
  animation: heroEnter .9s cubic-bezier(.25,1.2,.3,1);
}
@keyframes heroEnter {
  from { opacity: 0; transform: translateY(-44px); }
  to   { opacity: 1; transform: none; }
}
.hero .container {
  flex-direction: row;
  align-items: center;
  gap: 36px;
}
@media (max-width: 768px) {
  .hero .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .hero { padding: 36px 0 20px 0; }
}

/***** SECTIONS & SPACING & FLEX COMPLIANCE *****/
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 520px) {
  section { padding: 24px 8px; }
}
.card-container {
  display: flex; flex-wrap: wrap; gap: 24px;
}
.card {
  background: var(--white);
  border-radius: 23px;
  margin-bottom: 20px;
  position: relative;
  box-shadow: var(--shadow);
  padding: 30px 24px 30px 24px;
  min-width: 265px;
  max-width: 332px;
  flex: 1 1 265px;
  transition: box-shadow .17s, transform .18s;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 2.5px solid transparent;
  animation: cardPop .7s cubic-bezier(.4,1.35,.27,1);
}
@keyframes cardPop {
  from { opacity: 0; transform: scale(.97) translateY(24px); }
  to { opacity: 1; transform: none; }
}
.card:hover, .card:focus-within {
  box-shadow: 0 6px 28px rgba(235,122,38,0.25), var(--shadow);
  border-color: var(--orange);
  transform: translateY(-6px) scale(1.03) rotate(-1.5deg);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}
.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;
}
@media (max-width: 768px) {
  .text-image-section { flex-direction: column; align-items: flex-start; }
}
/* Feature Items */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.section ul, .section ol {
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.section ul li, .section ol li {
  position: relative;
  padding-left: 0.7em;
  font-size: 1.06rem;
  color: #14416e;
  background: none;
}
.section ul li::before {
  content: '\2022';
  color: var(--orange);
  display: inline-block;
  width: 1em;
  margin-left: -1.1em;
}
.section ol li {
  counter-increment: step;
  color: #123A5D;
}
.section ol {
  counter-reset: step;
}
.section ol li::before {
  content: counter(step) '.';
  color: var(--orange);
  display: inline-block;
  width: 1.4em;
  margin-left: -1.5em;
  font-weight: 700;
}
.section ul li img {
  width: 2em; height: 2em; vertical-align: middle; margin-right: 12px;
  box-shadow: 0 1px 6px rgba(235,122,38,0.10);
  border-radius: 7px;
}

/******* TESTIMONIALS ********/
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 2px 12px rgba(18,45,81,0.08);
  margin-bottom: 20px;
  margin-top: 0;
  position: relative;
  flex-direction: row;
  border-left: 7px solid var(--orange);
  min-width: 240px;
  transition: box-shadow 0.18s, transform 0.18s;
}
.testimonial-card blockquote {
  font-size: 1.1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #223A5D;
  background: none;
}
.testimonial-card footer {
  font-size: 1rem;
  color: #556f98;
  font-style: italic;
  margin-left: 16px;
}
.testimonial-card:hover {
  box-shadow: 0 8px 36px rgba(18,54,93,0.15);
  transform: translateY(-4px) scale(1.01);
}
@media (max-width: 550px) {
  .testimonial-card {
    flex-direction: column;
    gap: 14px;
    padding: 14px;
  }
}

/***** FAQ ACCORDION *****/
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.faq-accordion > div {
  background: #FFFAF5;
  border-radius: 15px;
  box-shadow: 0 1px 7px rgba(235,122,38,.11);
  padding: 20px;
  margin-bottom: 6px;
  color: #1F405E;
  border-left: 5px solid var(--orange);
  transition: box-shadow .18s;
}
.faq-accordion > div strong {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--blue);
  font-size: 1.1rem;
}
.faq-accordion > div p {
  color: #455576;
  margin-top: 6px;
  margin-bottom: 0;
}

/***** TABLES *****/
table {
  width: 100%;
  border-spacing: 0;
  border-collapse: collapse;
  margin-bottom: 26px;
  background: var(--white);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 2px 14px rgba(18,58,93,0.08);
  font-size: 1rem;
  font-family: 'Roboto',Arial,sans-serif;
}
th,td {
  padding: 13px 14px;
  text-align: left;
}
th {
  background: #F6F9FC;
  color: var(--orange);
  font-family: 'Montserrat',Arial,sans-serif;
  font-size: 1rem;
}
td { color: #124169; }
tbody tr { border-top: 1px solid #F2E5D9; }
tbody tr:nth-child(odd) { background: #FAF4EF; }

/***** MAP PLACEHOLDER *****/
.map-placeholder {
  width: 100%;
  height: 190px;
  background: repeating-linear-gradient(-45deg,#EB7A26 0 14px,#FFF 14px 28px);
  color: var(--blue);
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat',Arial,sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin: 28px 0 0 0;
  box-shadow: 0 1px 8px rgba(18,58,93,0.10);
}

/******** FOOTER *******/
footer {
  background: var(--blue);
  color: var(--white);
  padding: 40px 0 12px 0;
  margin-top: 48px;
  border-radius: 44px 44px 0 0;
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  gap: 38px;
  justify-content: space-between;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
footer nav a {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 4px;
  transition: color .2s;
  font-weight: 600;
}
footer nav a:hover,footer nav a:focus { color: var(--orange); }
.footer-branding img {
  width: 2.5em;
  margin-bottom: 10px;
  transition: transform .25s;
}
.footer-branding img:hover { transform: scale(1.08) rotate(4deg); }
.footer-contact address,.footer-contact div {
  color: #eddac9;
  font-size: 1rem;
  margin-bottom: 7px;
  font-style: normal;
}
.footer-email { font-weight: 600; font-size: 1.02rem; }
@media (max-width: 820px) {
  footer .container {
    flex-direction: column;
    gap: 25px;
    align-items: flex-start;
  }
}

/****** THANK-YOU SECTION *******/
.thank-you-section {
  text-align: center;
  background: #FFE7D2;
  border-radius: 24px;
  box-shadow: 0 3px 42px rgba(235,122,38,.11);
  margin-bottom: 62px;
  font-family: 'Montserrat', Arial, sans-serif;
  animation: cardPop 0.7s;
}
.thank-you-section h1 { color: var(--blue); font-size: 2.2rem; margin-bottom: 18px; }
.thank-you-section p, .thank-you-section ul li { color: #77320a; }
.thank-you-section ul {
  margin: 22px auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

/***** PRICES ON SERVICE LISTS *****/
.price {
  display: inline-block;
  background: #fff3e8;
  color: var(--orange);
  font-family: 'Montserrat',Arial,sans-serif;
  font-weight: 700;
  border-radius: 13px;
  padding: 7px 14px;
  font-size: 1.01rem;
  margin-top: 5px;
  box-shadow: 0 1px 6px rgba(235,122,38,.09);
  letter-spacing: 0.02em;
}

/***** COOKIE CONSENT BANNER *****/
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--white);
  color: var(--blue);
  box-shadow: 0 -2px 16px rgba(40,56,85,0.17);
  z-index: 1002;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 22px;
  padding: 18px 30px 18px 26px;
  border-radius: 20px 20px 0 0;
  animation: slideInUp .6s cubic-bezier(.22,1,.36,1.1);
}
@keyframes slideInUp { from { transform: translateY(100px); opacity: 0; } to { transform: none; opacity: 1; } }
.cookie-banner p {
  font-size: 1rem;
  margin: 0 18px 0 0;
  flex: 1 1 0%;
  color: #123A5D;
}
.cookie-banner .cookie-btns {
  display: flex;
  flex-direction: row;
  gap: 14px;
  align-items: center;
}
.cookie-banner button {
  padding: 10px 21px;
  border-radius: 18px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  margin: 0;
  transition: background .18s, color .18s;
  box-shadow: 0 2px 8px rgba(18,58,93,0.06);
}
.cookie-banner .cookie-accept {
  background: var(--orange);
  color: var(--white);
}
.cookie-banner .cookie-accept:hover, .cookie-banner .cookie-accept:focus {
  background: var(--blue);
  color: var(--orange);
}
.cookie-banner .cookie-reject {
  background: #fff3e8;
  color: var(--orange);
  border: 2px solid var(--orange);
}
.cookie-banner .cookie-reject:hover, .cookie-banner .cookie-reject:focus {
  background: var(--orange);
  color: var(--white);
}
.cookie-banner .cookie-settings {
  background: var(--white);
  color: var(--blue);
  border: 2px solid var(--orange);
}
.cookie-banner .cookie-settings:hover,.cookie-banner .cookie-settings:focus {
  background: var(--orange);
  color: var(--white);
}
@media (max-width:568px) {
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    padding: 16px 12px;
    font-size: 0.98rem;
  }
  .cookie-banner .cookie-btns { justify-content: flex-end; }
}

/***** COOKIE MODAL ******/
.cookie-modal-overlay {
  position: fixed; inset: 0;
  background: rgba(18,58,93,0.23);
  z-index: 1102;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInModal .29s;
}
@keyframes fadeInModal { from { opacity: 0; } to { opacity: 1; } }
.cookie-modal {
  background: var(--white);
  min-width: min(350px,90vw);
  max-width: min(580px,90vw);
  padding: 38px 24px 28px 24px;
  border-radius: 24px;
  box-shadow: 0 4px 36px rgba(60,80,120,.19);
  z-index: 1202;
  display: flex;
  flex-direction: column;
  gap: 22px;
  animation: cardPop .43s cubic-bezier(.4,1.34,.29,1);
}
.cookie-modal h2 {
  color: var(--orange);
  font-size: 1.2rem;
  margin-bottom: 8px;
}
.cookie-modal ul {
  display: flex; flex-direction: column; gap: 12px; margin-bottom: 4px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.06rem;
}
.cookie-modal .cookie-toggle {
  appearance: none;
  width: 38px;
  height: 22px;
  background: #fff3e8;
  border-radius: 18px;
  position: relative;
  outline: none;
  transition: background .18s;
  margin-left: 8px;
  cursor: pointer;
  border: 2px solid #EB7A26;
}
.cookie-modal .cookie-toggle:checked {
  background: var(--orange);
}
.cookie-modal .cookie-toggle:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.cookie-modal .cookie-toggle::before {
  content: '';
  position: absolute;
  left: 2px; top: 2px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--white);
  transition: transform .17s cubic-bezier(0.59,1.36,0.32,1);
}
.cookie-modal .cookie-toggle:checked::before { transform: translateX(16px); }
.cookie-modal .modal-actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-top: 12px;
  justify-content: flex-end;
}
.cookie-modal button {
  padding: 10px 20px;
  border-radius: 14px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  cursor: pointer;
  border: none;
  background: var(--orange);
  color: var(--white);
  transition: background .18s;
  font-size: 1rem;
  margin: 0;
}
.cookie-modal button.secondary {
  background: var(--white);
  color: var(--orange);
  border: 2px solid var(--orange);
}
.cookie-modal button.secondary:hover,.cookie-modal button.secondary:focus {
  background: var(--orange);
  color: var(--white);
}
.cookie-modal button:hover,.cookie-modal button:focus {
  background: var(--blue);
  color: var(--orange);
}
@media (max-width: 480px){
  .cookie-modal { padding: 21px 9px 13px 9px; min-width: 85vw; }
}

/***** FORMS (if ever present) *****/
input, select, textarea, button {
  font-family: inherit;
}
input, textarea {
  padding: 13px 15px;
  border-radius: 15px;
  border: 2px solid #e9ddd5;
  background: #fff;
  margin-bottom: 12px;
  font-size: 1rem;
  outline: none;
  transition: border 0.13s;
}
input:focus, textarea:focus {
  border: 2px solid var(--orange);
  background: #FFF9F3;
}

/**** MEDIA QUERIES - FLUID RESPONSIVENESS ****/
@media (max-width: 900px) {
  .container { max-width: 97vw; }
}
@media (max-width: 768px) {
  .container { padding: 0 7px; }
  h1 { font-size: 2rem; }
  .btn-primary, .btn-secondary { padding: 13px 12px; font-size: 1rem; }
  .card { min-width: 210px; max-width: 100vw; padding: 18px 10px 23px 10px; }
  .testimonial-card { padding: 15px 7px; }
  .section { padding: 28px 2px; }
}
@media (max-width: 480px) {
  h1 { font-size: 1.25rem; }
  h2 { font-size: 1.1rem; }
  .btn-primary,.btn-secondary { font-size: .97rem; padding: 11px 10px; }
}

/**** MICRO-INTERACTIONS (playful) ****/
.btn-primary, .btn-secondary, .card, .testimonial-card {
  transition: box-shadow .16s, transform .13s, background .2s, color .18s;
}
.card:active, .testimonial-card:active {
  box-shadow: 0 1px 8px rgba(235,122,38,.17);
  transform: translateY(1.5px) scale(.98);
}
@media (hover: hover) {
  .card:hover, .testimonial-card:hover { cursor: pointer; }
}

/**** ANIMATED DECORATIVE ELEMENTS (playful) ****/
.logo img, .footer-branding img {
  animation: logoJump 1.2s cubic-bezier(.64,.03,.36,1) infinite alternate-reverse;
}
@keyframes logoJump { to { transform: translateY(-3px) scale(1.02) rotate(-5deg); } }

/**** UTILITIES & EXTRA ****/
.hide { display: none !important; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }

/**** ACCESSIBILITY ****/
a:focus, button:focus, .btn-primary:focus, .btn-secondary:focus {
  outline: 2px dashed var(--orange);
  outline-offset: 2px;
}

/**** HIGH CONTRAST FOR TESTIMONIALS and REVIEW SECTIONS ****/
.testimonial-card, .testimonial-card blockquote, .testimonial-card footer {
  background: var(--white);
  color: var(--blue) !important;
}

/* Layout patterns enforced */
.section { margin-bottom: 60px; padding: 40px 20px; }
.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card { margin-bottom: 20px; position: relative; }
.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; }
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }

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