/* ========================
   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;
}
html {
  box-sizing: border-box;
  width: 100%;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  line-height: 1.6;
  background: #EEEEF1;
  color: #21243d;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #1B365D;
  text-decoration: none;
  transition: color 0.2s;
}

a:hover, a:focus {
  color: #F27329;
  outline: none;
}
ul, ol {
  list-style: none;
}
strong {
  font-weight: 700;
}
button {
  font-family: inherit;
  cursor: pointer;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Arial Rounded MT Bold', Arial, sans-serif;
  font-weight: 700;
  color: #1B365D;
  line-height: 1.15;
}
h1 {
  font-size: 2.4rem;
  margin-bottom: 12px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}
h3 {
  font-size: 1.2rem;
  color: #C05822;
  margin-bottom: 8px;
}

p, li, dd {
  color: #21243d;
  font-size: 1rem;
}
.subtitle {
  font-size: 1.18rem;
  font-family: 'Montserrat', 'Arial Rounded MT Bold', Arial, sans-serif;
  color: #C05822;
  margin-bottom: 16px;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

/* ========================
   HEADER & NAVIGATION
======================== */
header {
  background: #fff;
  box-shadow: 0 2px 10px rgba(27,54,93,0.06);
  padding: 0;
  z-index: 50;
  position: relative;
}
header .container {
  min-height: 70px;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
header nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #1B365D;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: color 0.16s;
  padding: 6px 8px;
  border-radius: 10px;
  position: relative;
}
header nav a:hover, header nav a:focus {
  background: #F27329;
  color: #fff;
}
.cta-button {
  background: #F27329;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  font-size: 1rem;
  border: none;
  border-radius: 30px;
  padding: 13px 30px;
  margin-left: 16px;
  box-shadow: 0 3px 20px rgba(242,115,41,0.13);
  transition: background 0.16s, transform 0.16s, box-shadow 0.22s;
  display: inline-block;
  text-align: center;
  letter-spacing: 0.03em;
  position: relative;
  z-index: 1;
}
.cta-button:hover, .cta-button:focus {
  background: #C05822;
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 6px 24px rgba(242,115,41,0.17);
  color: #fff;
}

.mobile-menu-toggle {
  background: #1B365D;
  color: #fff;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 12px;
  font-size: 2rem;
  display: none;
  margin-left: 12px;
  align-items: center;
  justify-content: center;
  transition: background 0.18s, color 0.15s;
}
.mobile-menu-toggle:active, .mobile-menu-toggle:focus {
  background: #F27329;
  color: #fff;
}

@media (max-width: 1024px) {
  header .container {
    gap: 14px;
  }
  header nav {
    gap: 10px;
  }
  .cta-button {
    padding: 11px 20px;
    font-size: 0.98rem;
  }
}

@media (max-width: 900px) {
  header nav, .cta-button {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

/* =====================
   MOBILE MENU OVERLAY
====================== */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #1B365D;
  color: #fff;
  z-index: 3000;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.36s cubic-bezier(.7,0,.3,1);
  opacity: 1;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
  box-shadow: -8px 0 38px 0 rgba(27,54,93,0.14);
}
.mobile-menu-close {
  background: none;
  border: none;
  align-self: flex-end;
  color: #fff;
  font-size: 2.2rem;
  margin: 26px 28px 12px 0;
  transition: color 0.15s;
  z-index: 1;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #F27329;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  margin: 30px 0 0 36px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 10px 12px;
  border-radius: 10px;
  transition: background 0.13s;
  width: fit-content;
}
.mobile-nav a:active, .mobile-nav a:hover, .mobile-nav a:focus {
  background: #F27329;
  color: #fff;
}
@media (max-width: 480px) {
  .mobile-nav {
    margin-left: 20px;
    gap: 18px;
  }
  .mobile-nav a {
    font-size: 1.08rem;
    padding: 10px 4px;
  }
  .mobile-menu-close {
    margin: 18px 16px 10px 0;
    font-size: 2rem;
  }
}

/* ========================
   FOOTER
========================= */
footer {
  background: #1B365D;
  color: #fff;
  padding: 44px 0 0 0;
  margin-top: 60px;
}
footer .container {
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 6px;
}
footer nav a {
  color: #fff;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  transition: color 0.17s;
  border-radius: 8px;
  padding: 2px 8px;
}
footer nav a:hover, footer nav a:focus {
  color: #F27329;
}
.brand-footer {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
  font-size: 1rem;
}
.brand-footer img {
  height: 34px;
  width: auto;
  margin-bottom: 7px;
}
.brand-footer span {
  color: #fff;
  font-family: 'Roboto', Arial, sans-serif;
}

@media (max-width: 700px) {
  footer .container {
    padding: 0 10px;
    gap: 20px;
  }
  .brand-footer {
    font-size: 0.95rem;
  }
}

/* ========================
   HERO SECTIONS
======================== */
.hero {
  background: #F27329;
  color: #fff;
  position: relative;
  overflow: hidden;
  border-radius: 0 0 44px 44px;
  margin-bottom: 60px;
  padding: 40px 0;
  box-shadow: 0 7px 38px rgba(242,115,41,0.08);
  animation: heroGlow 3.5s ease-in-out infinite alternate;
}
@keyframes heroGlow {
  from {
    box-shadow: 0 7px 38px rgba(242,115,41,0.10);
  }
  to {
    box-shadow: 0 14px 60px rgba(27,54,93,0.13), 0 7px 38px rgba(242,115,41,0.18);
  }
}
.hero .container {
  align-items: center;
}
.hero .content-wrapper {
  align-items: center;
  text-align: center;
  gap: 18px;
}
.hero h1 {
  font-size: 2.2rem;
  color: #fff;
  text-shadow: 0 2px 6px rgba(27,54,93,0.13);
  letter-spacing: 0.02em;
}
.hero .subtitle {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 20px;
}
.hero .cta-button {
  font-size: 1.14rem;
  padding: 17px 40px;
  margin-top: 10px;
}
@media (max-width: 540px) {
  .hero {
    padding: 24px 0;
    border-radius: 0 0 28px 28px;
  }
  .hero h1 {
    font-size: 1.42rem;
  }
  .hero .cta-button {
    padding: 13px 18px;
    font-size: 1rem;
  }
}

/* ========================
   MAIN SECTIONS & SPACING
======================== */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 2px 20px 0 rgba(27,54,93,0.10);
  position: relative;
  transition: box-shadow 0.2s;
}
.cta-section {
  background: #1B365D;
  color: #fff;
  border-radius: 20px;
  text-align: center;
}
.cta-section h2, .cta-section p {
  color: #fff !important;
}
.cta-section .cta-button {
  background: #F27329;
  color: #fff;
  margin: 22px auto 0 auto;
  font-size: 1.09rem;
}
.cta-section .cta-button:hover {
  background: #fff;
  color: #F27329;
  border: 2px solid #F27329;
}
@media (max-width: 768px) {
  section {
    padding: 28px 4px;
    margin-bottom: 38px;
    border-radius: 12px;
  }
  .cta-section {
    border-radius: 10px;
  }
}

/* ========================
   FLEX CONTENT UTILITIES
======================== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  position: relative;
  background: #fff;
  border-radius: 22px;
  margin-bottom: 20px;
  box-shadow: 0 2px 15px 0 rgba(242,115,41,0.09);
  transition: box-shadow 0.2s, transform 0.12s;
  padding: 20px 18px;
}
.card:hover {
  box-shadow: 0 6px 30px 0 rgba(242,115,41,0.17);
  transform: translateY(-4px) scale(1.03);
}
.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: 18px;
  box-shadow: 0 3px 28px 0 rgba(27,54,93,0.10);
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.23s, background 0.23s;
  border-left: 7px solid #C05822;
}
.testimonial-card blockquote {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08rem;
  color: #1B365D;
  font-weight: 500;
  margin-bottom: 4px;
}
.testimonial-meta {
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  color: #F27329;
  font-weight: 600;
  margin-left: 12px;
}
.testimonial-card:hover, .testimonial-card:focus {
  background: #F27329;
  box-shadow: 0 7px 32px 0 rgba(27,54,93,0.16);
}
.testimonial-card:hover blockquote, .testimonial-card:focus blockquote {
  color: #fff;
}
.testimonial-card:hover .testimonial-meta, .testimonial-card:focus .testimonial-meta {
  color: #fff;
}

/* Features, services, FAQ and steps flex layouts */
.feature-grid, .service-process, .step-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: flex-start;
  margin-top: 10px;
  margin-bottom: 20px;
}
.feature-grid li, .service-process li, .step-list li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  padding: 18px 16px 15px 16px;
  border-radius: 16px;
  box-shadow: 0 1px 8px rgba(242,115,41,0.07);
  min-width: 210px;
  flex: 1 1 210px;
  margin-bottom: 12px;
  transition: box-shadow 0.16s, background 0.17s;
  position: relative;
}
.feature-grid li img {
  height: 49px;
  width: auto;
  margin-bottom: 4px;
  background: #EEEEF1;
  border-radius: 8px;
  padding: 4px;
  box-shadow: 0 1px 4px 0 rgba(27,54,93,0.08);
  transition: background 0.15s;
}
.feature-grid li:hover, .service-process li:hover, .step-list li:hover {
  box-shadow: 0 4px 18px rgba(242,115,41,0.14);
  background: #FCF6F2;
}
.step-list strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: #1B365D;
}

@media (max-width: 1024px) {
  .feature-grid, .service-process, .step-list {
    gap: 14px;
  }
  .feature-grid li, .service-process li, .step-list li {
    min-width: 170px;
    flex-basis: 200px;
    font-size: 0.97rem;
  }
}
@media (max-width: 768px) {
  .feature-grid, .service-process, .step-list {
    flex-direction: column;
    gap: 14px;
    align-items: stretch;
  }
  .feature-grid li, .service-process li, .step-list li {
    width: 100%;
    min-width: 0;
  }
}

/* =====================
   FAQ + DL Elements
===================== */
dt {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  margin-top: 14px;
  font-size: 1.02rem;
  color: #1B365D;
}
dd {
  margin-left: 12px;
  font-size: 0.98rem;
  color: #21243d;
  margin-bottom: 8px;
}

/* ===============
   TEXT SECTION
================ */
.text-section {
  margin: 10px 0 14px 0;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

/* ===============
   POLICY SECTIONS (GDPR, Cookies, etc.)
================ */
.policy-section {
  background: #FCF6F2;
  border-radius: 20px;
}
.policy-section h1 {
  color: #1B365D;
}
.policy-section .text-section ul li {
  margin-bottom: 7px;
  list-style-type: disc;
  margin-left: 18px;
  color: #21243d;
  font-size: 1rem;
}
.policy-section .text-section p a {
  color: #F27329;
  text-decoration: underline;
}

/* ===============
   CONTACT SECTION
================ */
.contact-section {
  background: #FFFFFF;
  border-radius: 24px;
}

/* ===============
   FAQ & Text Animations (Playful)
================ */
section h2, h1 {
  animation: bounceIn 1s cubic-bezier(.23,.6,.7,1.4) 1;
}
@keyframes bounceIn {
  0%   { transform: scale(0.9) translateY(30px); opacity: 0; }
  80%  { transform: scale(1.06) translateY(-5px); opacity: .8; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}

/* =====================
   BUTTONS
===================== */
button, .cta-button {
  transition: background 0.18s, box-shadow 0.2s, color 0.14s, transform 0.11s;
  outline: none;
}
button:focus, .cta-button:focus {
  outline: 2px solid #F27329;
  outline-offset: 2px;
}
/* Fun font on CTA */
.cta-button {
  letter-spacing: .06em;
  font-family: 'Montserrat', Arial, sans-serif;
}

/* ========================
   COOKIE CONSENT BANNER
======================== */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  background: #1B365D;
  color: #fff;
  z-index: 20000;
  padding: 30px 20px 22px 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 24px;
  box-shadow: 0 -6px 22px 0 rgba(27,54,93,0.18);
  font-size: 1rem;
  animation: slideInUp .7s cubic-bezier(.7,0,.3,1);
}
@keyframes slideInUp {
  0% { transform: translateY(100%); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  margin: 0;
  font-size: 1rem;
  max-width: 350px;
  color: #fff;
}
.cookie-banner-actions {
  display: flex;
  flex-direction: row;
  gap: 13px;
}
.cookie-btn, .cookie-btn.accept {
  background: #F27329;
  color: #fff;
  border: none;
  border-radius: 17px;
  padding: 9px 24px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  margin-right: 2px;
}
.cookie-btn.accept:hover, .cookie-btn:focus {
  background: #C05822;
}
.cookie-btn.reject {
  background: #fff;
  color: #F27329;
  border: 2px solid #F27329;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #F27329;
  color: #fff;
}
.cookie-btn.settings {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
  margin-left: 0;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #fff;
  color: #1B365D;
}
@media (max-width: 650px) {
  .cookie-banner {
    flex-direction: column;
    gap: 18px;
    font-size: 0.98rem;
    padding: 20px 10px 14px 10px;
  }
}
/* Cookie modal overlay */
.cookie-modal-overlay {
  position: fixed;
  z-index: 21000;
  inset: 0;
  background: rgba(27,54,93,0.34);
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeInBg 0.4s ease-in;
}
@keyframes fadeInBg {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
/* Modal window */
.cookie-modal {
  background: #fff;
  color: #1B365D;
  border-radius: 22px;
  padding: 38px 28px;
  min-width: 320px;
  min-height: 160px;
  max-width: 95vw;
  box-shadow: 0 10px 40px 0 rgba(27,54,93,0.18);
  display: flex;
  flex-direction: column;
  gap: 22px;
  animation: modalPopIn 0.33s cubic-bezier(.53,2.1,.88,.95);
}
@keyframes modalPopIn {
  0% { transform: scale(0.7) translateY(60px); opacity: 0; }
  90% { transform: scale(1.06) translateY(-6px); opacity: .9; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal h2 {
  margin-bottom: 8px;
  color: #F27329;
  font-size: 1.28rem;
}
.cookie-modal ul {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 10px;
}
.cookie-category label {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.06rem;
  color: #1B365D;
  font-weight: 500;
}
.cookie-category input[type="checkbox"] {
  accent-color: #F27329;
  width: 21px;
  height: 21px;
}
.cookie-category.essential label {
  color: #1B365D;
  font-weight: 600;
}
.cookie-category.essential input {
  accent-color: #1B365D;
}
.cookie-modal-actions {
  display: flex;
  gap: 20px;
  margin-top: 16px;
}
.cookie-modal-accept, .cookie-modal-cancel {
  background: #F27329;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  border: none;
  border-radius: 16px;
  padding: 9px 26px;
  font-size: 1.01rem;
  font-weight: bold;
  box-shadow: 0 2px 12px 0 rgba(27,54,93,0.06);
  transition: background 0.19s, transform 0.13s;
}
.cookie-modal-accept:hover, .cookie-modal-accept:focus {
  background: #1B365D;
}
.cookie-modal-cancel {
  background: #fff;
  border: 2px solid #1B365D;
  color: #1B365D;
}
.cookie-modal-cancel:hover {
  background: #EEEEF1;
}
@media (max-width: 480px) {
  .cookie-modal {
    padding: 17px 4px;
    max-width: 97vw;
  }
}

/* ===============
   MEDIA QUERIES
================ */
@media (max-width: 768px) {
  .container {
    max-width: 98vw;
    padding: 0 8px;
  }
  .content-wrapper {
    gap: 15px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
  .hero .content-wrapper {
    padding: 0 3px;
    gap: 8px;
  }
}

/* ===============
   EXTRAS
================ */
::-webkit-scrollbar {
  width: 14px;
  background: #EEEEF1;
}
::-webkit-scrollbar-thumb {
  background: #F27329;
  border-radius: 8px;
}
::-webkit-scrollbar-thumb:hover {
  background: #C05822;
}

/* ===============
   FUN FONTS/ANIMATION
================ */
h1, h2, h3, .subtitle, .cta-button, nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 0.02em;
}
.feature-grid li h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #F27329;
  font-weight: bold;
  font-size: 1.07rem;
  margin-bottom: 0;
}

/* === Playful button micro-interactions === */
.cta-button {
  position: relative;
  overflow: hidden;
}
.cta-button:after {
  content: '';
  position: absolute;
  left: -60px;
  top: 0;
  width: 40px;
  height: 100%;
  background: rgba(255,255,255,0.24);
  border-radius: 50%;
  transform: scale(1) skewX(-18deg);
  pointer-events: none;
  animation: ctaLight 2.5s linear infinite alternate;
}
@keyframes ctaLight {
  0% { left: -60px; opacity: 0.4; }
  95% { left: 220px; opacity: 0.15; }
  100% { left: 300px; opacity: 0; }
}

/* Fun bounce effect on hover for features */
.feature-grid li:hover, .feature-grid li:focus {
  animation: featureBounce 0.58s cubic-bezier(.45,1.9,.4,.78);
}
@keyframes featureBounce {
  0% { transform: scale(1); }
  30% { transform: scale(1.13) rotate(-2deg); }
  60% { transform: scale(0.95) rotate(1deg); }
  100% { transform: scale(1); }
}

/* Hide decorative/empty images if icon is missing */
.feature-grid li img[alt=''], .feature-grid li img:not([src]) {
  display: none;
}

/* ===============
   SPACING FIXES
================ */
section, .policy-section {
  margin-bottom: 60px;
}
.card-container, .content-grid, .feature-grid, .service-process, .step-list {
  gap: 20px;
}
.card {
  margin-bottom: 20px;
}

/* ===============
   END OF CSS
================ */
