/* ==========================
   CSS RESET & BASE STYLES
   ========================== */
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 {
  scroll-behavior: smooth;
  background: #fff;
}
body {
  min-height: 100vh;
  font-family: 'Roboto', Arial, sans-serif;
  color: #1a1a1a;
  font-size: 16px;
  line-height: 1.7;
  background: #FAFAFA;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  vertical-align: middle;
  border: 0;
}
a {
  text-decoration: none;
  color: #174D59;
  transition: color 0.2s;
  cursor: pointer;
}

ul, ol {
  list-style: none;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  outline: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: bold;
  color: #174D59;
  letter-spacing: 0.01em;
}

h1 { font-size: 2.5rem; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 20px; }
h3 { font-size: 1.325rem; margin-bottom: 14px; }

p { margin-bottom: 16px; }
strong { font-weight: 700; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
}

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

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 32px rgba(23,77,89,0.06);
}

@media (max-width: 992px) {
  .container { max-width: 95vw; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
}
@media (max-width: 768px) {
  body { font-size: 15px; }
  .container { padding: 0 6px; }
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.125rem; }
}

/* ================
   HEADER
   ================ */
header {
  width: 100%;
  background: #E9EEF1;
  box-shadow: 0 2px 14px rgba(23,77,89,0.04);
  position: sticky;
  top: 0;
  z-index: 999;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
}
header nav {
  display: flex;
  gap: 22px;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  color: #174D59;
  transition: color 0.16s, border-color 0.2s;
}
header nav a:hover,
header nav a:focus {
  color: #F7B733;
  border-bottom: 2px solid #F7B733;
}

.cta-btn.primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #F7B733;
  color: #174D59;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 9999px;
  padding: 10px 32px;
  box-shadow: 0 2px 16px rgba(253,184,63,0.14);
  border: none;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  outline: none;
}
.cta-btn.primary:hover,
.cta-btn.primary:focus {
  background: #174D59;
  color: #fff;
  box-shadow: 0 6px 24px rgba(23,77,89,0.11);
}

.mobile-menu-toggle {
  display: none;
}
@media (max-width: 1023px) {
  header nav {
    display: none;
  }
  .cta-btn.primary {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.125rem;
    color: #174D59;
    background: none;
    border: none;
    padding: 8px;
    margin-left: auto;
    cursor: pointer;
    z-index: 1002;
    transition: color .2s;
  }
  .mobile-menu-toggle:hover { color: #F7B733; }
}
@media (max-width: 600px) {
  header .container {
    min-height: 54px;
    gap: 10px;
  }
  .mobile-menu-toggle {
    font-size: 1.7rem;
  }
}

/* ================
   MOBILE MENU
   ================ */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: #174D59;
  transform: translateX(100vw);
  transition: transform .34s cubic-bezier(.7,.2,.2,.9);
  z-index: 1500;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  will-change: transform;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 16px 18px 0 0;
  font-size: 2rem;
  background: none;
  border: none;
  color: #F7B733;
  padding: 4px 8px;
  cursor: pointer;
  transition: color 0.17s;
}
.mobile-menu-close:hover { color: #fff; }

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  padding: 40px 32px;
  width: 100%;
  margin-top: 10px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  padding: 8px 0;
  transition: color 0.17s;
  border-bottom: 1px solid transparent;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #F7B733;
  border-bottom: 1px solid #F7B733;
}

@media (max-width: 1023px) {
  .mobile-menu {
    display: flex;
  }
}

/* ================
   HERO SECTION
   ================ */
.hero {
  background: #F7B733;
  color: #174D59;
  border-radius: 0 0 36px 36px;
  margin-bottom: 44px;
  padding: 72px 0 36px 0;
  box-shadow: 0 6px 36px 0 rgba(23,77,89,0.07);
}
.hero .container { align-items: center; }
.hero .content-wrapper {
  align-items: center;
  justify-content: center;
}
.hero h1 {
  font-size: 2.7rem;
  font-weight: 800;
  color: #174D59;
  margin-bottom: 20px;
  text-shadow: 2px 2px 0 #fff4cc;
}
.hero .subheadline {
  max-width: 645px;
  font-size: 1.17rem;
  color: #174D59;
  padding-bottom: 14px;
  margin-bottom: 18px;
  font-weight: 500;
  text-align: center;
}
.hero .cta-btn {
  margin-top: 6px;
  font-size: 1.2rem;
  letter-spacing: 0.01em;
}
@media (max-width: 768px) {
  .hero {
    padding: 42px 0 22px 0;
    margin-bottom: 24px;
  }
  .hero .container {
    padding-left: 4px;
    padding-right: 4px;
  }
}

/* =========
 FEATURES
 ========= */
.features, .feature-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.features {
  background: #fff;
  padding: 40px 24px;
  margin-bottom: 60px;
  border-radius: 20px;
  box-shadow: 0 2px 24px rgba(23,77,89,0.07);
}
.feature-grid {
  margin-top: 10px;
  gap: 26px;
  flex-wrap: wrap;
}
.feature-grid li {
  display: flex;
  align-items: flex-start;
  gap: 17px;
  font-size: 1.12rem;
  background: #E9EEF1;
  color: #174D59;
  padding: 16px 20px;
  border-radius: 14px;
  box-shadow: 0 1px 8px rgba(23,77,89,0.07);
  transition: box-shadow .16s, background .16s;
}
.feature-grid li:hover {
  background: #F7B733;
  color: #174D59;
  box-shadow: 0 2px 18px rgba(23,77,89,0.13);
}
.feature-grid img {
  width: 36px; height: 36px;
  flex-shrink: 0;
}
@media (min-width: 600px) {
  .feature-grid {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px 30px;
  }
  .feature-grid li {
    flex: 1 1 315px;
    min-width: 240px;
    max-width: 100%;
  }
}

/* ===== ABOUT SHORT & BADGES ===== */
.about-short {
  background: #FAFAFA;
  margin-bottom: 60px;
  padding-top: 0;
}
.about-short .trust-badges {
  margin-top: 24px;
  display: flex;
  flex-direction: row;
  gap: 32px;
}
.about-short .trust-badges img {
  width: 48px; height: 48px;
  filter: drop-shadow(0 2px 6px #F7B73355);
}
@media (max-width: 768px) {
  .about-short .trust-badges {
    gap: 18px;
  }
  .about-short {
    padding-left: 4px; padding-right: 4px;
  }
}

/* =========
SERVICES PREVIEW & USLUGI
========== */
.services-preview {
  background: #fff;
  margin-bottom: 60px;
  box-shadow: 0 2px 24px 0 rgba(23,77,89,0.09);
  border-radius: 16px;
}
.services-preview ul,
.service-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 0px;
  margin-bottom: 0px;
}
.services-preview li, .service-list li {
  background: #E9EEF1;
  padding: 16px 24px;
  border-radius: 13px;
  color: #174D59;
  font-size: 1.13rem;
  box-shadow: 0 1px 8px rgba(23,77,89,0.07);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  position: relative;
  margin-bottom: 20px;
}
.service-list li img {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}
.service-list li strong {
  display: block;
  font-size: 1.18rem;
  margin-bottom: 6px;
  color: #174D59;
}

@media (max-width: 768px) {
  .service-list li {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding: 16px 10px;
  }
}

/* ===== PROCESS, BENEFITS, STEPPER ===== */
.process .stepper-process {
  display: flex;
  flex-direction: column;
  gap: 17px;
  margin-bottom: 22px;
  font-size: 1.1rem;
}
.benefits-highlight {
  background: #F7B733;
  color: #174D59;
  border-radius: 12px;
  padding: 14px 24px;
  font-size: 1.08rem;
  box-shadow: 0 2px 18px rgba(23,77,89,0.10);
  margin-top: 24px;
  margin-bottom: 0px;
}
.benefits-highlight ul {
  list-style: disc inside;
  margin-left: 20px;
  margin-top: 8px;
}

/* =============
   BLOG / PORADNIKI
   ============= */
.blog {
  background: #fff;
  padding: 40px 16px;
  border-radius: 18px;
  margin-bottom: 60px;
  box-shadow: 0 2px 24px 0 rgba(23,77,89,0.08);
}
.categories-filter {
  margin-bottom: 14px;
  font-size: 1.05rem;
  color: #174D59;
}
.categories-filter a {
  color: #F7B733;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
}
.article-list {
  display: flex;
  flex-direction: column;
  gap: 17px;
  margin-bottom: 28px;
}
.featured-article {
  background: #174D59;
  color: #fff;
  padding: 22px 18px;
  border-radius: 14px;
  box-shadow: 0 2px 20px rgba(23,77,89,0.11);
}
.featured-article h2 a {
  color: #F7B733;
  font-size: 1.23rem;
}

/* ==============
   EVENTS
   =============== */
.events-calendar,
.events-archive {
  background: #E9EEF1;
  padding: 18px 22px;
  border-radius: 12px;
  margin-bottom: 22px;
  color: #174D59;
}
.events-calendar ul,
.events-archive ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.featured-event {
  background: #F7B733;
  color: #174D59;
  padding: 19px 20px;
  border-radius: 14px;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(23,77,89,0.08);
  margin-bottom: 28px;
}

/* =============
   CTA SECTION
   ============= */
.cta {
  background: #174D59;
  color: #fff;
  border-radius: 20px;
  margin-bottom: 44px;
  box-shadow: 0 4px 20px 0 rgba(23,77,89,0.13);
  padding: 50px 18px;
  text-align: center;
}
.cta h2 {
  color: #fff;
}
.cta .cta-btn {
  margin-top: 14px;
  background: #F7B733;
  color: #174D59;
}
.cta .cta-btn:hover,
.cta .cta-btn:focus {
  background: #fff;
  color: #174D59;
  box-shadow: 0 4px 16px 0 #F7B73340;
}
@media (max-width: 768px) {
  .cta { padding: 32px 6px; }
}

/* ===============
   TESTIMONIALS
   =============== */
.testimonials-preview, .testimonials {
  background: #fff;
  margin-bottom: 60px;
  border-radius: 18px;
  box-shadow: 0 2px 24px rgba(23,77,89,0.08);
  padding: 40px 22px;
}
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  flex-direction: column;
  margin-bottom: 30px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  background: #E9EEF1;
  border-radius: 14px;
  padding: 24px 22px;
  font-size: 1.13rem;
  color: #174D59;
  box-shadow: 0 2px 16px rgba(23,77,89,0.09);
  font-style: italic;
  transition: box-shadow .16s, background .16s;
  margin-bottom: 20px;
}
.testimonial-card:hover {
  background: #F7B733;
  color: #174D59;
}
.testimonial-card span {
  font-style: normal;
  font-weight: 700;
  color: #174D59;
  font-size: 1.02rem;
  letter-spacing: 0.01em;
}
.rating-summary {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.08rem;
  color: #174D59;
  margin: 20px 0 10px 0;
  font-weight: 700;
}
.rating-summary img {
  width: 28px; height: 28px;
}
.submit-testimonial {
  margin-top: 16px;
}

@media (min-width: 600px) {
  .testimonial-list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 24px;
  }
  .testimonial-card {
    min-width: 270px;
    max-width: 375px;
    width: 100%;
    margin-bottom: 0;
  }
}

/* ============
   CONTACT SECTION
   ============ */
.contact-section {
  background: #FAFAFA;
  padding: 40px 14px;
  border-radius: 18px;
  margin-bottom: 60px;
}
.contact-details {
  margin-bottom: 22px;
}
.contact-details ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: 1.1rem;
}
.contact-details li {
  display: flex;
  align-items: center;
  gap: 13px;
}
.map {
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 1.01rem;
}
.map img {
  filter: grayscale(1) opacity(.55);
  width: 28px; height: 28px;
}

/* ============
   LEGAL SECTIONS
   ============ */
.legal-section {
  background: #fff;
  padding: 40px 14px;
  border-radius: 18px;
  box-shadow: 0 2px 24px rgba(23,77,89,0.07);
  margin-bottom: 60px;
}
.privacy-policy-text, .rodo-information-text, .cookies-policy-text, .terms-and-conditions-text {
  margin-top: 16px;
  font-size: 1.09rem;
}
.privacy-policy-text h2,
.rodo-information-text h2,
.cookies-policy-text h2,
.terms-and-conditions-text h2 {
  font-size: 1.24rem;
  margin-top: 20px;
  margin-bottom: 8px;
}
.privacy-policy-text ul,
.rodo-information-text ul,
.cookies-policy-text ul,
.terms-and-conditions-text ul {
  list-style: disc inside;
  margin-bottom: 14px;
  padding-left: 12px;
}

/* ================
    THANK YOU SECTION
   ================ */
.thank-you-section {
  background: #E9EEF1;
  padding: 54px 20px;
  border-radius: 18px;
  margin-bottom: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 2px 24px rgba(23,77,89,0.09);
}
.thank-you-section h1 {
  color: #174D59;
}
.thank-you-section .cta-btn {
  margin-top: 18px;
}


/* ==================
   FOOTER
   ================== */
footer {
  background: #174D59;
  color: #fff;
  padding: 32px 0 18px 0;
  border-radius: 28px 28px 0 0;
  margin-top: 80px;
  box-shadow: 0 -4px 24px rgba(23,77,89,0.11);
}
footer .container {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 24px 48px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-brand img {
  width: 120px;
  margin-bottom: 13px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 13px;
}
.footer-nav a {
  color: #fff;
  font-size: 1.03rem;
  padding: 4px 0;
  opacity: 0.88;
  transition: color 0.17s, opacity 0.17s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #F7B733;
  opacity: 1;
}
.footer-contact {
  font-size: 1.008rem;
  opacity: 0.93;
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 13px;
}
.footer-contact img {
  width: 18px;
  height: 18px;
  margin-right: 6px;
  filter: grayscale(1) brightness(0.9);
}
.footer-contact a {
  color: #F7B733;
  text-decoration: underline;
}
.footer-newsletter {
  max-width: 300px;
  margin-bottom: 16px;
}
.footer-newsletter h3 {
  margin-bottom: 4px;
  color: #F7B733;
  font-weight: 800;
  font-size: 1.06rem;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.footer-social img {
  width: 34px;
  height: 34px;
  filter: brightness(1.1) grayscale(.16);
  transition: filter .14s;
}
.footer-social a:hover img {
  filter: brightness(1.7) drop-shadow(0 0 5px #F7B73380);
}
@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    gap: 28px;
    padding: 0 15px;
  }
}

/* ===================
    SPACING & LAYOUT PATTERNS
   =================== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  margin-bottom: 20px;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(23,77,89,0.07);
  position: relative;
  padding: 24px 20px;
  min-width: 210px;
  flex: 1 1 320px;
  transition: box-shadow .18s, transform .15s;
}
.card:hover {
  box-shadow: 0 6px 24px 0 #F7B73355;
  transform: translateY(-2px) scale(1.015);
}
.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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .content-grid {
    flex-direction: column;
    gap: 14px;
  }
  .card-container {
    gap: 14px;
  }
}

/* ================
   TRANSITIONS & MICRO-INTERACTIONS
   ================ */
.card, .cta-btn, .testimonial-card, .feature-grid li, header nav a, .footer-nav a, .mobile-nav a, .footer-social img {
  transition: box-shadow 0.17s, background 0.16s, color 0.16s, transform 0.15s;
}
.card:hover, .cta-btn:hover,
.feature-grid li:hover, .testimonial-card:hover {
  box-shadow: 0 6px 28px #F7B73340;
  transform: translateY(-1.5px) scale(1.01);
}

/* =============================
     COOKIE CONSENT BANNER
   ============================= */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #174D59;
  color: #fff;
  box-shadow: 0 -2px 24px rgba(23,77,89,0.14);
  z-index: 1800;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 18px 12px 18px 12px;
  font-size: 1.08rem;
  animation: bannerSlideUp 0.7s cubic-bezier(.7,.2,.2,.9);
}
@keyframes bannerSlideUp {
  from { transform: translateY(100%); opacity:0; }
  to   { transform: translateY(0); opacity:1; }
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 16px;
  margin-top: 7px;
}
.cookie-banner button {
  border: none;
  border-radius: 22px;
  padding: 7px 30px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.04rem;
  cursor: pointer;
  margin-right: 0;
  margin-bottom: 0;
  margin-top: 0;
  transition: background 0.18s, color 0.17s, box-shadow .16s;
}
.cookie-banner .accept-cookie {
  background: #F7B733;
  color: #174D59;
}
.cookie-banner .accept-cookie:hover {
  background: #fff;
  color: #174D59;
  box-shadow: 0 2px 10px #F7B73333;
}
.cookie-banner .reject-cookie {
  background: #fff;
  color: #F7B733;
  border: 1.5px solid #F7B733;
}
.cookie-banner .reject-cookie:hover {
  background: #F7B733;
  color: #174D59;
  box-shadow: 0 2px 10px #fff5cc;
}
.cookie-banner .settings-cookie {
  background: transparent;
  color: #F7B733;
  border: 1.5px solid #F7B733;
}
.cookie-banner .settings-cookie:hover {
  background: #F7B733;
  color: #174D59;
}


/* Cookie Preferences Modal */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(23,77,89,0.55);
  z-index: 1999;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: modalFadeIn 0.35s cubic-bezier(.65,.2,.2,1);
}
@keyframes modalFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  color: #174D59;
  border-radius: 18px;
  max-width: 430px;
  width: 94vw;
  padding: 34px 28px 24px 28px;
  box-shadow: 0 8px 36px #174D5930;
  font-size: 1.11rem;
  display: flex;
  flex-direction: column;
  gap: 22px;
  animation: modalContentPop 0.3s cubic-bezier(.7,.3,.17,1.7);
  position: relative;
}
@keyframes modalContentPop {
  from { opacity: 0; transform: scale(0.92); }
  to { opacity: 1; transform: scale(1); }
}
.cookie-modal .modal-title {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-size: 1.35rem;
  margin-bottom: 3px;
}
.cookie-modal .modal-close {
  position: absolute;
  top: 14px;
  right: 19px;
  background: none;
  border: none;
  color: #174D59;
  font-size: 1.7rem;
  cursor: pointer;
  z-index: 10;
}
.cookie-modal .cookie-preferences {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.cookie-modal .category-title {
  font-weight: 700;
  color: #174D59;
}
.cookie-modal .category-toggle {
  width: 42px;
  height: 24px;
  background: #E9EEF1;
  border-radius: 14px;
  position: relative;
  margin-left: 6px;
  flex-shrink: 0;
}
.cookie-modal .category-toggle input[type='checkbox'] {
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}
.cookie-modal .slider {
  position: absolute;
  left: 3px; top: 3px;
  width: 18px; height: 18px;
  background: #174D59;
  border-radius: 50%;
  transition: .18s;
}
.cookie-modal .category-toggle.analytics input:checked + .slider,
.cookie-modal .category-toggle.marketing input:checked + .slider {
  background: #F7B733;
  transform: translateX(18px);
}
.cookie-modal .cookie-buttons {
  display: flex;
  gap: 16px;
  margin-top: 6px;
}
.cookie-modal .cookie-buttons button {
  padding: 8px 34px;
  font-size: 1.03rem;
  min-width: 94px;
}

@media (max-width: 600px) {
  .cookie-modal {
    padding: 18px 8px 11px 8px;
  }
}

/* ===================
     VIBRANT ENERGETIC ACCENT
   =================== */
body, .about-short, .features, .services-preview, .blog, .events, .testimonials-preview, .testimonials, .legal-section {
  box-shadow: 0 2px 24px rgba(247,183,51,.04);
}

.section, .features, .services-preview, .blog, .events, .testimonials-preview, .testimonials, .about-short, .legal-section, .thank-you-section {
  border-left: 8px solid #F7B733;
  box-shadow: 0 2px 24px 0 #F7B73322;
}

.cta-btn, .card, .feature-grid li, .testimonial-card {
  border-bottom: 4px solid #F7B733;
}
.cta-btn.primary {
  background: linear-gradient(90deg, #F7B733 60%, #FFD86E 100%);
  color: #174D59;
}
.cta-btn.primary:hover, .cta-btn.primary:focus {
  background: linear-gradient(90deg, #FFD86E 60%, #F7B733 100%);
  color: #174D59;
}

.card, .feature-grid li, .testimonial-card {
  border-left: 4px solid #174D59;
}

/* ================
   TYPOGRAPHY ACCENTS
   ================ */
h1, h2, h3, .cta-btn {
  letter-spacing: 0.03em;
  text-transform: none;
}
h1, h2 { font-family: 'Montserrat', Arial, sans-serif; }
h3, h4, .cta-btn { font-family: 'Montserrat', Arial, sans-serif; }
strong { color: #F7B733; }

/* ================
   UTILITIES
   ================ */
.text-center { text-align: center; }
.section-mb { margin-bottom: 60px !important; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.gap-20 { gap: 20px; }
.align-center { align-items: center; }
.align-start { align-items: flex-start; }
.justify-between { justify-content: space-between; }
.rounded-16 { border-radius: 16px; }

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