/* 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;
  height: 100%;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  min-height: 100vh;
  background: #fff;
  color: #141414;
  font-family: "Roboto", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  display: block;
  border: none;
}
a {
  color: #141414;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus, a:hover {
  color: #1877B4;
  outline: none;
}
ul, ol {
  list-style: none;
}
h1, h2, h3, h4, h5, h6 {
  font-family: "Montserrat", Arial, sans-serif;
  color: #111;
  font-weight: 700;
  line-height: 1.18;
  margin-bottom: 16px;
}
h1 {
  font-size: 2.5rem;
  letter-spacing: -1px;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  font-weight: 600;
}

/* Typography scale */
p, .content-wrapper > ul, .content-wrapper > ol {
  font-size: 1rem;
  margin-bottom: 16px;
}
strong, b {
  font-weight: bold;
}

/* CONTAINERS & SECTION */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

/* FLEX PATTERNS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 24px 0 rgba(0,0,0,.06);
  border: 1px solid #dedede;
  padding: 32px 24px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow 0.3s, transform 0.2s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 6px 30px 0 rgba(17,17,17,0.10);
  transform: translateY(-4px) scale(1.012);
  z-index: 2;
}
.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: #f7f7f7;
  border: 1.5px solid #ccc;
  border-radius: 12px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
  max-width: 520px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 10px 0 rgba(0,0,0,0.08);
  border: 1px solid #e3e3e3;
  padding: 28px 18px;
  flex: 1 1 210px;
}

/* HEADER & NAVIGATION */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 12px 0 rgba(30,30,30,0.09);
  position: relative;
  z-index: 1001;
}
header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 20px 20px 18px 20px;
  gap: 18px;
}
.logo-link img {
  height: 48px;
  width: auto;
  display: block;
}
.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 28px;
  margin-left: 25px;
}
.main-nav a {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #232323;
  opacity: 0.87;
  padding: 6px 4px;
  border-radius: 2px;
  transition: color .2s, background .2s;
}
.main-nav a.active, .main-nav a:focus, .main-nav a:hover {
  color: #1877B4;
  background: #efefef;
}
.cta-primary {
  background: #141414;
  color: #fff;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 1.1rem;
  padding: 12px 28px;
  border: none;
  border-radius: 30px;
  font-weight: 600;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 10px 0 rgba(17,17,17,0.08);
  cursor: pointer;
  margin-left: 32px;
  transition: background .2s, color .2s, transform .18s;
  display: inline-block;
}
.cta-primary:hover, .cta-primary:focus {
  background: #fff;
  color: #141414;
  border: 1.5px solid #232323;
  box-shadow: 0 4px 16px 0 rgba(17,17,17,0.15);
  transform: translateY(-3px) scale(1.04);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2em;
  color: #232323;
  cursor: pointer;
  z-index: 1002;
  position: absolute;
  top: 27px;
  right: 18px;
  padding: 8px 12px;
  border-radius: 8px;
  transition: background .2s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #ededed;
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  box-shadow: 0 0 60px rgba(0,0,0,0.12);
  transform: translateX(-100vw);
  transition: transform 0.35s cubic-bezier(.65,0,.35,1);
  z-index: 3000;
  display: flex;
  flex-direction: column;
  padding-top: 48px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  right: 16px;
  top: 18px;
  background: none;
  border: none;
  font-size: 2.1rem;
  color: #232323;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 8px;
  z-index: 3001;
  transition: background .2s;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  background: #ededed;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  align-items: flex-start;
  margin: 40px 26px;
}
.mobile-nav a {
  font-size: 1.18rem;
  font-family: "Montserrat", Arial, sans-serif;
  color: #232323;
  font-weight: 600;
  padding: 9px 0;
  border-bottom: 1px solid #e4e4e4;
  width: 100%;
  transition: color 0.18s;
}
.mobile-nav a:focus,
.mobile-nav a:hover {
  color: #1877B4;
}

/* HERO SECTIONS */
.hero-section,
.promo-hero-section,
.knowledge-hero-section,
.thank-you-section {
  width: 100%;
  background: #fff;
  padding: 60px 0 38px 0;
  margin-bottom: 40px;
  border-bottom: 2.5px solid #151515;
  box-shadow: 0 8px 40px -10px rgba(0,0,0,0.04);
}
.hero-section h1, .promo-hero-section h1, .knowledge-hero-section h1, .thank-you-section h1 {
  font-size: 2.3rem;
  color: #111;
  margin-bottom: 12px;
}
.hero-section h2, .promo-hero-section h2, .knowledge-hero-section h2 {
  color: #262626;
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 18px;
}

/* FEATURES & PROMOTIONS */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
  margin-top: 10px;
}
.promotion-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 22px;
}
.promo-card {
  background: #fff;
  border: 1px solid #dcdcdc;
  border-radius: 12px;
  box-shadow: 0 2px 12px 0 rgba(30,30,30,0.07);
  padding: 28px 20px;
  min-width: 220px;
  max-width: 325px;
  flex: 1 1 225px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow 0.2s, transform 0.18s;
}
.promo-card:hover, .promo-card:focus-within {
  box-shadow: 0 6px 32px 0 rgba(17,17,17,0.13);
  transform: translateY(-4px) scale(1.014);
  z-index: 2;
}
.promo-badge {
  position: absolute;
  top: 18px;
  right: 15px;
  background: #141414;
  color: #FFD600;
  font-family: "Montserrat", Arial, sans-serif;
  padding: 2px 11px 2px 13px;
  border-radius: 20px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: .5px;
  box-shadow: 0 1px 6px rgba(0,0,0,0.06);
}

/* BADGES & FILTERS */
.badge {
  display: inline-block;
  background: #232323;
  color: #FFD600;
  font-size: 0.92rem;
  font-family: "Montserrat", Arial, sans-serif;
  border-radius: 14px;
  padding: 2px 9px;
  margin: 0 4px 0 0;
  font-weight: 600;
  letter-spacing: .3px;
}
.category-filters {
  display: flex;
  flex-direction: row;
  gap: 18px;
  align-items: center;
  margin-bottom: 14px;
}

/* GUIDES AND TEAM */
.guide-cards, .team-list, .statistics-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.guide-card, .team-member, .stat-item {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px 0 rgba(30,30,30,0.07);
  border: 1px solid #dedede;
  padding: 26px 18px;
  margin-bottom: 20px;
  max-width: 350px;
  flex: 1 1 220px;
}
.stat-item {
  display: flex;
  gap: 16px;
  align-items: center;
  font-size: 1.1rem;
  font-family: "Montserrat", Arial, sans-serif;
}
.stat-item img {
  width: 32px; height: 32px;
}

/* ACCORDION FAQ */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 16px;
}
.faq-item {
  background: #f6f6f6;
  border: 1px solid #e4e4e4;
  border-radius: 10px;
  padding: 22px 18px;
  transition: box-shadow 0.2s;
}
.faq-item h3 {
  font-size: 1.08rem;
  font-family: "Montserrat", Arial, sans-serif;
  margin-bottom: 8px;
}
.faq-item p {
  font-size: 1.02rem;
  color: #3f3f3f;
}
.faq-item:hover, .faq-item:focus-within {
  box-shadow: 0 4px 20px rgba(20,20,20,.10);
}

/* FOOTER */
footer {
  background: #101010;
  color: #eee;
  font-size: 1rem;
  margin-top: 60px;
  box-shadow: 0 -2px 16px 0 rgba(30,30,30,0.08);
}
.footer-top {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1.5px solid #353535;
  padding: 30px 0 18px 0;
}
.footer-nav {
  display: flex;
  gap: 26px;
  align-items: center;
  flex-direction: row;
}
.footer-nav a {
  color: #dadada;
  font-family: "Montserrat", Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  padding: 3px 0;
  border-radius: 2px;
  transition: color 0.18s, background 0.2s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #FFD600;
  background: #262626;
}
.footer-bottom {
  padding: 24px 0 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
  justify-content: space-between;
}
footer address,
footer p {
  font-style: normal;
  color: #bcbcbc;
  font-size: 0.98rem;
  line-height: 1.7;
}
footer address a {
  color: #FFD600;
  transition: color 0.17s;
  word-break: break-all;
}
footer address a:hover, footer address a:focus {
  color: #fff;
}

/* TESTIMONIALS */
.testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 12px;
}
.testimonial-card {
  background: #f7f7f7;
  color: #141414;
  max-width: 410px;
  border: 1px solid #cecece;
  box-shadow: 0 2px 10px 0 rgba(51,51,51,0.09);
}
.testimonial-card p {
  font-size: 1.07rem;
  color: #191919;
  font-family: "Roboto", Arial, sans-serif;
  margin-bottom: 8px;
}
.testimonial-card span {
  font-size: 0.97rem;
  color: #787878;
  font-family: "Montserrat", Arial, sans-serif;
}
.testimonial-card strong {
  color: #232323;
}

/* COOKIES CONSENT */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: rgba(24,24,24,0.98);
  box-shadow: 0 -2px 16px 0 rgba(17,17,17,0.15);
  color: #fff;
  width: 100vw;
  z-index: 7000;
  padding: 18px 12px 18px 12px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 26px;
  font-size: 0.98rem;
  transition: transform .4s cubic-bezier(.6,0,.4,1);
}
.cookie-banner--hidden {
  transform: translateY(130%);
  pointer-events: none;
}
.cookie-banner__text {
  flex: 2 1 350px;
  max-width: 500px;
  color: #dadada;
}
.cookie-banner__buttons {
  display: flex;
  flex-direction: row;
  gap: 18px;
  align-items: center;
  flex: 1 0 auto;
}
.cookie-btn,
.cookie-btn-main {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 1.07rem;
  border-radius: 22px;
  padding: 9px 22px;
  border: 1.7px solid #fff;
  background: transparent;
  color: #fff;
  cursor: pointer;
  margin-right: 0;
  margin-bottom: 0;
  box-shadow: 0 1px 8px rgba(50,50,50,0.08);
  transition: background 0.18s, color 0.2s, border .17s;
}
.cookie-btn-main {
  background: #FFD600;
  color: #1D1D1D;
  border: 1.7px solid #FFD600;
  font-weight: 700;
}
.cookie-btn-main:hover, .cookie-btn-main:focus {
  background: #fff;
  color: #232323;
  border: 1.7px solid #fff;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #191919;
  color: #FFD600;
  border: 1.7px solid #FFD600;
}
/* Cookie modal styles */
.cookie-modal-backdrop {
  position: fixed;
  z-index: 9999;
  inset: 0;
  background: rgba(28,28,28,0.58);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.24s cubic-bezier(.5,0,.7,1);
}
.cookie-modal {
  background: #fff;
  border-radius: 16px;
  padding: 34px 28px 28px 28px;
  box-shadow: 0 8px 48px rgba(30,30,30,0.19);
  max-width: 450px;
  width: 92vw;
  color: #151515;
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: 1rem;
  position: relative;
  animation: popIn 0.3s cubic-bezier(0,.9,.4,1);
}
.cookie-modal-close {
  position: absolute;
  right: 18px; top: 14px;
  background: none;
  border: none;
  color: #232323;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 6px 10px;
  border-radius: 8px;
}
.cookie-modal h2 {
  font-size: 1.25rem;
  margin-bottom: 4px;
  color: #111;
}
.cookie-category {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f5f5f5;
  border-radius: 6px;
  padding: 10px 16px;
  margin-bottom: 10px;
  border: 1px solid #e7e7e7;
}
.cookie-category.essential .cookie-category-toggle {
  pointer-events: none;
  opacity: 0.5;
}
.cookie-category-title {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 1.03rem;
  font-weight: 600;
}
.cookie-category-toggle {
  cursor: pointer;
  appearance: none;
  width: 38px; height: 22px;
  background: #dadada;
  border-radius: 14px;
  position: relative;
  outline: none;
  transition: background 0.18s;
  border: none;
}
.cookie-category-toggle:checked {
  background: #141414;
}
.cookie-category-toggle:before {
  content: '';
  position: absolute;
  left: 3px; top: 3px;
  width: 16px; height: 16px;
  background: #fff;
  border-radius: 50%;
  transition: transform .19s cubic-bezier(.65,0,.35,1);
  box-shadow: 0 2px 6px 0 rgba(30,30,30,0.15);
}
.cookie-category-toggle:checked:before {
  transform: translateX(16px);
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes popIn {
  from { opacity: 0; transform: scale(0.93); }
  to   { opacity: 1; transform: scale(1); }
}

/* BUTTONS & MICROINTERACTIONS */
button, .button {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 1em;
  color: #fff;
  background: #232323;
  border: none;
  border-radius: 24px;
  padding: 10px 26px;
  font-weight: 600;
  box-shadow: 0 2px 9px 0 rgba(30,30,30,0.09);
  cursor: pointer;
  transition: background .18s, color .18s, transform .15s;
}
button:focus, .button:focus, button:hover, .button:hover {
  background: #111;
  color: #FFD600;
  outline: none;
  transform: translateY(-2px) scale(1.05);
}

/* MISC: LISTS, ADDRESS, CONTACT */
address, .contact-details, .location-section ul, .services-section .steps-list, .about-section ul {
  margin-bottom: 24px;
}
.services-section .steps-list {
  display: flex;
  flex-direction: column;
  gap: 17px;
  padding-left: 6px;
  padding-bottom: 16px;
  font-size: 1.01rem;
}
.contact-details {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 18px;
}
.address-item, .phone-email-item, .opening-hours-item {
  display: flex;
  flex-direction: column;
  gap: 7px;
  align-items: flex-start;
  background: #fafafa;
  border-radius: 10px;
  border: 1px solid #ececec;
  padding: 16px 18px;
  min-width: 220px;
  font-size: 0.98rem;
  margin-bottom: 10px;
  box-shadow: 0 2px 7px rgba(30,30,30,0.03);
}
.address-item img, .phone-email-item img, .opening-hours-item img {
  width: 20px;
  margin-bottom: 7px;
}
.location-section ul {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.location-section ul li {
  display: flex;
  align-items: center;
  gap: 13px;
}

/* POLICY SECTIONS */
.policy-section, .policy-section .content-wrapper {
  background: #fff;
  border-radius: 10px;
}
.policy-section .content-wrapper {
  border: 1.5px solid #dedede;
  padding: 36px 20px 26px 20px;
  margin: 0 auto;
  max-width: 800px;
  box-shadow: 0 2px 14px -2px rgba(20,20,20,0.09);
}
.policy-section ul {
  list-style: disc inside;
  margin-left: 22px;
}

/* THANK YOU */
.confirmation-message {
  font-size: 1.18rem;
  color: #1d1d1d;
  margin-bottom: 24px;
  margin-top: 4px;
}

/* SHARED SPACING - avoid overlap */
section, .section {
  margin-bottom: 60px;
  padding-top: 40px;
  padding-bottom: 40px;
}
.section:last-child, footer {
  margin-bottom: 0 !important;
}

/* RESPONSIVE (mobile-first) */
@media (max-width: 1200px) {
  .container {
    max-width: 970px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 22px;
  }
}
@media (max-width: 995px) {
  .container {
    max-width: 740px;
  }
  .main-nav {
    gap: 13px;
    margin-left: 10px;
  }
  .footer-top {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
}
@media (max-width: 768px) {
  .container {
    max-width: 99vw;
    padding-left: 11px;
    padding-right: 11px;
  }
  .hero-section, .promo-hero-section, .knowledge-hero-section, .thank-you-section {
    padding: 34px 0 20px 0;
  }
  header .container {
    flex-direction: row;
    align-items: center;
    padding: 13px 12px 12px 12px;
  }
  .logo-link img {
    height: 38px;
  }
  .main-nav, .cta-primary {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .content-wrapper {
    padding: 0 1px;
    gap: 16px;
  }
  .feature-grid, .promotion-list, .guide-cards, .testimonials, .team-list, .statistics-list, .card-container {
    flex-direction: column;
    gap: 20px;
  }
  .footer-nav {
    gap: 16px;
    font-size: 1rem;
  }
  .footer-top, .footer-bottom {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .cookie-banner__buttons {
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }
  .text-image-section, .card-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .category-filters {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }
  .contact-details {
    flex-direction: column;
    gap: 13px;
  }
}
@media (max-width: 480px) {
  body { font-size: 15px; }
  h1 { font-size: 1.45rem; }
  h2 { font-size: 1.15rem; }
  .cookie-modal { padding: 18px 6px 16px 8px; }
  .guide-card, .promo-card, .feature-item, .testimonial-card {
    padding: 15px 10px !important;
  }
}
