/* -------------------- 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, main, section, article, aside, footer, header, nav, figure, figcaption {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  line-height: 1.15;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  background: #E6F2F8;
  color: #222;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  box-sizing: border-box;
}
article, aside, details, figcaption, figure, footer, header, main, menu, nav, section {
  display: block;
}
ol, ul {
  list-style: none;
}
a {
  background-color: transparent;
  color: #185A7D;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #FFBD59;
  text-decoration: underline;
}
img {
  vertical-align: middle;
  max-width: 100%;
  height: auto;
  display: inline-block;
}
button, input, textarea, select {
  font-family: inherit;
  font-size: 100%;
  margin: 0;
  outline: none;
  border: none;
  background: none;
  box-sizing: border-box;
}
button {
  cursor: pointer;
}
h1,h2,h3,h4,h5,h6 {
  font-family: 'Roboto Slab', Georgia, serif;
  color: #185A7D;
  font-weight: 700;
  line-height: 1.2;
}
h1 { font-size: 2.5rem; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 22px; }
h3 { font-size: 1.4rem; margin-bottom: 16px; color: #1f2024; }
h4 { font-size: 1.2rem; }

/* -------------------- FLEX LAYOUTS - MOBILE FIRST -------------------- */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 18px;
  box-sizing: border-box;
}
header .container, footer .container {
  padding-top: 18px;
  padding-bottom: 18px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  width: 100%;
}

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

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card {
  margin-bottom: 20px;
  position: relative;
  width: 100%;
}

.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;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 18px;
  margin-bottom: 20px;
  box-shadow: 0 6px 32px rgba(24,90,125,0.10), 0 1.5px 4px 0 rgba(255,189,89,0.11);
  border-left: 5px solid #185A7D;
  transition: box-shadow 0.2s, border-left 0.2s;
  min-width: 0;
  max-width: 600px;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 8px 38px 0 rgba(255,189,89,0.15), 0 2px 8px rgba(24,90,125,0.13);
  border-left: 5px solid #FFBD59;
}
.testimonial-name {
  color: #185A7D;
  font-weight: 600;
  font-family: 'Roboto Slab', Georgia, serif;
  font-size: 1rem;
  margin-top: 6px;
}

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

/* -------------------- HEADER & NAVIGATION -------------------- */
header {
  background: #fff;
  box-shadow: 0 1px 10px rgba(24,90,125,0.06);
  position: relative;
  z-index: 1002;
}
.logo img {
  height: 48px;
  width: auto;
  margin-right: 24px;
  transition: transform 0.2s;
}
.logo:hover img, .logo:focus img {
  transform: scale(1.06) rotate(-3deg);
}
.main-nav {
  display: none;
}
.cta-btn {
  background: #FFBD59;
  color: #185A7D;
  font-family: 'Roboto Slab', Georgia, serif;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 32px;
  padding: 8px 28px;
  box-shadow: 0 4px 18px 0 rgba(255,189,89,0.11);
  transition: background 0.14s, color 0.14s, box-shadow 0.16s, transform 0.11s;
  display: inline-block;
  margin-left: 15px;
  margin-right: 16px;
  border: none;
  outline: none;
  letter-spacing: 0.03em;
}
.cta-btn:hover, .cta-btn:focus {
  background: #185A7D;
  color: #fff;
  box-shadow: 0 4px 22px 0 rgba(24,90,125,0.13);
  transform: translateY(-2px) scale(1.04);
}
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FFBD59;
  color: #185A7D;
  font-size: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  margin-left: auto;
  transition: background 0.18s, color 0.13s, transform 0.10s;
  box-shadow: 0 2px 12px rgba(255,189,89,0.13);
  z-index: 1003;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #185A7D;
  color: #fff;
  transform: scale(1.1);
}

/* ----- Mobile Menu Overlay ----- */
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 100vw;
  width: 100vw;
  height: 100vh;
  background: #fff;
  z-index: 1050;
  transition: transform 0.36s cubic-bezier(.64,1.57,.29,.93), left 0s 0.36s;
  box-shadow: -4px 0 32px rgba(24,90,125,0.25);
  overflow-y: auto;
  will-change: transform;
}
.mobile-menu.open {
  left: 0;
  transform: translateX(-100vw);
  box-shadow: -4px 0 40px rgba(24,90,125,0.23);
  transition: transform 0.34s cubic-bezier(.69,1.19,.35,1);
}
.mobile-menu-close {
  background: transparent;
  color: #185A7D;
  border: none;
  font-size: 2.1rem;
  align-self: flex-end;
  margin: 20px 30px 6px 0;
  cursor: pointer;
  transition: color 0.16s, transform 0.14s;
  z-index: 1060;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #FFBD59;
  transform: rotate(14deg) scale(1.05);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 16px 40px;
  gap: 16px;
}
.mobile-nav a {
  display: block;
  font-family: 'Roboto Slab', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #185A7D;
  padding: 13px 0;
  border-radius: 4px;
  width: 100%;
  transition: background 0.15s, color 0.15s, transform 0.10s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #FFBD59;
  color: #fff;
  transform: translateX(4px);
}
/* Header container flex handling (mobile first) */
header .container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 0;
}
header .logo {
  margin-right: 10px;
}

/* -------------- HERO SECTION --------------- */
.hero {
  background: #185A7D;
  color: #fff;
  padding: 56px 0 48px;
  width: 100%;
  min-height: 340px;
  display: flex;
  align-items: center;
}
.hero .container {
  justify-content: flex-start;
  align-items: flex-start;
}
.hero .content-wrapper {
  padding: 10px 0;
  max-width: 650px;
  gap: 30px;
}
.hero h1 {
  color: #fff;
  text-shadow: 0 3px 18px rgba(24,90,125,0.10), 0 1.5px 0 rgba(255,189,89,0.06);
  font-size: 2.6rem;
  margin-bottom: 12px;
  letter-spacing: 0.015em;
}
.hero p {
  color: #FFBD59;
  font-size: 1.28rem;
  font-weight: 500;
  margin-bottom: 28px;
}
.hero .cta-btn {
  background: #FFBD59;
  color: #185A7D;
  font-size: 1.14rem;
}

/* --------------- FEATURES --------------- */
.features-grid, .service-categories-grid, .tips-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 20px;
}
.features-grid {
  justify-content: flex-start;
  align-items: stretch;
}
.feature, .service-category, .tip {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 18px 0 rgba(24,90,125,0.07);
  padding: 28px 18px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  transition: box-shadow 0.15s, transform 0.13s;
  border-left: 4px solid #FFBD59;
  flex: 1 1 220px;
  max-width: 350px;
  margin-bottom: 20px;
}
.feature:hover, .feature:focus-within, .service-category:hover, .tip:hover {
  box-shadow: 0 8px 36px 0 rgba(255,189,89,0.14), 0 1.5px 5px 0 rgba(24,90,125,0.10);
  transform: translateY(-4px) scale(1.03);
  border-left: 5px solid #185A7D;
}
.feature img, .service-category img, .tip img {
  height: 44px;
  width: 44px;
}

/* -------------- CTA BANNER --------------- */
.cta-banner {
  background: #FFBD59;
  color: #185A7D;
  border-radius: 28px;
  box-shadow: 0 6px 30px 0 rgba(255,189,89,0.12);
  margin: 54px 0 36px;
  padding: 36px 18px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta-banner h2 {
  color: #185A7D;
  margin-bottom: 10px;
  font-size: 2rem;
}
.cta-banner p {
  color: #222;
  font-size: 1.2rem;
  margin-bottom: 24px;
}
.cta-banner .cta-btn {
  background: #185A7D;
  color: #fff;
  font-size: 1.13rem;
  box-shadow: 0 3px 14px 0 rgba(24,90,125,0.11);
}
.cta-banner .cta-btn:hover, .cta-banner .cta-btn:focus {
  background: #222;
  color: #FFBD59;
}
.cta-btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* -------------- CARD, TABLE, SECTIONS --------------- */
.pricing-table, .additional-services, .guarantee {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 16px 0 rgba(24,90,125,0.09);
  padding: 32px 18px 22px;
  margin-bottom: 24px;
  width: 100%;
}
.pricing-table h3 {
  margin-top: 20px;
  margin-bottom: 10px;
}
.pricing-table ul, .additional-services ul, .guarantee-points, .step-by-step-process {
  margin-bottom: 18px;
  font-size: 1rem;
}
.pricing-info ul {
  margin: 13px 0 0 14px;
}

/* -------------- TESTIMONIALS --------------- */
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
}

/* -------------- FOOTER --------------- */
footer {
  background: #185A7D;
  color: #fff;
  margin-top: 60px;
  padding: 34px 0 16px 0;
  z-index: 2;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 6px;
}
.footer-nav a {
  color: #FFBD59;
  font-size: 1.08rem;
  font-family: 'Roboto Slab', Georgia, serif;
  font-weight: 600;
  padding: 5px 9px;
  border-radius: 5px;
  background: transparent;
  transition: background 0.13s, color 0.13s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #185A7D;
  background: #FFBD59;
  text-decoration: none;
}
.footer-contact p,
.footer-contact a {
  color: #fff;
  font-size: 1rem;
  word-break: break-word;
}
.footer-contact a {
  color: #FFBD59;
  text-decoration: underline;
  transition: color 0.13s;
}
.footer-contact a:hover, .footer-contact a:focus {
  color: #fff;
  text-decoration: none;
}

/* -------------- GENERAL TYPOGRAPHY --------------- */
h1, .hero h1 { font-size: 2.4rem; }
h2 { font-size: 1.75rem; }
h3 { font-size: 1.19rem; }
@media (min-width: 480px) {
  h1, .hero h1 { font-size: 2.7rem; }
  h2 { font-size: 2.1rem; }
  h3 { font-size: 1.36rem; }
}
@media (min-width: 900px) {
  h1, .hero h1 { font-size: 3rem; }
  h2 { font-size: 2.24rem; }
  h3 { font-size: 1.45rem; }
}
p, ul, ol, li, .text-section, .core-values-list, .guarantee-points {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 1.07rem;
  color: #232323;
}
strong { font-weight: 700; }

.text-section {
  margin-bottom: 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.text-section a {
  color: #185A7D;
  font-weight: bold;
  text-decoration: underline;
}
.text-section a:hover {
  color: #FFBD59;
}
.core-values-list, .guarantee-points, .step-by-step-process, .expert-advice ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: disc inside;
  margin: 14px 0 8px 23px;
}

/* --------------- FORM ELEMENTS, BUTTONS --------------- */
button, .cta-btn {
  transition: background 0.13s, color 0.13s, box-shadow 0.10s, transform 0.11s;
}

/* --------------- MISCELLANEOUS --------------- */
::-webkit-input-placeholder { color: #888; font-size: 1rem; }
::-moz-placeholder { color: #888; font-size: 1rem; }
:-ms-input-placeholder { color: #888; font-size: 1rem; }
::placeholder { color: #888; font-size: 1rem; }

hr {
  border: none;
  border-top: 1.5px solid #185A7D;
  opacity: 0.13;
  margin: 16px 0;
}

/* --------------- RESPONSIVE BREAKPOINTS --------------- */
@media (min-width: 800px) {
  .main-nav {
    display: flex;
    flex-direction: row;
    gap: 24px;
    align-items: center;
    margin-left: 24px;
  }
  .main-nav a {
    font-family: 'Roboto Slab', Georgia, serif;
    color: #185A7D;
    font-size: 1.09rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    padding: 8px 15px 8px 8px;
    border-radius: 6px;
    background: transparent;
    transition: background 0.13s, color 0.12s, transform 0.09s;
  }
  .main-nav a:hover, .main-nav a:focus {
    background: #185A7D;
    color: #fff;
    text-decoration: none;
    transform: translateY(-2px) scale(1.04);
  }
  .mobile-menu-toggle {
    display: none;
  }
  header .container {
    flex-direction: row;
    align-items: center;
    gap: 20px;
  }
}
@media (min-width: 660px) {
  .testimonial-slider {
    flex-direction: row;
    align-items: stretch;
    gap: 32px;
  }
  .features-grid, .service-categories-grid, .tips-grid {
    flex-direction: row;
    gap: 28px;
    align-items: stretch;
  }
}
@media (max-width: 770px) {
  .content-wrapper, .footer-contact, .footer-nav {
    align-items: flex-start !important;
    gap: 14px;
  }
  .features-grid, .service-categories-grid, .tips-grid, .testimonial-slider {
    flex-direction: column;
    gap: 18px;
  }
  .card {
    max-width: 100%;
  }
  .cta-btn-group {
    flex-direction: column;
    gap: 11px;
  }
}
@media (max-width: 991px) {
  .hero h1 {
    font-size: 2.3rem;
  }
}
@media (max-width: 600px) {
  .hero {
    min-height: 246px;
    padding: 36px 0 28px;
  }
  .hero .content-wrapper {
    padding: 0;
    gap: 20px;
  }
  .feature, .service-category, .tip {
    padding: 20px 10px 20px 14px;
    min-width: 0;
    max-width: 100%;
  }
  .cta-banner {
    padding: 25px 12px 22px;
    margin-top: 34px;
  }
  .testimonial-card {
    padding: 10px 8px 14px 16px;
  }
  .section {
    padding: 18px 4px;
    margin-bottom: 44px;
  }
}
@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }
}
/* Text-image-section: Responsive column on mobile */
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
}

/* --------------- COOKIE CONSENT BANNER --------------- */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  background: #fff;
  color: #185A7D;
  box-shadow: 0 -3px 24px rgba(24,90,125,0.17), 0 1.5px 4px rgba(255,189,89,0.12);
  z-index: 1300;
  padding: 22px 10px 20px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  font-size: 1rem;
  animation: bannerfadein 0.30s ease;
  will-change: transform, opacity;
}
@keyframes bannerfadein {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
}
.cookie-banner button, .cookie-banner .cookie-btn {
  padding: 8px 22px;
  font-size: 1rem;
  font-family: 'Roboto Slab', Georgia, serif;
  font-weight: 700;
  border-radius: 24px;
  border: none;
  outline: none;
  transition: background 0.16s, color 0.13s, box-shadow 0.10s;
  margin: 5px 0;
}
.cookie-banner .accept {
  background: #185A7D;
  color: #fff;
  box-shadow: 0 2px 10px 0 rgba(24,90,125,0.10);
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: #FFBD59;
  color: #185A7D;
}
.cookie-banner .reject {
  background: #fff;
  color: #185A7D;
  border: 1.5px solid #185A7D;
  box-shadow: 0 1px 6px 0 rgba(24,90,125,0.09);
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: #FFBD59;
  color: #fff;
  border-color: #FFBD59;
}
.cookie-banner .settings {
  background: #fff;
  color: #FFBD59;
  border: 1.5px solid #FFBD59;
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: #185A7D;
  color: #fff;
  border-color: #185A7D;
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  min-width: 300px;
  max-width: 94vw;
  width: 400px;
  background: #fff;
  color: #185A7D;
  z-index: 1500;
  border-radius: 16px;
  box-shadow: 0 8px 44px rgba(24,90,125,0.21), 0 2px 9px #FFBD59;
  transform: translate(-50%, -60%) scale(0.97);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.23s, transform 0.22s;
  padding: 32px 22px 26px 22px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: all;
  transform: translate(-50%, -50%) scale(1);
}
.cookie-modal h2 {
  color: #185A7D;
  font-size: 1.38rem;
  margin-bottom: 7px;
}
.cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 18px;
}
.cookie-modal label {
  font-size: 1.05rem;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  color: #222;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 13px;
}
.cookie-modal input[type=checkbox] {
  accent-color: #FFBD59;
  width: 18px;
  height: 18px;
}
.cookie-modal .modal-btns {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}
.cookie-modal .close-modal {
  background: #fff0;
  color: #185A7D;
  font-size: 1.36rem;
  position: absolute;
  right: 20px;
  top: 16px;
  border: none;
  cursor: pointer;
}
.cookie-modal .close-modal:hover, .cookie-modal .close-modal:focus {
  color: #FFBD59;
}

@media (max-width:500px) {
  .cookie-modal {
    width: 94vw;
    min-width: 0;
    padding: 19px 7vw;
  }
}

/* --------------- UTILITIES & ANIMATIONS --------------- */
.fade-in {
  animation: fadeIn 0.4s cubic-bezier(.43,1.1,.77,1.03);
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
/* Utility for visually hidden text (a11y) */
.visually-hidden { position:absolute;width:1px;height:1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap; }

/* --------------- BRAND EFFECTS (COLOR POPS & ENERGY) --------------- */
.feature::after, .tip::after {
  content: '';
  display: inline-block;
  width: 32px;
  height: 4px;
  background: #FFBD59;
  border-radius: 2px;
  margin-top: 8px;
  transition: width 0.16s;
}
.feature:hover::after, .feature:focus-within::after, .tip:hover::after {
  width: 48px;
  background: #185A7D;
}
.pricing-table {
  border-left: 4px solid #185A7D;
  transition: border-color .17s;
}
.pricing-table:hover, .pricing-table:focus-within {
  border-left: 5px solid #FFBD59;
}

/* -------------- SCROLLBAR STYLE (Vibrant/Energetic) -------------- */
::-webkit-scrollbar { width: 9px; }
::-webkit-scrollbar-thumb { background:#FFBD59; border-radius: 8px; }
::-webkit-scrollbar-track { background: #fff; }

/* --------------- ACCESSIBILITY: FOCUS RINGS --------------- */
a:focus, button:focus, .cta-btn:focus {
  outline: 2.5px dashed #FFBD59;
  outline-offset: 2px;
  z-index: 2;
}

/* --------------- HIGH ENERGY/BRAND VIBRANCY HIERARCHY --------------- */
h1, h2, h3 {
  text-transform: none;
  letter-spacing: 0.01em;
}
h1 {
  color: #185A7D;
  font-style: italic;
  background: linear-gradient(90deg, #FFBD59 0 5%, #185A7D 60%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero h1 {
  background: linear-gradient(80deg, #FFBD59 0 14%, #fff 50%, #185A7D 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cta-btn {
  text-transform: uppercase;
}

/* --------------- END ALL --------------- */
