/* =====================
    CSS RESET & BASE
   ===================== */
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, 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;
}
article, aside, details, figcaption, figure, footer, header, main, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #F7F7F7;
  color: #131619;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
}
ol, ul {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}
img {
  max-width: 100%;
}
button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* =====================
   FONT & TYPE SCALE
   ===================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  color: #27408B;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.1;
  margin-bottom: 16px;
}
h2 {
  font-size: 2rem;
  line-height: 1.1;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.3rem;
  line-height: 1.2;
}
h4 {
  font-size: 1.1rem;
}
p, li, ul {
  color: #23272F;
  line-height: 1.7;
  font-size: 1rem;
  margin-bottom: 10px;
}
strong {
  font-weight: 700;
  color: #2A805C;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* =====================
   CONTAINER & LAYOUT
   ===================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-start;
}

/* =====================
   HEADER & NAVIGATION
   ===================== */
header {
  background: #fff;
  box-shadow: 0 4px 24px 0 rgba(39,64,139,0.07);
  position: sticky;
  top: 0;
  z-index: 100;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 0;
}
.logo img {
  height: 44px;
}
.main-nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.01em;
  color: #27408B;
  text-transform: uppercase;
  padding: 10px 0;
  border-bottom: 2.5px solid transparent;
  transition: border, color 0.22s cubic-bezier(.35,.78,.79,.25);
}
.main-nav a:hover, .main-nav a:focus {
  color: #2A805C;
  border-bottom: 2.5px solid #2A805C;
}
.btn-primary {
  background: #2A805C;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-size: 1rem;
  padding: 12px 32px;
  border-radius: 40px;
  box-shadow: 0 3px 14px 0 rgba(42,128,92,0.10);
  transition: background 0.18s, box-shadow 0.25s, color 0.18s;
  letter-spacing: 0.04em;
  display: inline-block;
  margin-left: 24px;
}
.btn-primary:hover, .btn-primary:focus {
  background: #27408B;
  color: #fff;
  box-shadow: 0 4px 22px 0 rgba(39,64,139,0.15);
}

/* =====================
   MOBILE NAVIGATION
   ===================== */
.mobile-menu-toggle {
  display: none;
  background: #27408B;
  color: #fff;
  padding: 8px 18px;
  font-size: 1.85rem;
  border-radius: 8px;
  margin-left: 18px;
  z-index: 250;
  transition: background 0.18s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #2A805C;
  color: #fff;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  padding: 0 0 0 0;
  box-shadow: 0 3px 22px 0 rgba(39,64,139,0.13);
  transform: translateX(-100%);
  transition: transform 0.44s cubic-bezier(.66,.14,.48,1.08);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: #2A805C;
  color: #fff;
  border-radius: 40px;
  font-size: 2.25rem;
  width: 48px; height: 48px;
  position: absolute;
  top: 18px; right: 24px;
  z-index: 10101;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #27408B;
}
.mobile-nav {
  margin-top: 80px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  padding: 0 32px;
}
.mobile-nav a {
  color: #27408B;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  padding: 12px 0;
  border-bottom: 4px solid transparent;
  border-radius: 0;
  width: 100%;
  transition: color 0.18s, border 0.2s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #2A805C;
  border-bottom: 4px solid #2A805C;
}

/* =====================
   HERO SECTIONS
   ===================== */
.hero {
  background: linear-gradient(96deg, #F7F7F7 60%, #E1EBF8 110%);
  border-bottom: 2px solid #27408B1a;
  padding: 64px 0 54px;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 16px;
  max-width: 700px;
}
.hero h1 {
  color: #27408B;
  font-size: 2.65rem;
}
.hero p {
  color: #23272F;
  font-size: 1.18rem;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 500;
}

/* =====================
   FEATURES/CARDS FLEX
   ===================== */
.features-grid, .service-grid, .category-grid, .service-cards, .testimonial-list, .testimonial-slider, .card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: stretch;
}
.features-grid > div, .service-grid > div, .category-grid > div, .service-cards > div {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 3px 24px 0 rgba(39,64,139,0.07);
  padding: 28px 22px 22px 22px;
  min-width: 190px;
  flex: 1 1 265px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  position: relative;
  transition: box-shadow 0.15s;
}
.features-grid > div:hover, .service-grid > div:hover, .card:hover {
  box-shadow: 0 5px 26px 0 rgba(42,128,92,0.13);
}
.features-grid img, .service-grid img {
  height: 44px;
  width: 44px;
  margin-bottom: 10px;
}
.features-grid h3, .service-grid h3, .service-cards h3 {
  font-weight: 700;
  color: #2A805C;
  margin-bottom: 6px;
  font-size: 1.16rem;
}
.features-grid p, .service-grid p, .service-cards p {
  font-size: 1rem;
  color: #23272F;
}
.service-cards span, .service-grid span {
  background: #27408B;
  color: #fff;
  font-weight: 700;
  border-radius: 18px;
  font-size: 1rem;
  padding: 6px 20px;
  margin-top: 10px;
}

/* =====================
   TABLES (PRICING)
   ===================== */
.service-pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin: 38px 0 20px;
  font-family: 'Montserrat', Arial, sans-serif;
}
.service-pricing-table th, .service-pricing-table td {
  padding: 15px 18px;
  text-align: left;
  font-size: 1rem;
}
.service-pricing-table thead th {
  background: #2A805C;
  color: #fff;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}
.service-pricing-table tr {
  border-bottom: 1.5px solid #e4eaf1;
}
.service-pricing-table tbody td {
  background: #fff;
  font-weight: 500;
  color: #27408B;
}
.service-pricing-table tbody tr:last-child td {
  border-bottom: none;
}

/* =====================
   CTA BANNERS
   ===================== */
.cta-banner {
  background: #27408B;
  border-radius: 30px;
  padding: 42px 30px 38px;
  text-align: left;
  box-shadow: 0 4px 32px 0 rgba(39,64,139,0.12);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  margin: 10px 0;
}
.cta-banner h2 {
  color: #fff;
  font-size: 2rem;
  font-family: 'Montserrat', Arial, sans-serif;
}
.cta-banner p {
  font-size: 1.12rem;
  margin-bottom: 4px;
}
.cta-banner .btn-primary {
  margin-left: 0;
  margin-top: 10px;
  background: #2A805C;
  color: #fff;
  border-radius: 22px;
}
.cta-banner .btn-primary:hover, .cta-banner .btn-primary:focus {
  background: #fff;
  color: #27408B;
}

/* =====================
   TESTIMONIALS
   ===================== */
.testimonial-slider, .testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-card {
  background: #fff;
  box-shadow: 0 2px 18px 0 rgba(39,64,139,0.08);
  border-radius: 20px;
  padding: 30px 28px 24px;
  min-width: 290px;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}
.testimonial-card p {
  color: #27408B;
  font-size: 1.05rem;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 500;
  margin-bottom: 7px;
}
.testimonial-card strong {
  color: #2A805C;
  font-size: 1rem;
  font-weight: 900;
}

/* =====================
   CARDS / CARD CONTAINER
   ===================== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 3px 16px 0 rgba(39,64,139,0.07);
  padding: 32px 24px;
  flex: 1 1 320px;
  min-width: 210px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  position: relative;
  margin-bottom: 20px;
  transition: box-shadow 0.19s;
}
.card:hover {
  box-shadow: 0 6px 26px 0 rgba(39,64,139,0.15);
}

/* =====================
   TEXT-IMAGE / FLEX LAYOUTS
   ===================== */
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 24px;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

/* =====================
   ARTICLE LISTING
   ===================== */
.article-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.article-list li {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 20px 0 rgba(39,64,139,0.08);
  padding: 28px 22px 17px;
  margin-bottom: 20px;
  transition: box-shadow 0.19s;
}
.article-list li:hover {
  box-shadow: 0 4px 26px 0 rgba(42,128,92,0.12);
}
.article-list h3 {
  color: #2A805C;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.category-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  margin-top: 12px;
}
.category-grid > div {
  background: #E1EBF8;
  border-radius: 14px;
  padding: 10px 30px;
}
.tag {
  color: #27408B;
  font-weight: 800;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.98rem;
  text-transform: uppercase;
}

/* =====================
   FOOTER
   ===================== */
footer {
  background: #fff;
  box-shadow: 0 0 16px 0 rgba(39,64,139,0.04);
  border-top: 2.5px solid #2A805C15;
  padding: 38px 0;
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 22px;
  flex-wrap: wrap;
}
footer img {
  height: 38px;
  margin-bottom: 16px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-nav a {
  color: #2A805C;
  font-size: 1.05rem;
  font-family: 'Montserrat',Arial,sans-serif;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: color 0.18s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #27408B;
  text-decoration: underline;
}
.contact-info {
  color: #23272F;
  font-size: 0.95rem;
  font-family: 'Roboto', Arial, sans-serif;
  line-height: 1.5;
}
footer .contact-info p {
  color: #23272F;
  font-size: 1rem;
  margin-bottom: 0;
}

/* =====================
   MISC UTILITIES / COMMON
   ===================== */
.map-location img {
  border-radius: 14px;
  box-shadow: 0 2px 10px 0 rgba(39,64,139,0.10);
}
ul > li, ol > li {
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
}
ul > li:before {
  content: '';
  display: inline-block;
  background: #2A805C;
  height: 8px; width: 8px;
  border-radius: 50%;
  position: absolute;
  left: 0; top: 9px;
}

/* Spacing Consistency */
.section + .section { margin-top: 0; }
.content-wrapper > *:not(:last-child),
.features-grid > div:not(:last-child),
.service-grid > div:not(:last-child),
.card-container > .card:not(:last-child),
.article-list li:not(:last-child),
.testimonial-list .testimonial-card:not(:last-child) {
  margin-bottom: 20px;
}

/* =====================
   COOKIE CONSENT BANNER
   ===================== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  background: #27408B;
  color: #fff;
  padding: 30px 20px;
  box-shadow: 0 -4px 23px 0 rgba(39,64,139,0.13);
  z-index: 11000;
  gap: 24px;
  animation: slideUp 0.45s cubic-bezier(.45,.93,.47,1.52);
}
@keyframes slideUp {
  from { transform: translateY(110%); }
  to { transform: translateY(0); }
}
.cookie-banner p {
  font-size: 1.08rem;
  margin-bottom: 0;
  color: #fff;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
  align-items: center;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border-radius: 18px;
  padding: 10px 24px;
  border: none;
  margin-left: 0;
  background: #2A805C;
  color: #fff;
  font-size: 1rem;
  box-shadow: 0 2px 8px 0 rgba(42,128,92,0.07);
  transition: background 0.19s, color 0.19s;
}
.cookie-banner button:last-child {
  background: #fff;
  color: #27408B;
  border: 2px solid #2A805C;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #fff;
  color: #2A805C;
}
.cookie-banner button:last-child:hover, .cookie-banner button:last-child:focus {
  background: #2A805C;
  color: #fff;
}

/* COOKIE MODAL */
.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: rgba(39,64,139,0.30);
  z-index: 12000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  color: #2A805C;
  padding: 42px 36px 32px 38px;
  border-radius: 28px;
  width: 98%;
  max-width: 430px;
  box-shadow: 0 6px 42px 0 rgba(39,64,139,0.17);
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  animation: popIn 0.32s cubic-bezier(.42,.7,.62,1.2);
}
@keyframes popIn {
  from { transform: scale(.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.cookie-modal h3 {
  color: #27408B;
  font-size: 1.35rem;
  margin-bottom: 10px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}
.cookie-modal .cookie-category label {
  font-size: 1rem;
  color: #23272F;
  font-family: 'Roboto', Arial, sans-serif;
}
.cookie-modal input[type=checkbox] {
  appearance: none;
  width: 26px;
  height: 26px;
  border: 2.5px solid #2A805C;
  border-radius: 8px;
  transition: background 0.17s;
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
}
.cookie-modal input[type=checkbox]:checked {
  background: #2A805C;
}
.cookie-modal input[type=checkbox]:checked:after {
  content: '\2714';
  color: #fff;
  font-size: 1.1rem;
  display: block;
  text-align: center;
  position: absolute;
  left: 0; right: 0; top: 0; bottom: 0;
  line-height: 26px;
}
.cookie-modal .btn-primary, .cookie-modal button {
  width: 100%;
  margin-top: 12px;
  border-radius: 18px;
  padding: 12px 0;
  background: #2A805C;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.08rem;
  transition: background 0.18s;
}
.cookie-modal .btn-primary:hover, .cookie-modal .btn-primary:focus,
.cookie-modal button:hover, .cookie-modal button:focus {
  background: #27408B;
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  right: 22px; top: 18px;
  background: #27408B;
  color: #fff;
  font-size: 1.55rem;
  width: 38px; height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  transition: background 0.2s;
}
.cookie-modal .cookie-modal-close:hover, .cookie-modal .cookie-modal-close:focus {
  background: #2A805C;
}

/* =====================
   RESPONSIVE DESIGN
   ===================== */
@media (max-width: 1100px) {
  .service-cards > div, .features-grid > div, .service-grid > div, .card {
    flex: 1 1 240px;
  }
}
@media (max-width: 980px) {
  header .container, footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
  }
  .main-nav { margin-top: 10px; }
  .btn-primary { margin-left: 0; margin-top: 20px; }
}
@media (max-width: 850px) {
  .features-grid, .service-cards, .service-grid {
    flex-direction: column;
    gap: 24px;
  }
}
@media (max-width: 768px) {
  .hero { padding: 44px 0 30px 0; }
  .hero .content-wrapper h1 { font-size: 1.7rem; }
  .container { padding-left: 13px; padding-right: 13px; }
  .section { padding: 22px 10px; }
  .service-cards > div, .features-grid > div, .service-grid > div {
    min-width: 0;
    padding: 24px 14px 16px 14px;
  }
  .service-pricing-table th, .service-pricing-table td {
    padding: 10px 10px;
    font-size: 0.96rem;
  }
  .card {
    padding: 18px 8px;
  }
  footer img { margin-bottom: 9px; }
  .cta-banner {
    padding: 24px 10px 20px;
    border-radius: 18px;
  }
  .mobile-menu {
    padding-top: 0;
  }
  .testimonial-card {
    min-width: 0;
    padding: 14px 10px 13px;
  }
  .testimonial-slider, .testimonial-list, .feature-item, .card-container {
    flex-direction: column;
    gap: 18px;
  }
  .text-image-section {
    flex-direction: column !important;
    gap: 14px;
  }
  .content-grid {
    flex-direction: column;
    gap: 20px;
  }
  .main-nav { display: none !important; }
  .sidebar, .aside { display: none; }
  .mobile-menu-toggle { display: block; }
  .btn-primary { font-size: 1rem; padding: 11px 20px; }
}
@media (max-width: 540px) {
  .container, footer .container { padding-left: 5px; padding-right: 5px; }
  .section { padding: 10px 0; }
}

/* =======================
   INTERACTIONS, SHADOWS
   ======================= */
.card, .features-grid > div, .service-cards > div, .service-grid > div, .testimonial-card, .article-list li {
  transition: box-shadow 0.16s, transform 0.16s;
}
.card:hover, .features-grid > div:hover, .service-cards > div:hover, .testimonial-card:hover, .article-list li:hover {
  box-shadow: 0 9px 26px 0 rgba(42,128,92,0.09);
  transform: translateY(-2px) scale(1.012);
}
.btn-primary, .cookie-banner button, .cookie-modal button {
  transition: background 0.20s, box-shadow 0.20s, color 0.18s;
}

/* =====================
   GEOMETRIC EMBELLISHMENTS
   ===================== */
.features-grid > div:after, .service-grid > div:after {
  content: '';
  display: block;
  position: absolute;
  width: 36px;
  height: 36px;
  right: 18px;
  bottom: 16px;
  border-radius: 7px 22px 22px 22px;
  background: #E1EBF8;
  opacity: 0.40;
  z-index: 1;
  pointer-events: none;
}
.testimonial-card:after {
  content: '';
  display: block;
  position: absolute;
  right: 24px;
  bottom: 18px;
  width: 24px; height: 24px;
  background: #2A805C22;
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}

/* =====================
   Z-INDEX LAYERING
   ===================== */
header, .mobile-menu, .cookie-banner, .cookie-modal-overlay { z-index: 9999; }

/* =====================
   FORMS (kontakt, modal)
   ===================== */
input[type=text], input[type=email], textarea {
  border: 1.8px solid #E1EBF8;
  background: #fff;
  border-radius: 15px;
  font-size: 1.09rem;
  padding: 13px 18px;
  font-family: 'Roboto', Arial, sans-serif;
  width: 100%;
  margin-bottom: 18px;
  transition: border-color 0.13s;
}
input[type=text]:focus, input[type=email]:focus, textarea:focus {
  border-color: #2A805C;
  outline: none;
}

/* =====================
   PRINT STYLES
   ===================== */
@media print {
  header, nav, footer, .cookie-banner, .mobile-menu { display: none !important; }
  body { background: #fff; color: #131619; }
}

/* END OF style.css */
