/* --- 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, 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;
}
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section {
  display: block;
}
body { line-height: 1; background: #fff; color: #20353B; }
ol, ul { list-style: none; }
a { text-decoration: none; color: inherit; }
img { border: 0; max-width: 100%; height: auto; display: block; }
button, input, select, textarea { font-family: inherit; font-size: inherit; color: inherit; background: none; border: none; outline: none; }
*:focus { outline: 2px solid #F89D35; outline-offset: 2px; }

/* --- CUSTOM PROPERTIES --- */
:root {
  --primary: #20353B;
  --secondary: #F89D35;
  --accent: #E4E6EA;
  --white: #fff;
  --black: #182225;
  --text-main: #20353B;
  --text-light: #fff;
  --text-muted: #6A7781;
  --shadow: 0 3px 24px 0 rgba(32,53,59,0.08), 0 1.5px 5px 0 rgba(32,53,59,0.06);
  --radius: 16px;
  --radius-sm: 8px;
}

/* --- FONTS --- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Roboto:wght@400;500;700&display=swap');
body {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  background: var(--accent);
  color: var(--text-main);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: var(--primary);
  font-weight: 900;
  margin-bottom: 12px;
  letter-spacing: -1.5px;
  line-height: 1.2;
}
h1 { font-size: 2.875rem; /* 46px */ }
h2 { font-size: 2.0rem;   /* 32px */ }
h3 { font-size: 1.5rem;   /* 24px */ }
h4 { font-size: 1.25rem;  /* 20px */ }
p, ul li, ol li { font-size: 1rem; line-height: 1.7; color: var(--text-main); margin-bottom: 16px; }
strong { font-weight: 700; }

/* --- GLOBAL CONTAINER --- */
.container {
  width: 100%;
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}

/* --- HEADER --- */
header {
  background: var(--white);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0; z-index: 20;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  gap: 28px;
  padding: 12px 20px;
}
header a img { height: 48px; width: auto; }
nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--primary);
  padding: 5px 6px;
  border-radius: var(--radius-sm);
  transition: background 0.16s, color 0.16s;
}
nav a:hover, nav a:focus {
  background: var(--secondary);
  color: var(--white);
}

/* --- BUTTONS --- */
.btn-primary {
  background: var(--secondary);
  color: var(--white);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  font-size: 1.10rem;
  padding: 14px 38px;
  border-radius: var(--radius);
  box-shadow: 0 4px 20px 0 rgba(248,157,53,0.08);
  transition: background 0.18s, color 0.18s, transform 0.15s;
  margin-left: 20px;
  letter-spacing: -0.5px;
  cursor: pointer;
  border: none;
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--primary);
  color: var(--secondary);
  transform: translateY(-2px) scale(1.04);
}
.btn-secondary {
  background: var(--primary);
  color: var(--secondary);
  border: 2px solid var(--secondary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 12px 34px;
  border-radius: var(--radius-sm);
  transition: background 0.16s, color 0.16s, border 0.16s;
  cursor: pointer;
  margin-top: 8px;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: var(--secondary);
  color: var(--white);
  border: 2px solid var(--primary);
}

/* --- SPACING & FLEX LAYOUTS --- */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--white);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  padding: 30px 26px;
  margin-bottom: 20px;
  position: relative;
  min-width: 250px;
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: box-shadow .16s, transform .16s;
}
.card:hover {
  box-shadow: 0 8px 32px 0 rgba(248,157,53,0.12), var(--shadow);
  transform: translateY(-2px) scale(1.01);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 13px;
}
.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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.testimonial-card {
  background: var(--accent);
  border-left: 7px solid var(--secondary);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 24px;
  box-shadow: 0 2px 14px rgba(32,53,59,0.06);
  color: var(--primary);
  transition: box-shadow .16s, border-left-color .18s;
  min-width: 220px;
  flex: 1 1 330px;
}
.testimonial-card:hover {
  box-shadow: 0 10px 30px 0 rgba(32,53,59,0.13);
  border-left-color: var(--primary);
}
.testimonial-card p {
  font-size: 1.08rem;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 0;
}
.testimonial-card span {
  color: var(--secondary);
  font-weight: 700;
  margin-left: auto;
  font-size: 0.96rem;
  font-family: 'Montserrat', Arial, sans-serif;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 36px;
}
.faq-item {
  background: var(--white);
  border-left: 6px solid var(--secondary);
  box-shadow: 0 2px 10px rgba(32,53,59,0.06);
  border-radius: var(--radius-sm);
  padding: 18px 22px;
}
.faq-item h2 {
  font-size: 1.32rem;
  color: var(--primary);
}
.notice {
  background: var(--secondary);
  color: var(--white);
  padding: 16px 22px;
  border-radius: var(--radius-sm);
  margin-top: 20px;
  font-weight: 500;
  box-shadow: 0 1.5px 8px rgba(248,157,53,0.08);
}

/* --- ICON LISTS --- */
ul li, ol li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 10px;
  padding-left: 0px;
}
ul li img {
  width: 26px;
  height: 26px;
  background: var(--accent);
  border-radius: 50%;
  padding: 3px;
  margin-right: 5px;
  box-shadow: 0 0.5px 2px rgba(32,53,59,0.07);
}

/* --- TEXT SECTIONS --- */
.text-section {
  background: none;
  padding: 0;
  margin: 0 0 20px 0;
}
.text-section h2, .text-section h3 {
  margin-top: 16px;
  margin-bottom: 8px;
}
.text-section ul {
  margin-bottom: 0;
}

/* --- BOLD VISUAL ELEMENTS (GEOMETRIC SHAPES/ACCENTS) --- */
.section {
  position: relative;
  overflow: hidden;
}
.section::before {
  content: '';
  position: absolute;
  top: -50px; right: -60px;
  width: 130px; height: 130px;
  background: var(--secondary);
  opacity: 0.12;
  border-radius: 32% 68% 56% 44% / 65% 35% 65% 35%;
  z-index: 0;
}
.section > * { position: relative; z-index: 1; }

/* --- FOOTER --- */
footer {
  background: var(--primary);
  color: var(--white);
  margin-top: 60px;
  padding: 40px 0 0 0;
  box-shadow: 0 -1.5px 12px rgba(32,53,59,0.10);
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 24px;
}
footer nav {
  flex-direction: column;
  gap: 8px;
}
footer nav a {
  color: var(--secondary);
  font-weight: 500;
  font-size: 1.02rem;
  transition: color 0.13s;
  margin-bottom: 2px;
}
footer nav a:hover {
  color: var(--accent);
  text-decoration: underline;
}
.footer-contact p {
  font-size: 0.98rem;
  color: var(--accent);
  margin-bottom: 7px;
}
footer a img {
  height: 36px;
  margin-bottom: 16px;
}

/* --- MOBILE BURGER MENU --- */
.mobile-menu-toggle {
  display: none;
  position: relative;
  background: var(--secondary);
  color: var(--white);
  border-radius: var(--radius-sm);
  font-size: 2.1rem;
  width: 48px; height: 48px;
  align-items: center; justify-content: center;
  cursor: pointer;
  margin-left: 18px;
  transition: background 0.14s;
  z-index: 30;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--primary);
  color: var(--secondary);
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; height: 100vh; width: 100vw;
  background: rgba(32,53,59, 0.96);
  color: var(--white);
  z-index: 100;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(.68,-0.55,0.27,1.55);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 0;
  overflow-y: auto;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  margin: 28px 28px 0 0;
  background: transparent;
  color: var(--secondary);
  font-size: 2rem;
  border: none;
  cursor: pointer;
  transition: color 0.13s;
  z-index: 102;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--white);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  padding: 60px 28px 28px 40px;
  width: 100%;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.45rem;
  color: var(--secondary);
  border-radius: var(--radius-sm);
  background: none;
  padding: 7px 6px;
  transition: background 0.14s, color 0.14s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--secondary);
  color: var(--white);
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  left: 0; bottom: 0; width: 100vw;
  background: var(--primary);
  color: var(--white);
  padding: 26px 20px 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  justify-content: center;
  z-index: 1003;
  box-shadow: 0 -2px 18px rgba(32,53,59,0.11);
  animation: slideUp 0.7s cubic-bezier(.43,1.4,.6,1) 0s 1;
}
@keyframes slideUp {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  font-size: 1.04rem;
  color: var(--white);
  text-align: center;
  margin-bottom: 0;
}
.cookie-banner .cookie-btns {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.cookie-banner button,
.cookie-banner .btn-settings {
  border-radius: var(--radius-sm);
  padding: 10px 20px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 0.98rem;
  border: none;
  cursor: pointer;
  transition: background .14s, color .14s;
}
.cookie-banner .btn-accept {
  background: var(--secondary);
  color: var(--white);
}
.cookie-banner .btn-accept:hover, .cookie-banner .btn-accept:focus {
  background: var(--white);
  color: var(--secondary);
}
.cookie-banner .btn-reject {
  background: var(--white);
  color: var(--primary);
  border: 2px solid var(--secondary);
}
.cookie-banner .btn-reject:hover, .cookie-banner .btn-reject:focus {
  background: var(--secondary);
  color: var(--white);
}
.cookie-banner .btn-settings {
  background: none;
  color: var(--secondary);
  text-decoration: underline;
  border: none;
}
.cookie-banner .btn-settings:hover, .cookie-banner .btn-settings:focus {
  background: var(--secondary);
  color: var(--white);
  text-decoration: none;
}

/* --- COOKIE SETTINGS MODAL --- */
.cookie-modal {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(32, 53, 59, 0.88);
  z-index: 1005;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: modalIn .4s cubic-bezier(.43,1.4,.6,1) 0s 1;
}
@keyframes modalIn {
  from { opacity: 0; transform: scale(0.86) translateY(60px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
.cookie-modal .cookie-modal-content {
  background: var(--white);
  color: var(--primary);
  border-radius: var(--radius);
  max-width: 460px;
  width: 94vw;
  padding: 36px 28px 30px 28px;
  text-align: left;
  box-shadow: 0 3px 32px 0 rgba(32,53,59,0.22);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cookie-modal .cookie-modal-content h2 {
  color: var(--primary);
  margin-bottom: 9px;
  font-size: 1.30rem;
  font-family: 'Montserrat',Arial,sans-serif;
  font-weight: 900;
}
.cookie-modal .cookie-modal-content .cookie-category {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 13px;
}
.cookie-modal .cookie-modal-content .cookie-toggle {
  margin-left: auto;
}
.cookie-modal .cookie-modal-content .cookie-toggle input[type="checkbox"] {
  appearance: none;
  width: 36px; height: 20px;
  background: var(--accent);
  border-radius: 12px;
  position: relative;
  cursor: pointer;
  transition: background 0.15s;
  border: none;
}
.cookie-modal .cookie-modal-content .cookie-toggle input[type="checkbox"]:checked {
  background: var(--secondary);
}
.cookie-modal .cookie-modal-content .cookie-toggle input[type="checkbox"]::before {
  content: '';
  display: block;
  width: 18px; height: 18px;
  background: var(--white);
  border-radius: 50%;
  position: absolute;
  left: 1px; top: 1px;
  transition: left 0.15s;
  box-shadow: 0 1.5px 5px rgba(32,53,59,0.07);
}
.cookie-modal .cookie-modal-content .cookie-toggle input[type="checkbox"]:checked::before {
  left: 17px;
  background: var(--white);
}
.cookie-modal .cookie-modal-content .cookie-category label {
  font-weight: 600;
  color: var(--primary);
  font-size: 1.01rem;
}
.cookie-modal .cookie-modal-content .cookie-buttons {
  display: flex;
  gap: 20px;
  justify-content: flex-end;
  margin-top: 16px;
}
.cookie-modal .cookie-modal-content button {
  border-radius: var(--radius-sm);
  padding: 10px 20px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 0.98rem;
  border: none;
  cursor: pointer;
  transition: background .13s, color .13s;
}
.cookie-modal .cookie-modal-content .btn-accept {
  background: var(--secondary);
  color: var(--white);
}
.cookie-modal .cookie-modal-content .btn-accept:hover {
  background: var(--primary);
  color: var(--secondary);
}
.cookie-modal .cookie-modal-content .btn-cancel {
  background: var(--accent);
  color: var(--primary);
}
.cookie-modal .cookie-modal-content .btn-cancel:hover {
  background: var(--secondary);
  color: var(--white);
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  top: 20px; right: 30px;
  background: none;
  color: var(--secondary);
  font-size: 2.1rem;
  border: none;
  cursor: pointer;
  z-index: 110;
}
.cookie-modal .cookie-modal-close:hover, .cookie-modal .cookie-modal-close:focus {
  color: var(--primary);
}

/* --- RESPONSIVE --- */
@media (max-width: 1080px) {
  .container { max-width: 1000px; }
}
@media (max-width: 900px) {
  .container { max-width: 90vw; }
  .footer-contact { font-size: 0.92rem; }
}
@media (max-width: 768px) {
  h1 { font-size: 2.0rem; }
  h2 { font-size: 1.44rem; }
  h3 { font-size: 1.15rem; }
  h4 { font-size: 1.02rem; }
  .btn-primary, .btn-secondary { padding: 12px 18px; font-size: 0.99rem; }
  .container {
    max-width: 98vw;
    padding: 0 10px;
  }
  .content-wrapper,
  .faq-list,
  .card-container,
  .card,
  .section {
    gap: 18px;
  }
  header .container {
    flex-direction: row;
    gap: 13px;
    padding: 10px 10px;
  }
  nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (max-width: 768px) {
  .footer-contact { margin-top: 34px; }
  footer .container {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
    padding-bottom: 16px;
  }
  .section {
    padding: 25px 5px 30px 5px;
    margin-bottom: 30px;
  }
}
@media (max-width: 650px) {
  .section,
  .card {
    padding: 22px 7px;
  }
  nav, .footer-contact, .section, .card { font-size: 0.97rem; }
  .testimonial-card {
    padding: 14px 7px;
    flex-direction: column;
    gap: 8px;
    min-width: 150px;
  }
  .mobile-nav a { font-size: 1.15rem; }
}
@media (max-width: 520px) {
  h1 { font-size: 1.18rem; }
  .btn-primary, .btn-secondary { padding: 10px 12px; }
  .card, .section, .cookie-modal .cookie-modal-content { border-radius: 8px; }
  .testimonials, .testimonial-card { border-radius: 7px; }
  .footer-contact p { font-size: 0.93rem; }
}
@media (max-width: 650px) {
  .text-image-section,.content-grid {
    flex-direction: column;
    gap: 16px;
  }
}

/* --- UTILITIES & MISC --- */
::-webkit-scrollbar {
  width: 8px; background: var(--accent);
}
::-webkit-scrollbar-thumb {
  background: var(--secondary); border-radius: 8px;
}
::selection { background: var(--secondary); color: var(--white); }

/* Hide mobile menu nav-links for desktop: shown in JS by .open */
.mobile-menu { display: none; }
.mobile-menu.open { display: flex; }

/* Hide cookie-modal and cookie-banner by default - shown via JS */
.cookie-banner { display: none; }
.cookie-banner.show { display: flex; }
.cookie-modal { display: none; }
.cookie-modal.open { display: flex; }


/* --- END OF MODERN_BOLD STYLE CSS --- */
