/* --- 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;
  box-sizing: border-box;
}

html {
  box-sizing: border-box;
  font-size: 16px;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  background: #F6F6F6;
  color: #2E3A4E;
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  font-size: 1rem;
  line-height: 1.7;
  min-height: 100vh;
  letter-spacing: 0.01em;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #14A098;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #195a53;
  text-decoration: underline;
}
ul, ol {
  margin-left: 1.5em;
}
li + li {
  margin-top: 0.3em;
}
table {
  border-collapse: collapse;
  width: 100%;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(46,58,78,0.06);
  margin-bottom: 32px;
}
th, td {
  padding: 16px 12px;
  border-bottom: 1px solid #e3e3e3;
  text-align: left;
  font-family: inherit;
}
th {
  background: #f4f4f4;
  font-weight: 700;
}
tr:last-child td {
  border-bottom: none;
}

::-webkit-input-placeholder { color: #8a94a6; }
::-moz-placeholder { color: #8a94a6; }
:-ms-input-placeholder { color: #8a94a6; }
::placeholder { color: #8a94a6; }

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  font-weight: 700;
  color: #2E3A4E;
}
h1 {
  font-size: 2.4rem;
  line-height: 1.16;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.35rem;
  margin-bottom: 8px;
}
h4 {
  font-size: 1.1rem;
  margin-bottom: 6px;
}
p {
  font-size: 1.06rem;
  margin-bottom: 1.1em;
}
strong {
  font-weight: 700;
}

/* --- LAYOUT CONTAINERS --- */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
  display: flex;
  flex-direction: column;
  gap: 0px;
}

.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 3px 16px 0 rgba(46,58,78,0.06);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 3px 18px 0 rgba(46,58,78,0.07);
  margin-bottom: 20px;
  padding: 28px 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 250px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}

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

.text-image-section {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
  background: #F6F6F6;
  border-left: 5px solid #14A098;
  padding: 20px 28px 20px 24px;
  border-radius: 14px;
  box-shadow: 0 2px 16px 0 rgba(46,58,78,0.06);
  margin-bottom: 20px;
  min-width: 220px;
  max-width: 700px;
}
.testimonial-card p {
  font-size: 1.08rem;
  font-style: italic;
  margin-bottom: 4px;
}
.testimonial-card span {
  font-size: 0.96rem;
  color: #2E3A4E;
  font-style: normal;
}
.testimonial-card [aria-label="Ocena"] img {
  width: 20px;
  height: 20px;
  display: inline-block;
  margin-right: 2px;
  vertical-align: baseline;
}

.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.feature-grid > div {
  background: #fff;
  border-radius: 12px;
  padding: 28px 18px 24px 18px;
  box-shadow: 0 1px 10px 0 rgba(46,58,78,0.06);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 220px;
  flex: 1 1 225px;
  transition: box-shadow 0.17s;
}
.feature-grid > div:hover {
  box-shadow: 0 4px 24px 0 rgba(20,160,152,0.13);
}
.feature-grid img {
  width: 48px;
  height: 48px;
  margin-bottom: 15px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.text-section {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
  margin-top: 16px;
  margin-bottom: 12px;
  font-size: 0.98rem;
  color: #2E3A4E;
}
.footer-contact div {
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-contact img {
  width: 19px;
  height: 19px;
}

/* --- HEADER & NAVIGATION --- */
header {
  background: #fff;
  box-shadow: 0 2px 10px 0 rgba(46,58,78,0.045);
  position: sticky;
  top: 0;
  z-index: 1080;
  width: 100%;
}
header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  gap: 18px;
}
header nav {
  display: flex;
  gap: 20px;
  align-items: center;
}
header nav a {
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  font-weight: 500;
  color: #2E3A4E;
  font-size: 1.08rem;
  padding: 5px 0 4px 0;
  border-radius: 2px;
  transition: color 0.2s, background 0.15s;
}
header nav a.cta-primary {
  font-weight: 700;
  background: #14A098;
  color: #fff;
  border-radius: 999px;
  padding: 8px 20px;
  margin-left: 10px;
  transition: background 0.2s, box-shadow 0.18s;
  box-shadow: 0 2px 8px 0 rgba(20,160,152,0.09);
  border: none;
  text-shadow: none;
}
header nav a.cta-primary:hover, header nav a.cta-primary:focus {
  background: #195a53;
  box-shadow: 0 4px 18px 0 rgba(20,160,152,0.18);
  color: #fff;
}
header nav a:hover, header nav a:focus {
  color: #14A098;
  background: #f3fbfb;
}

header img[alt="SalloDisca"] {
  width: 140px;
  height: auto;
  display: block;
}

/* --- MOBILE MENU --- */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  line-height: 1;
  color: #14A098;
  margin-left: 14px;
  cursor: pointer;
  z-index: 2001;
  transition: color 0.18s;
}
.mobile-menu-toggle:focus {
  outline: 2px solid #14A098;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 82vw;
  max-width: 340px;
  height: 100vh;
  background: #fff;
  box-shadow: -8px 0 18px rgba(46,58,78,0.09);
  transform: translateX(100%);
  transition: transform 0.33s cubic-bezier(0.5,0.1,0.12,1);
  z-index: 2100;
  display: flex;
  flex-direction: column;
  padding: 24px 18px 18px 18px;
  gap: 26px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2rem;
  color: #2E3A4E;
  align-self: flex-end;
  cursor: pointer;
  margin-bottom: 8px;
  transition: color 0.15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #14A098;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.mobile-nav a {
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  font-size: 1.14rem;
  color: #2E3A4E;
  padding: 8px 0;
  border-radius: 2px;
  transition: background 0.19s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #f0f9f9;
  color: #14A098;
}

/* Overlay to dim background */
.mobile-menu-backdrop {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(44,62,80,0.20);
  z-index: 2099;
  display: none;
}
.mobile-menu.open ~ .mobile-menu-backdrop {
  display: block;
}

/* --- MAIN & SECTION SPACING --- */
main {
  width: 100%;
  padding-top: 30px;
  padding-bottom: 30px;
}
section {
  width: 100%;
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 3px 16px 0 rgba(46,58,78,0.06);
  display: flex;
  flex-direction: column;
  gap: 24px;
}
section:last-child {
  margin-bottom: 0;
}

/* --- BUTTONS & CTA STYLES --- */
.cta-primary,
button,
input[type=submit] {
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  font-size: 1.08rem;
  font-weight: 700;
  background: #14A098;
  color: #fff;
  border-radius: 999px;
  padding: 12px 32px;
  border: none;
  margin-top: 10px;
  box-shadow: 0 2px 8px 0 rgba(20,160,152,0.09);
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.18s, transform 0.17s;
  text-shadow: none;
  outline: none;
  letter-spacing: 0.01em;
  display: inline-block;
}
.cta-primary:hover, .cta-primary:focus,
button:hover, button:focus,
input[type=submit]:hover, input[type=submit]:focus {
  background: #195a53;
  color: #FFF;
  box-shadow: 0 5px 22px 0 rgba(20,160,152,0.16);
  transform: translateY(-2px) scale(1.03);
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  z-index: 3000;
  background: #fff;
  border-top: 2px solid #14A098;
  box-shadow: 0 -3px 24px 0 rgba(20,160,152,0.08);
  padding: 22px 18px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 28px;
  font-size: 1rem;
  color: #2E3A4E;
  width: 100%;
  transition: transform 0.33s cubic-bezier(0.5,0.1,0.12,1);
}
.cookie-consent-banner.hide {
  transform: translateY(130%);
}
.cookie-consent-banner .cookie-buttons {
  display: flex;
  gap: 16px;
}
.cookie-consent-banner button {
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  font-size: 1rem;
  border-radius: 999px;
  border: none;
  padding: 8px 22px;
  background: #14A098;
  color: #fff;
  margin: 0;
  box-shadow: 0 1px 10px 0 rgba(20,160,152,0.09);
  transition: background .18s;
}
.cookie-consent-banner button.cookie-reject {
  background: #fff;
  border: 1.5px solid #14A098;
  color: #14A098;
}
.cookie-consent-banner button.cookie-settings {
  background: #f2f2f2;
  color: #2E3A4E;
  border: 1.5px solid #2E3A4E;
}
.cookie-consent-banner button:hover, .cookie-consent-banner button:focus {
  background: #195a53;
  color: #fff;
}
.cookie-consent-banner button.cookie-reject:hover, .cookie-consent-banner button.cookie-reject:focus {
  background: #f8fcfc;
  color: #195a53;
  border-color: #195a53;
}
.cookie-consent-banner button.cookie-settings:hover, .cookie-consent-banner button.cookie-settings:focus {
  background: #e7e7e7;
  border-color: #195a53;
  color: #195a53;
}

/* --- COOKIE CONSENT MODAL --- */
.cookie-modal {
  position: fixed;
  z-index: 3100;
  left: 0; top: 0; right: 0; bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(44,62,80,0.22);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal-content {
  background: #fff;
  border-radius: 18px;
  padding: 32px 28px;
  min-width: 320px;
  max-width: 96vw;
  box-shadow: 0 8px 50px 0 rgba(20,160,152,0.12);
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}
.cookie-modal-content h2 {
  font-size: 1.35rem;
  margin-bottom: 6px;
}
.cookie-modal-categories {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.cookie-modal-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}
.cookie-modal-category .switch {
  position: relative;
  display: inline-block;
  width: 38px;
  height: 22px;
}
.cookie-modal-category .switch input {
  opacity: 0;
  width: 0; height: 0;
}
.cookie-modal-category .slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0;
  right: 0; bottom: 0;
  background: #ccc;
  border-radius: 22px;
  transition: background .18s;
}
.cookie-modal-category .switch input:checked + .slider {
  background: #14A098;
}
.cookie-modal-category .slider:before {
  position: absolute;
  content: '';
  left: 3px; top: 3px;
  height: 16px; width: 16px;
  background: #fff;
  border-radius: 50%;
  transition: transform .18s;
  box-shadow: 0 1px 6px 0 rgba(20,160,152,0.07);
}
.cookie-modal-category .switch input:checked + .slider:before {
  transform: translateX(16px);
}
.cookie-modal-actions {
  margin-top: 10px;
  display: flex;
  gap: 14px;
}
.cookie-modal-actions button {
  font-family: 'Georgia', 'Times New Roman', Times, serif;
}
.cookie-modal-close {
  background: none;
  border: none;
  color: #2E3A4E;
  font-size: 1.7rem;
  position: absolute;
  top: 18px; right: 22px;
  cursor: pointer;
  transition: color .18s;
  z-index: 1;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #14A098;
}

/* --- FOOTER --- */
footer {
  background: #fff;
  border-top: 1.5px solid #E3E3E3;
  margin-top: 48px;
  padding-top: 28px;
  padding-bottom: 18px;
  font-size: 0.99rem;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
  width: 100%;
}
footer nav {
  display: flex;
  flex-direction: row;
  gap: 21px;
  align-items: center;
  margin-bottom: 8px;
}
footer nav a {
  color: #758195;
  font-size: 1.01rem;
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  transition: color 0.14s;
}
footer nav a:hover, footer nav a:focus {
  color: #14A098;
}
footer span {
  color: #aaa;
  font-size: 0.98rem;
  margin-top: 4px;
}

/* --- TABLES --- */
table {
  width: 100%;
  margin-bottom: 24px;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(46,58,78,0.05);
}
th, td {
  padding: 15px 12px;
  border-bottom: 1px solid #f4f4f4;
  font-size: 1.05rem;
}
th {
  background: #f8f8f8;
  font-weight: bold;
}
tr:last-child td {
  border-bottom: none;
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 1100px) {
  .container { max-width: 96vw; }
}
@media (max-width: 900px) {
  header .container {
    flex-direction: row;
    gap: 10px;
  }
  header nav { gap: 10px; }
}
@media (max-width: 768px) {
  html { font-size: 15px; }
  .container { padding-left: 9px; padding-right: 9px; }
  .content-wrapper { gap: 18px; }
  section, .section { padding: 26px 5px; }
  .feature-grid {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }
  .feature-grid > div { min-width: unset; }
  .testimonial-card {
    max-width: 100%;
    padding: 12px 10px 12px 12px;
    gap: 13px;
  }
  .footer-contact { flex-direction: column; align-items: flex-start; gap: 10px; }
  header nav { display: none; }
  .mobile-menu-toggle { display: block; }
  .mobile-menu { max-width: 100vw; width: 92vw; padding-top: 42px; }
  .mobile-nav a { font-size: 1.09rem; }
  .text-image-section { flex-direction: column; gap: 15px; align-items: flex-start; }
}
@media (max-width: 540px) {
  html { font-size: 14px; }
  h1 { font-size: 1.46rem; }
  h2 { font-size: 1.18rem; }
  section, .section { padding: 15px 0; border-radius: 10px; }
  .footer-contact { font-size: 0.97rem; }
}

/* --- UTILITY CLASSES --- */
.mb-0 { margin-bottom: 0 !important; }
.mt-0 { margin-top: 0 !important; }
gap-8 { gap: 8px !important; }
gap-16 { gap: 16px !important; }
.gap-24 { gap: 24px !important; }
gap-32 { gap: 32px !important; }
.text-center { text-align: center !important; }
.text-right { text-align: right !important; }
.text-left { text-align: left !important; }
.w-100 { width: 100%; }

/* --- ANIMATIONS & MICROINTERACTIONS --- */
.cta-primary, .feature-grid > div, .card, .testimonial-card {
  transition: box-shadow .19s cubic-bezier(.34,.78, .53,1), transform .16s;
}
.feature-grid > div:active, .testimonial-card:active {
  transform: scale(0.98);
}

/* --- FOCUS/ACCESSIBILITY --- */
a:focus, button:focus, .cta-primary:focus, input[type=submit]:focus {
  outline: 2px solid #14A098;
  outline-offset: 1px;
  z-index: 1999;
}

/* --- PRINT SUPPORT (optional) --- */
@media print {
  header, footer, .cookie-consent-banner, .mobile-menu { display: none !important; }
  section, .section { box-shadow: none !important; background: #fff !important; }
}
