/* 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, body {
  height: 100%;
  min-height: 100%;
}
body {
  line-height: 1.5;
  background: #FFF9F1;
  color: #14213d;
  font-family: 'Roboto', Arial, sans-serif;
  min-height: 100%;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, picture, video, canvas, svg {
  display: inline-block;
  max-width: 100%;
  vertical-align: middle;
  height: auto;
}
a {
  color: #26547C;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #ec5d72;
  outline: none;
}
ul, ol {
  margin-left: 1.5em;
}
button {
  font-family: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}
h1 {
  font-size: 2.5rem;
  color: #26547C;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  color: #F76D57;
  margin-bottom: 20px;
  font-weight: 800;
}
h3 {
  font-size: 1.38rem;
  color: #26547C;
  margin-bottom: 12px;
}
h4, h5, h6 {
  color: #26547C;
}
p, li, blockquote {
  font-size: 1.06rem;
  color: #14213d;
}
blockquote {
  font-style: italic;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  margin: 0 0 10px 0;
  color: #26547C;
  background: #fff0dd;
  border-left: 7px solid #F6AF4B;
  padding: 12px 18px;
  border-radius: 0 18px 18px 0;
}
cite {
  font-size: 0.98rem;
  color: #F76D57;
  letter-spacing: 0.01em;
}
strong {
  color: #26547C;
}

/* CONTAINERS & LAYOUT */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 18px;
}

.content-wrapper {
  width: 100%;
  margin: 0 auto;
  gap: 24px;
}
.text-section {
  max-width: 780px;
}
.section, main section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
  border-radius: 28px;
  box-shadow: 0px 2px 16px 0px rgba(246,175,75,0.05); /* playful soft shadow */
}
main > section:last-child {
  margin-bottom: 0;
}

.cta-section {
  background: #F6AF4B;
  color: #26547C;
  border-radius: 38px;
  box-shadow: 0 2px 18px 0 rgba(38,84,124,0.04);
}

/* FLEXBOX MANDATORY ALIGNMENT */
.feature-grid, .testimonial-grid, .card-container, .content-grid, .service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 24px;
  justify-content: space-between;
}
.feature-grid {
  align-items: stretch;
}
.card-container, .card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.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: 22px;
  box-shadow: 0 4px 28px 0 rgba(38,84,124,0.13);
  margin-bottom: 20px;
  transition: box-shadow 0.2s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 32px 0 rgba(38,84,124,0.23);
  transform: scale(1.025);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 4px 24px 0 rgba(246,175,75,0.08);
  transition: box-shadow 0.22s, transform 0.22s;
}
.card:hover {
  box-shadow: 0 6px 42px 0 rgba(246,175,75,0.15);
  transform: translateY(-6px) scale(1.013);
}

/***** HEADER & NAVIGATION *****/
header {
  background: #fff;
  box-shadow: 0 3px 22px rgba(46,84,124,0.08);
  position: sticky;
  top: 0;
  z-index: 1002;
  padding: 0;
}
header .container {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 8px 18px;
}
.logo-link img {
  height: 44px;
  width: auto;
  block-size: auto;
  margin-right: 18px;
  transition: transform 0.22s cubic-bezier(.48,-0.3,.64,1.6);
}
.logo-link:hover img {
  transform: rotate(-7deg) scale(1.1);
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex: 1 0 auto;
}
.main-nav a {
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 700;
  color: #26547C;
  font-size: 1rem;
  letter-spacing: 0.03em;
  padding: 7px 14px;
  border-radius: 18px;
  transition: background 0.21s, color 0.18s;
  position: relative;
  z-index: 2;
}
.main-nav a:hover, .main-nav a:focus {
  background: #F6AF4B;
  color: #FFF;
}
.cta-button {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  background: #F76D57;
  color: #fff;
  border: none;
  border-radius: 26px;
  padding: 13px 32px;
  font-weight: 800;
  font-size: 1.13rem;
  margin-left: 18px;
  transition: background 0.18s, transform 0.21s;
  box-shadow: 0 2px 15px rgba(247,109,87,0.11);
  text-shadow: 0 1px 2px rgba(38,84,124, 0.07);
  cursor: pointer;
  outline: none;
  position: relative;
  z-index: 1;
  letter-spacing: 0.01em;
  
  animation: bounceIn 1.3s cubic-bezier(0.21,1.23,0.46,1.01) both;
}
.cta-button:hover, .cta-button:focus {
  background: #26547C;
  color: #fff;
  transform: translateY(-3px) scale(1.06) rotate(-2deg);
  box-shadow: 0 5px 19px rgba(38,84,124,0.12);
}
@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.7) translateY(40px);
  }
  70% {
    opacity: 1;
    transform: scale(1.08) translateY(-12px);
  }
  85% {
    transform: scale(0.98) translateY(3px);
  }
  100% {
    transform: scale(1) translateY(0);
  }
}

/***** HERO SECTION *****/
.hero {
  background: #F6AF4B;
  background-image: url('../assets/bg-pattern.svg'), linear-gradient(90deg, #FFA45B 0%, #F6AF4B 100%);
  background-repeat: repeat, no-repeat;
  background-size: 84px, cover;
  background-position: 40% 20%, center center;
  color: #26547C;
  padding: 56px 0 56px 0;
  border-radius: 0 0 42px 42px;
  margin-bottom: 60px;
  box-shadow: 0 8px 32px 0 rgba(38,84,124,0.06);
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.hero .content-wrapper {
  padding: 0 8px;
}
.hero h1 {
  color: #26547C;
  font-size: 2.7rem;
  line-height: 1.14;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 12px #fff0b3;
  font-family: 'Montserrat', cursive, sans-serif;
}
.hero p {
  color: #3a3a3a;
  font-size: 1.18rem;
  margin-bottom: 28px;
}

/***** FEATURES & CARDS *****/
.feature {
  flex: 1 1 260px;
  min-width: 210px;
  background: #fff;
  border-radius: 19px;
  box-shadow: 0 2px 16px rgba(38,84,124,0.11);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px 20px 18px 20px;
  transition: transform 0.19s, box-shadow 0.18s;
  margin-bottom: 20px;
  gap: 16px;
}
.feature:hover {
  transform: translateY(-7px) rotate(-1.2deg) scale(1.03);
  box-shadow: 0 8px 41px 0 rgba(246,175,75,0.20);
  background: #FFF6ED;
}
.feature img {
  height: 44px;
  width: 44px;
  margin-bottom: 7px;
  filter: drop-shadow(2px 2px 0 #FAB80044);
}

/***** TESTIMONIALS *****/
.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 34px;
}
.testimonial-card img {
  min-width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fce6cd;
  padding: 6px;
}
.ratings-overview {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.16rem;
  font-weight: 600;
  color: #26547C;
}
.ratings-overview img {
  height: 21px;
  filter: drop-shadow(0 1px 2px #F6AF4B99);
}

/***** PRICING TABLE *****/
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin: 25px 0 32px 0;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 1px 14px 0 rgba(38,84,124,0.07);
  overflow: hidden;
  font-size: 1.08rem;
}
.pricing-table th, .pricing-table td {
  padding: 18px 16px;
  text-align: left;
}
.pricing-table thead tr {
  background: #F6AF4B;
  color: #fff;
  font-weight: 800;
}
.pricing-table tbody tr {
  border-bottom: 1px solid #FFE4B1;
  background: #FFF;
}
.pricing-table tbody tr:nth-child(odd) {
  background: #FFF6ED;
}
.pricing-table td {
  color: #26547C;
}

/***** FAQ *****/
.faq {
  margin: 32px 0;
  background: #FFF6ED;
  border-left: 6px solid #F76D57;
  border-radius: 0 22px 22px 0;
  padding: 20px 26px 20px 16px;
}
.faq ul {
  list-style: disc;
}
.faq li {
  margin: 0 0 14px 0;
  color: #26313d;
}
.disclaimer {
  font-size: 0.98rem;
  color: #888;
  padding: 8px 0;
}

/***** SERVICE & MISC BLOCKS *****/
.service-list {
  gap: 24px;
  flex-direction: column;
  display: flex;
}
.service-block {
  background: #fff9f3;
  border-radius: 18px;
  box-shadow: 0 1px 10px 0 rgba(246,175,75,0.06);
  padding: 22px 20px 15px 20px;
  margin-bottom: 18px;
}
.service-block h2 {
  font-size: 1.3rem;
  color: #F76D57;
  margin-bottom: 11px;
}
.service-block p {
  color: #26547C;
}

/***** COOKIE BANNER *****/
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #F6AF4B;
  color: #26313D;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  padding: 22px 14px;
  z-index: 2300;
  box-shadow: 0 -2px 28px rgba(38,84,124,0.09);
  font-size: 1rem;
  animation: slideUpBanner 0.6s cubic-bezier(.33,1.5,.52,1.01);
}
@keyframes slideUpBanner {
  from {transform: translateY(120%); opacity: 0.7;}
  to {transform: translateY(0); opacity: 1;}
}
.cookie-banner-buttons {
  display: flex;
  gap: 14px;
}
.cookie-btn, .cookie-btn-secondary {
  appearance: none;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  padding: 10px 24px;
  border-radius: 24px;
  font-weight: bold;
  border: none;
  cursor: pointer;
  transition: background 0.16s, color 0.19s, box-shadow 0.13s;
  outline: none;
}
.cookie-btn {
  background: #26547C;
  color: #fff;
  box-shadow: 0 2px 7px rgba(38,84,124,0.14);
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #F76D57; color:#fff;
}
.cookie-btn-secondary {
  background: #FFF;
  color: #26547C;
  border: 2px solid #F76D57;
  box-shadow: 0 2px 7px rgba(246,175,75,0.06);
}
.cookie-btn-secondary:hover, .cookie-btn-secondary:focus {
  background: #FFE4B1;
  color: #F76D57;
}

/***** COOKIE MODAL *****/
.cookie-modal-overlay {
  position: fixed;
  z-index: 2400;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(38,84,124,0.32);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.22s both;
}
@keyframes fadeIn {
  from {opacity:0;} to {opacity: 1;}
}
.cookie-modal {
  background: #fff;
  color: #26313D;
  border-radius: 24px;
  padding: 36px 30px 28px 30px;
  width: 95vw;
  max-width: 420px;
  box-shadow: 0 10px 60px rgba(38,84,124,0.18);
}
.cookie-modal h2 {
  color: #F76D57;
  margin-bottom: 18px;
  font-family: 'Montserrat', sans-serif;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 13px 0 13px 0;
}
.cookie-modal input[type="checkbox"] {
  accent-color: #F76D57;
  width: 22px;
  height: 22px;
}
.cookie-modal .cookie-btn {
  margin-top: 19px;
  width: 100%;
}
.cookie-modal-close {
  position: absolute;
  right: 22px;
  top: 15px;
  background: #FFE4B1;
  color: #F76D57;
  border-radius: 22px;
  font-size: 1.08rem;
  border: none;
  padding: 6px 11px;
  cursor: pointer;
  transition: background 0.15s;
}
.cookie-modal-close:hover { background: #F76D57; color:#fff; }

/***** FOOTER *****/
footer {
  background: #f3f9fe;
  color: #14213d;
  padding: 0;
  border-radius: 32px 32px 0 0;
  box-shadow: 0px -2px 11px 0 rgba(38,84,124,0.06);
  font-size: 1rem;
}
footer .container {
  padding: 36px 18px 17px 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-logo img {
  height: 42px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-nav a {
  color: #26547C;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 16px;
  padding: 4px 12px;
  transition: background 0.19s, color 0.17s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #F6AF4B;
  color: #fff;
  outline: none;
}
.footer-contact img {
  height: 18px;
  width: 18px;
  margin-right: 7px;
}
.footer-contact p {
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 7px;
}
footer small {
  display: block;
  margin-top: 20px;
  letter-spacing: 0.02em;
  color: #888;
}

/***** MOBILE NAVIGATION *****/
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 18px;
  top: 17px;
  font-size: 2rem;
  z-index: 1102;
  background: #F6AF4B;
  color: #fff;
  border-radius: 50%;
  padding: 8px 12px 8px 12px;
  box-shadow: 0 3px 11px rgba(246,175,75,0.13);
  transition: background 0.16s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #F76D57;
  color: #fff;
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #26547C;
  color: #fff;
  z-index: 2200;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  transition: transform 0.33s cubic-bezier(.68,-0.6,.38,1.8), box-shadow 0.3s;
  transform: translateX(100%);
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
}
.mobile-menu-close {
  color: #FFF;
  background: #F76D57;
  border: none;
  border-radius: 50%;
  font-size: 2rem;
  position: absolute;
  top: 26px;
  right: 23px;
  z-index: 2201;
  width: 43px;
  height: 43px;
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
  transition: background 0.18s;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  background: #F6AF4B;
  color: #FFF;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 84px 32px 32px 32px;
  width: 100vw;
  height: 100vh;
  box-sizing: border-box;
}
.mobile-nav a {
  color: #FFF;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  background: transparent;
  border-radius: 10px;
  padding: 13px 11px;
  transition: background 0.21s, color 0.16s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #F6AF4B;
  color: #26547C;
  outline: none;
}

/***** RESPONSIVE & FLEXBOX ADJUSTMENTS *****/
@media (max-width: 1080px) {
  .container { max-width: 96vw; }
}
@media (max-width: 900px) {
  .feature-grid, .testimonial-grid, .card-container, .content-grid {
    gap: 18px;
  }
  header .container { flex-wrap: wrap; gap:13px; }
  .footer-contact, .footer-nav { font-size: 0.99rem; }
}
@media (max-width: 820px) {
  .feature-grid, .testimonial-grid {
    flex-direction: column;
    align-items: stretch;
  }
  .testimonials { flex-direction: column; }
  .service-list { gap: 16px; }
  .footer-logo img { height: 36px; }
}
@media (max-width: 768px) {
  /* Mobile nav show/hide */
  .main-nav, .cta-button {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .container {
    padding: 0 6vw;
  }
  .feature-grid, .testimonial-grid, .card-container, .content-grid, .section {
    flex-direction: column;
    gap: 18px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .content-wrapper.text-section {
    padding: 0;
    max-width: 94vw;
  }
  footer .container {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
}
@media (max-width: 570px) {
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.32rem; }
  .cta-button { font-size: 1rem; padding: 10px 16px; }
  .section, main section, .cta-section {
    margin-bottom: 40px;
    padding: 22px 7px;
    border-radius: 18px;
  }
  .card, .feature, .testimonial-card, .service-block, .faq {
    border-radius: 15px;
    padding: 12px 8px 12px 10px;
  }
  .mobile-nav {
    padding: 57px 5vw 0 12vw;
    font-size: 1.18rem;
  }
  .footer-contact img { height: 15px; width:15px; }
  .footer-logo img { height: 28px; }
}

/***** VISUAL FUN EFFECTS & ANIMATIONS *****/
.card, .feature, .testimonial-card, .faq, .service-block {
  animation: popEnter 0.8s cubic-bezier(0.18,0.6,0.26,1.21) both;
}
@keyframes popEnter {
  0% {transform: scale(0.87) translateY(28px); opacity:0;}
  80% {transform: scale(1.04) translateY(-4px); opacity:1;}
  100% {transform: scale(1) translateY(0);}
}
.cta-section .cta-button {
  animation-delay: 0.11s;
}

/***** PLAYFUL DYNAMIC DECORATION *****/
.feature img, .testimonial-card img, .footer-logo img, .logo-link img {
  will-change: filter, transform;
  transition: filter 0.22s, box-shadow 0.22s, transform 0.17s;
}
.feature:hover img {
  filter: drop-shadow(0 0 7px #F6AF4B88) brightness(1.07);
  transform: rotate(-6deg) scale(1.09) translateY(-3px);
}

/* Fun font for accent (taglines, cta, hero if desired) */
.hero h1, .cta-section h2 {
  font-family: 'Montserrat', 'Comic Sans MS', cursive, sans-serif;
  font-weight: 900;
  letter-spacing: -0.018em;
}

/***** SPACING AND FLEX GAPS (MANDATORY RULES) *****/
.card, .feature, .testimonial-card, .service-block {
  margin-bottom: 20px;
}
.card-container, .feature-grid, .testimonial-grid, .content-grid {
  gap: 24px;
}
.service-list {
  gap: 20px;
}
.section, main section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.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;
}

/***** EXTRAS & UTILS *****/
::-webkit-scrollbar {
  width: 8px;
  background: #FFF6ED;
  border-radius: 0 7px 7px 0;
}
::-webkit-scrollbar-thumb {
  background: #F6AF4B;
  border-radius: 8px;
}

/* Animating icons a bit on hover for fun */
.feature img, .footer-logo img {
  transition: transform 0.16s, filter 0.11s;
}
.feature:hover img {
  transform: rotate(-12deg) scale(1.12);
}

/***** TABLE (EVEN/ODD) *****/
.pricing-table tr:nth-child(even) td {
  background: #FFF9F1;
}

/***** ACCESSIBILITY & CONTRAST *****/
.testimonial-card,
.testimonial-card * {
  color: #212640;
}
.testimonial-card {
  background: #fff;
  border: 3px solid #F6AF4B;
  box-shadow: 0 5px 27px 0 rgba(38,84,124,0.12);
}

/* Hide visually */
.visually-hidden {
  position: absolute !important;
  height: 1px; width: 1px;
  overflow: hidden;
  white-space: nowrap;
  clip: rect(1px, 1px, 1px, 1px);
}

/* Animation for page entry */
body {
  animation: fadePageIn 0.55s cubic-bezier(0.38,1.35,0.5,1) both;
}
@keyframes fadePageIn {
  from { opacity:0; } to { opacity:1; }
}

/***** END OF MAIN CSS FILE *****/
