/* =================== CSS RESET & NORMALIZATION =================== */
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, main, 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;
  scroll-behavior: smooth;
}
*, *::before, *::after {
  box-sizing: inherit;
}
body {
  line-height: 1.6;
  background: #F4F7FB;
  color: #1A2236;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  background-image: url('../assets/decor-art.svg'); /* fallback, can be omitted */
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
}
img, svg {
  max-width: 100%;
  display: block;
}
a {
  color: #B82136;
  text-decoration: none;
  transition: color .2s;
}
a:hover, a:focus {
  color: #1A2236;
  text-decoration: underline;
}
ul, ol {
  list-style: none;
}

/* =================== BRAND FONTS =================== */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@700&family=Roboto:wght@400;500;700&display=swap');
h1, h2, h3, .cta-btn {
  font-family: 'Oswald', Impact, Arial, sans-serif;
  letter-spacing: 0.5px;
}

h1 {
  font-size: 2.5rem;
  color: #B82136;
  margin-bottom: 24px;
  line-height: 1.15;
  text-shadow: 1px 4px 12px rgba(186,33,54,.08);
  font-weight: 700;
}
h2 {
  font-size: 2rem;
  color: #1A2236;
  margin-bottom: 18px;
  font-weight: 700;
  position: relative;
}
h2::before {
  content: '';
  display: inline-block;
  background: #B82136;
  height: 6px;
  width: 38px;
  border-radius: 3px;
  margin-bottom: 6px;
  position: absolute;
  bottom: -13px;
  left: 0;
}
h3 {
  font-size: 1.22rem;
  margin-bottom: 10px;
  color: #B82136;
  font-weight: 700;
}
p, .newsletter-info {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1.0625rem;
  color: #222B43;
  margin-bottom: 14px;
}
.newsletter-info {
  color: #1A2236;
  font-weight: 500;
}
strong { font-weight: 700; }

/* =================== SPACING SYSTEM =================== */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0 12px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 0px;
  align-items: flex-start;
}

.text-section {
  width: 100%;
  margin-bottom: 20px;
  color: #222B43;
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  box-shadow: 0 4px 32px 0 rgba(26,34,54,0.08);
  border-radius: 20px;
  margin-bottom: 20px;
  padding: 24px 20px;
  position: relative;
  min-width: 260px;
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  transition: box-shadow .28s;
}
.card:hover {
  box-shadow: 0 10px 44px 0 rgba(184,33,54,0.14);
  z-index: 1;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.feature-item, .feature-mini li, .feature-highlights li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 14px 0 14px 0;
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.feature-grid li {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 18px 0 rgba(26,34,54,0.07);
  padding: 24px 18px 20px 18px;
  min-width: 220px;
  flex: 1 1 228px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow .22s;
}
.feature-grid li:hover {
  box-shadow: 0 8px 28px 0 rgba(184,33,54,0.15);
}

.feature-mini {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.feature-mini li {
  background: #FFEAEF;
  border-radius: 14px;
  padding: 15px 16px 14px 16px;
  color: #1A2236;
  flex: 1 1 185px;
  min-width: 160px;
  margin-bottom: 16px;
  box-shadow: 0 2px 12px 0 rgba(184,33,54,0.08);
}

.feature-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: flex-start;
}
.feature-icons li {
  background: #fff;
  border-radius: 14px;
  padding: 24px 18px;
  flex: 1 1 205px;
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 20px;
  box-shadow: 0 3px 18px 0 rgba(26,34,54,0.07);
}

.feature-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.feature-highlights li {
  background: #F6FAEF;
  border-radius: 13px;
  padding: 12px 14px;
  color: #25313f;
  flex: 1 1 180px;
  min-width: 140px;
  margin-bottom: 12px;
  box-shadow: 0 1px 9px 0 rgba(90,200,90,0.07);
  font-size: 1.08rem;
}

.category-list {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin: 18px 0 18px 0;
}
.category-list li {
  padding: 8px 14px;
  background: #F9E8E8;
  border-radius: 24px;
  color: #B82136;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.06rem;
  letter-spacing: .5px;
}

.ranking-list {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin: 10px 0 36px 0;
  counter-reset: rankcount;
}
.ranking-list li {
  position: relative;
  padding: 10px 10px 10px 36px;
  background: #fff;
  border-radius: 9px;
  font-weight: 500;
  color: #B82136;
  font-size: 1.11rem;
  margin-bottom: 6px;
  min-width: 230px;
  box-shadow: 0 2px 10px 0 rgba(184,33,54,0.07);
}
.ranking-list li:before {
  content: counter(rankcount) '.';
  counter-increment: rankcount;
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #1A2236;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.18rem;
  font-weight: 700;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-bottom: 28px;
}
.faq-list li {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1px 7px 0 rgba(26,34,54,0.06);
  padding: 16px 16px 11px 20px;
  margin-bottom: 10px;
}

/* =================== HERO/HEADER SECTION =================== */
header {
  background: #F4F7FB;
  padding: 0 0 0 0;
  border-bottom: 3px solid #B82136;
  position: relative;
  z-index: 10;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 12px 14px 12px;
}
header img {
  height: 45px;
}
nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
nav a {
  color: #1A2236;
  font-size: 1.025rem;
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 500;
  padding: 6px 4px;
  border-radius: 3px;
  transition: color .2s, background .2s;
}
nav a:hover, nav a:focus {
  background: #B82136;
  color: #fff;
}
.cta-btn {
  background-color: #B82136;
  color: #fff;
  border: none;
  border-radius: 34px;
  padding: 10px 36px;
  font-size: 1.16rem;
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 1.3px;
  box-shadow: 0 3px 15px 0 rgba(186,33,54,0.13);
  transition: background .24s, color .22s, box-shadow .22s, transform .15s;
  cursor: pointer;
  outline: none;
}
.cta-btn:hover, .cta-btn:focus {
  background: #fff;
  color: #B82136;
  border: 2px solid #B82136;
  box-shadow: 0 8px 22px 0 rgba(186,33,54,0.19);
  transform: translateY(-2px) scale(1.022);
}

.hero {
  background: #B82136;
  background-image: url('../assets/hero-art.svg'); /* decorative only */
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
  padding: 62px 0 62px 0;
  margin-bottom: 48px;
}
.hero .container {
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}
.hero .content-wrapper {
  color: #fff;
  gap: 20px;
}
.hero h1,
.hero h2 {
  color: #fff;
  text-shadow: 1px 5px 18px rgba(34,0,20,0.11);
}
.hero p {
  color: #fff;
}
.hero .cta-btn {
  background: #fff;
  color: #B82136;
  margin-top: 14px;
}
.hero .cta-btn:hover, .hero .cta-btn:focus {
  color: #fff;
  background: #B82136;
  border: 2px solid #fff;
}

/* =================== TESTIMONIALS =================== */
.testimonial-card {
  background: #fff;
  color: #222B43;
  border-radius: 18px;
  box-shadow: 0 4px 25px 0 rgba(20, 33, 54, .09);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  min-width: 230px;
  max-width: 540px;
  transition: box-shadow .18s;
}
.testimonial-card blockquote {
  font-style: italic;
  color: #1A2236;
  line-height: 1.45;
  font-size: 1.14rem;
  margin-bottom: 2px;
}

.testimonial-card .testimonial-meta {
  font-size: 0.99rem;
  color: #B82136;
  font-weight: 500;
  font-family: 'Oswald', Arial, sans-serif;
}
.star-ratings {
  display: flex;
  flex-direction: row;
  gap: 2px;
}
.star-ratings img {
  width: 23px;
  height: 23px;
  filter: drop-shadow(0 1px 2px rgba(186,33,54,.09));
}

/* =================== FOOTER =================== */
footer {
  background: #1A2236;
  color: #fff;
  padding: 30px 0 18px 0;
  margin-top: 44px;
}
footer .container {
  flex-direction: column;
  gap: 24px;
}
footer nav {
  gap: 13px;
}
footer nav a {
  color: #F4F7FB;
  font-size: 1.02rem;
}
footer nav a:hover {
  color: #B82136;
}
.footer-nav {
  margin-bottom: 11px;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #fff;
  margin-bottom: 8px;
}
.footer-contact img {
  vertical-align: middle;
  width: 16px;
  margin-right: 5px;
  opacity: .8;
}
.copyright {
  color: #F4F7FB;
  font-size: .92rem;
  margin-top: 4px;
  text-align: left;
}

/* =================== FILTERS / PANELS =================== */
.filter-controls {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 14px 0 18px 0;
}
.filter-controls button {
  background: #fff;
  color: #B82136;
  border: 1.5px solid #B82136;
  border-radius: 32px;
  padding: 6.5px 22px;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1rem;
  margin-right: 6px;
  transition: background .17s, color .17s, border .17s;
  cursor: pointer;
}
.filter-controls button:hover, .filter-controls button:focus {
  background: #B82136;
  color: #fff;
}
.quick-info-panels {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin: 21px 0 18px 0;
}
.quick-info-panels > div {
  flex: 1 1 180px;
  background: #E7FFEF;
  color: #1A2236;
  border-radius: 13px;
  padding: 12px 15px;
  font-size: 1.05rem;
  font-family: 'Roboto', Arial, sans-serif;
  box-shadow: 0 1px 8px 0 rgba(50,200,90,0.09);
}

/* =================== CONTACT & MISC SECTIONS =================== */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 11px;
  font-size: 1.09rem;
}
.map-embed {
  margin-bottom: 20px;
}
.cta-section {
  margin: 16px 0;
  display: flex;
  flex-direction: row;
  gap: 17px;
}

/* =================== COOKIE CONSENT BANNER =================== */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3000;
  background: #fff;
  color: #1A2236;
  border-top: 3px solid #B82136;
  box-shadow: 0 -4px 32px 0 rgba(26,34,54,0.13);
  padding: 22px 24px 22px 24px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 30px;
  justify-content: space-between;
  max-width: 700px;
  margin: 0 auto;
  animation: fadeInUp .54s cubic-bezier(.19,.93,.57,1.37);
}
.cookie-banner p {
  flex: 1 1 auto;
  margin-bottom: 0;
  font-size: 1.01rem;
  color: #1A2236;
}
.cookie-actions {
  display: flex;
  gap: 15px;
}
.cookie-banner button {
  border-radius: 28px;
  padding: 8px 20px;
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 600;
  border: none;
  background: #B82136;
  color: #fff;
  transition: background .19s, color .19s;
  cursor: pointer;
}
.cookie-banner button:nth-child(2) {
  background: #fff;
  color: #B82136;
  border: 1.5px solid #B82136;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  filter: brightness(0.93);
  background: #1A2236;
  color: #fff;
}

@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    gap: 16px;
    left: 9px;
    right: 9px;
    padding: 20px 14px 18px 14px;
    font-size: 0.98rem;
 max-width: 98vw;
  }
}

/* COOKIE SETTINGS MODAL */
.cookie-modal {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  z-index: 4000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: rgba(26,34,54, .54);
  animation: fadeIn .22s ease;
  pointer-events: auto;
}
.cookie-modal-content {
  background: #fff;
  border-radius: 21px;
  box-shadow: 0 6px 38px rgba(26,34,54,0.18);
  padding: 32px 28px 18px 28px;
  min-width: 290px;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 19px;
  font-size: 1.07rem;
  color: #1A2236;
  position: relative;
}
.cookie-modal h3 {
  margin-bottom: 11px;
  color: #B82136;
  font-size: 1.25rem;
  font-family: 'Oswald', Arial, sans-serif;
}
.cookie-category {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  width: 100%;
  font-size: 1.01rem;
  margin-bottom: 7px;
}
.cookie-category input[type="checkbox"] {
  accent-color: #B82136;
  width: 20px;
  height: 20px;
}
.cookie-modal-actions {
  display: flex;
  gap: 15px;
  margin-top: 9px;
}
.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 1.3rem;
  background: none;
  border: none;
  color: #B82136;
  cursor: pointer;
}
.cookie-modal button {
  border-radius: 24px;
  padding: 7.5px 19px;
  background: #B82136;
  color: #fff;
  border: none;
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.02rem;
  transition: background .19s, color .19s;
  cursor: pointer;
}
.cookie-modal button:last-child {
  background: #F4F7FB;
  color: #B82136;
  border: 1px solid #B82136;
}
.cookie-modal button:hover {
  filter: brightness(0.96)
}

/* =================== MOBILE MENU =================== */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  right: 18px;
  top: 17px;
  z-index: 1201;
  background: #B82136;
  color: #fff;
  border: none;
  border-radius: 14px;
  width: 46px;
  height: 46px;
  font-size: 2.3rem;
  cursor: pointer;
  box-shadow: 0 2px 16px rgba(26,34,54,0.06);
  transition: background .22s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #fff;
  color: #B82136;
  border: 2px solid #B82136;
}
@media (max-width: 1020px) {
  header .container nav,
  header .container .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: #fff;
  box-shadow: 2px 0 48px 0 rgba(26,34,54,0.35);
  z-index: 2500;
  transform: translateX(-100vw);
  opacity: 0;
  transition: transform .36s cubic-bezier(.27,1.39,.45,.98), opacity .17s;
  pointer-events: none;
}
.mobile-menu.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
  animation: slideInLeft .32s cubic-bezier(.24,1.4,.32,.99);
}
.mobile-menu-close {
  background: none;
  color: #B82136;
  font-size: 2.1rem;
  border: none;
  position: absolute;
  right: 19px;
  top: 22px;
  cursor: pointer;
  z-index: 11;
  padding: 6px 6px;
}
.mobile-nav {
  margin-top: 45px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: flex-start;
  width: 100vw;
  padding: 40px 27px 27px 27px;
  font-family: "Oswald", Arial, sans-serif;
}
.mobile-nav a {
  color: #1A2236;
  font-size: 1.14rem;
  font-weight: 600;
  border-radius: 6px;
  padding: 13px 10px;
  width: 96vw;
  display: block;
  transition: background .13s, color .13s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #fff;
  background: #B82136;
}

@media (max-width: 600px) {
  .mobile-nav {
    padding-left: 9px;
    padding-right: 9px;
    gap: 13px;
    font-size: 1.07rem;
  }
  .mobile-menu-close {
    right: 10px;
    top: 16px;
    font-size: 1.85rem;
  }
}

/* =================== INTERACTIONS & EFFECTS =================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(110px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideInLeft {
  from {
    transform: translateX(-100vw);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

button, .cta-btn, .mobile-menu-toggle, .mobile-menu-close, .cookie-banner button, .cookie-modal button {
  transition: background .22s, color .16s, box-shadow .22s;
  outline: none;
}
button:focus, .cta-btn:focus, .mobile-menu-toggle:focus, .mobile-menu-close:focus, .cookie-banner button:focus, .cookie-modal button:focus {
  box-shadow: 0 2px 8px 0 #B82136;
}

/* =================== RESPONSIVE =================== */
@media (max-width: 980px) {
  .container {
    max-width: 97vw;
    padding: 0 12px;
  }
  .feature-grid, .feature-icons {
    gap: 15px;
  }
  .feature-grid li, .feature-icons li {
    flex: 1 1 180px;
    min-width: 120px;
    padding: 16px 8px;
  }
  .content-wrapper {
    gap: 15px;
    padding: 0;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
    margin-bottom: 16px;
  }
  h2 {
    font-size: 1.32rem;
    margin-bottom: 12px;
  }
  .hero {
    padding: 36px 0 36px 0;
  }
  .feature-grid, .feature-icons, .feature-mini, .content-grid {
    flex-direction: column;
    gap: 11px;
  }
  .feature-grid li, .feature-icons li {
    min-width: unset;
    padding: 13px 7px;
  }
  .section {
    padding: 27px 7px;
    margin-bottom: 27px;
  }
  .faq-list li { padding: 13px 8px 10px 10px; }
  .testimonial-card {
    max-width: 98vw;
    padding: 14px;
    gap: 10px;
  }
  .contact-details {
    font-size: .95rem;
  }
}
@media (max-width: 370px) {
  h1, h2 { font-size: 1rem; }
  .cta-btn { font-size: 0.94rem; }
  .section { padding: 8px 2px; }
}

/* =================== ARTISTIC / CREATIVE ELEMENTS =================== */
/* Artistic edge: hand-drawn/irregular underline for h2, brush accents, bold shapes. */
h2::after {
  content: '';
  display: block;
  height: 3px;
  width: 64px;
  margin-top: 7px;
  background: #B82136;
  border-radius: 2px 6px 6px 2px;
  opacity: .45;
  margin-left: 3px;
}

.cta-btn, .filter-controls button, .cookie-banner button, .cookie-modal button {
  /* brush-stroke underline on hover */
  position: relative;
}
.cta-btn:hover::after, .filter-controls button:hover::after, .cookie-banner button:hover::after, .cookie-modal button:hover::after {
  content: '';
  position: absolute;
  left: 12px;
  bottom: 5px;
  width: 60%;
  height: 6px;
  background: #F4F7FB;
  opacity: .61;
  border-radius: 7px 11px 6px 15px;
  z-index: 2;
  pointer-events: none;
}

.feature-grid li img, .feature-icons li img {
  margin-bottom: 7px;
  width: 34px;
}

@media (max-width: 438px) {
  .feature-grid li img, .feature-icons li img { width: 22px; }
}

/* ============= UTILITY CLASSES & MISC ============= */
.thank-you-message, .next-steps {
  margin-bottom: 15px;
  color: #1A2236;
  font-size: 1.08rem;
}
.privacy-text, .rodo-text, .terms-text, .cookies-text {
  color: #1A2236;
  margin-bottom: 13px;
  font-size: 1.009rem;
}
.contact-information {
  margin-top: 16px;
  color: #1A2236;
}

@media (max-width: 480px) {
  footer .container, .container {
    max-width: 100vw;
    padding: 0 2vw;
  }
}

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