/* =====================================================
   CSS RESET & NORMALIZATION
   ===================================================== */
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; }
*, *:before, *:after { box-sizing: inherit; }
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  background: #fafafa;
  color: #18181b;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a {
  color: #18181b;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #344966;
  text-decoration: underline;
}
ul, ol {
  margin-left: 2em;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* =====================================================
   FONTS
   ===================================================== */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,800&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600,700&display=swap');
h1, h2, h3, h4 {
  font-family: 'Montserrat', 'Arial Black', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #131313;
}
h1 { font-size: 2.4rem; line-height: 1.17; margin-bottom: 24px; }
h2 { font-size: 1.7rem; line-height: 1.22; margin-bottom: 20px; }
h3 { font-size: 1.25rem; line-height: 1.3; margin-bottom: 12px; }
h4 { font-size: 1.1rem; margin-bottom: 8px; }
p, ul, ol, li {
  color: #232327;
  font-size: 1rem;
}
strong { font-weight: 700; }

/* =====================================================
   LAYOUT CONTAINERS & GENERAL SPACING
   ===================================================== */
.container {
  margin-left: auto;
  margin-right: auto;
  max-width: 1120px;
  width: 100%;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 768px) {
  .section {
    padding: 28px 8px;
    margin-bottom: 40px;
  }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.22rem; }
  .container { max-width: 100vw; }
}

/* =====================================================
   HEADER & NAVIGATION
   ===================================================== */
header {
  background: #ffffff;
  box-shadow: 0 4px 22px rgba(30,30,33,0.06);
  padding: 0 0 0 0;
}
.header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: 1120px;
  margin: 0 auto;
  height: 84px;
  padding: 0 20px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}
.main-nav a {
  color: #18181b;
  font-family: "Montserrat",Arial,sans-serif;
  font-weight: 700;
  opacity: .84;
  font-size: 1.05rem;
  transition: color 0.18s, opacity 0.2s;
  padding: 8px 4px 8px 4px;
}
.main-nav a:hover, .main-nav a:focus {
  color: #344966;
  opacity: 1;
  border-bottom: 2px solid #344966;
}
.btn-primary {
  color: #fff;
  background: #131313;
  border: none;
  border-radius: 28px;
  font-family: 'Montserrat', Arial,sans-serif;
  font-size: 1.07rem;
  font-weight: 700;
  padding: 10px 32px;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: background 0.18s, box-shadow 0.18s, color 0.2s, transform 0.18s;
  box-shadow: 0 3px 16px 0 rgba(44,44,62,0.08);
  margin-left: 12px;
  outline: none;
  position: relative;
  z-index: 1;
  display: inline-block;
}
.btn-primary:hover, .btn-primary:focus {
  background: #344966;
  color: #fff;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 6px 22px 0 rgba(44,44,62,0.13);
}

/* Burger Mobile Menu (Hamburger) */
.mobile-menu-toggle {
  background: transparent;
  border: none;
  font-size: 2.2rem;
  color: #232327;
  display: none;
  padding: 8px;
  cursor: pointer;
  margin-left: 2px;
  z-index: 42;
  transition: color 0.18s;
}
.mobile-menu-toggle:focus {
  color: #344966;
}
/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: #0e0e11f1;
  z-index: 1099;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.77,0,.18,1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 28px 24px 16px 24px;
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2.5rem;
  align-self: flex-end;
  margin-bottom: 24px;
  cursor: pointer;
  z-index: 1138;
  transition: color 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #ACD8AA;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-left: 8px;
  width: 100%;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 10px 5px;
  border-radius: 9px;
  transition: background 0.2s, color 0.16s;
  width: 100%;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #344966;
  color: #fff;
  text-decoration: none;
}
@media (max-width: 1023px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .btn-primary {
    display: none;
  }
}
@media (min-width: 1024px) {
  .mobile-menu { display: none !important; }
}

/* =====================================================
   HERO & CTA SECTIONS
   ===================================================== */
.hero-section {
  background: #fff;
  border-bottom: 1.5px solid #F4E9CD;
  min-height: 420px;
  display: flex;
  align-items: center;
  padding: 60px 0 40px 0;
  margin-bottom: 60px;
}
.hero-section .container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
}
.hero-section .content-wrapper {
  align-items: flex-start;
  max-width: 700px;
}
.cta-section {
  background: #F4E9CD;
  border-radius: 26px;
  box-shadow: 0 2px 10px 0 rgba(44,44,62,0.04);
  margin-bottom: 60px;
  padding: 40px 20px;
  display: flex;
}
.cta-section .content-wrapper {
  align-items: center;
  gap: 16px;
  text-align: center;
}
.cta-section h2, .cta-section h1 {
  color: #18181b;
}
@media (max-width: 768px) {
  .hero-section {
    margin-bottom: 32px;
    padding: 32px 0 24px 0;
    min-height: 260px;
  }
  .cta-section {
    margin-bottom: 30px;
    padding: 24px 7px;
  }
}

/* =====================================================
   FLEXBOX LAYOUTS (MANDATORY PATTERNS)
   ===================================================== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  box-shadow: 0 4px 22px 0 rgba(44,44,62,0.08);
  border-radius: 16px;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  min-width: 250px;
  padding: 20px 18px;
  transition: transform 0.16s, box-shadow 0.2s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 7px 22px 0 rgba(30,30,33,0.14);
  transform: translateY(-2px) scale(1.01);
}
.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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 14px;
  margin-bottom: 20px;
  box-shadow: 0 2px 14px 0 rgba(49,49,65,0.08);
  max-width: 590px;
  border-left: 5px solid #344966;
}
.testimonial-card p {
  color: #18181b;
  font-size: 1.08rem;
  font-family: 'Open Sans', Arial, sans-serif;
}
.testimonial-card span {
  color: #58585c;
  font-size: 1rem;
  font-style: italic;
  letter-spacing: 0.02em;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Specific for .feature-grid, .course-list, .pricing-table, etc. */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.feature-grid > div {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px 0 rgba(44,44,62,0.08);
  padding: 22px 18px 18px 18px;
  min-width: 230px;
  flex: 1 1 250px;
  transition: box-shadow 0.18s, transform 0.12s;
}
.feature-grid > div:hover {
  box-shadow: 0 6px 20px 0 rgba(44,44,62,0.13);
  transform: translateY(-2px) scale(1.01);
}
@media (max-width: 900px) {
  .feature-grid {
    gap: 18px;
  }
  .feature-grid > div {
    flex: 1 1 100%;
    min-width: unset;
  }
}
.course-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 16px;
  margin-bottom: 8px;
}
.course-item {
  background: #fff;
  border-radius: 16px;
  min-width: 250px;
  flex: 1 1 310px;
  box-shadow: 0 2px 12px 0 rgba(44,44,62,0.08);
  padding: 22px 20px 16px 20px;
  margin-bottom: 20px;
  transition: box-shadow 0.15s, transform 0.11s;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.course-item:hover {
  box-shadow: 0 6px 20px 0 rgba(30,30,33,0.13);
  transform: translateY(-3px) scale(1.015);
}
@media (max-width: 900px) {
  .course-list {
    flex-direction: column;
    gap: 16px;
  }
  .course-item {
    flex: 1 1 100%;
  }
}

/* FAQ Accordion */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.faq-item {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 2px 12px 0 rgba(49,49,65,0.07);
  padding: 20px 18px 15px 18px;
  transition: box-shadow 0.16s;
}
.faq-item h2 {
  color: #374151;
  font-size: 1.13rem;
  margin-bottom: 10px;
}
.faq-item p {
  color: #3d3d40;
  font-size: 1rem;
}

/* Pricing Table */
.pricing-table {
  margin: 24px 0 22px 0;
  overflow-x: auto;
}
.pricing-table table {
  border-collapse: collapse;
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 14px rgba(44,44,62,0.06);
  border-radius: 12px;
  overflow: hidden;
}
.pricing-table th, .pricing-table td {
  text-align: left;
  padding: 14px 18px;
  border-bottom: 1px solid #e5e7eb;
  font-size: 1rem;
}
.pricing-table th {
  background: #344966;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.01em;
}
.pricing-table tr:last-child td {
  border-bottom: none;
}

.features-list {
  margin-top: 18px;
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.features-list li {
  padding-left: 18px;
  position: relative;
}
.features-list li::before {
  content: '•';
  color: #344966;
  font-size: 17px;
  position: absolute;
  left: 0;
  top: 0;
}
.faq-snippet {
  background: #e2e2e7;
  border-radius: 12px;
  padding: 13px 18px;
  color: #222229;
  margin-top: 12px;
  font-size: 1rem;
}

/* Badges */
.badges {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 16px;
}
.badge {
  background: #232327;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 6px 19px;
  border-radius: 22px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.017em;
  box-shadow: 0 1px 5px rgba(49,49,65,0.07);
  white-space: nowrap;
}

/* =====================================================
   FOOTER
   ===================================================== */
footer {
  background: #18181b;
  color: #fff;
  padding: 34px 0 28px 0;
}
.footer-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 38px;
  max-width: 1120px;
  margin: 0 auto;
  justify-content: space-between;
  padding: 0 22px;
}
.footer-wrapper > * {
  flex: 1 1 220px;
  min-width: 160px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav a {
  color: #F4E9CD;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  transition: color 0.18s;
  opacity: 0.89;
  margin-bottom: 3px;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #ACD8AA;
  opacity: 1;
}
.footer-contact p {
  font-size: 1rem;
  color: #ededf2;
  margin-bottom: 8px;
}
@media (max-width: 950px) {
  .footer-wrapper { gap: 16px; }
}
@media (max-width: 768px) {
  .footer-wrapper {
    flex-direction: column;
    gap: 12px;
    padding: 0 8px;
  }
}

/* =====================================================
   SECTION: GENERAL
   ===================================================== */
.text-section .container, .features-section .container, .cta-section .container {
  margin-top: 0;
  margin-bottom: 0;
}
.text-section {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 13px 0 rgba(49,49,65,0.05);
  margin-bottom: 60px;
}
.text-section .content-wrapper {
  gap: 13px;
  padding: 18px 0;
}
@media (max-width: 768px) {
  .text-section {
    margin-bottom: 30px;
    border-radius: 11px;
    padding: 6px 0;
  }
}

/* =====================================================
   CONTACT DETAILS LIST (KONTAKT)
   ===================================================== */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 10px;
  margin-bottom: 10px;
}
.contact-details li {
  display: flex;
  gap: 11px;
  align-items: center;
  color: #232327;
  font-size: 1rem;
}
.contact-details img {
  width: 20px;
  height: 20px;
  filter: grayscale(90%) contrast(1.2);
}

/* =====================================================
   MICRO-INTERACTIONS & EFFECTS
   ===================================================== */
.card, .feature-grid > div, .course-item, .faq-item, .testimonial-card, .badge {
  transition: box-shadow 0.2s, transform 0.15s;
}
.card:active, .feature-grid > div:active, .course-item:active, .testimonial-card:active {
  transform: scale(0.98);
}
.testimonial-card:hover {
  box-shadow: 0 8px 26px 0 rgba(35,35,40,0.14);
}

/* =====================================================
   MONOCHROME SOPHISTICATED ENHANCEMENTS
   ===================================================== */
body {
  background: #f6f6f7;
  color: #18181b;
}
.section, .hero-section, .cta-section, .features-section, .text-section, .footer-wrapper, .testimonial-card {
  /* Subtle gray-white backgrounds, crisp borders for monochrome drama */
}
h1, h2, h3, h4 { color: #131313; }
p, ul li, ol li { color: #232327; }
.card, .feature-grid > div, .course-item, .faq-item, .testimonial-card {
  background: #fff;
  border: 0.5px solid #e8e6ed;
  color: #18181b;
  box-shadow: 0 2px 14px 0 rgba(36,37,38,0.07);
}

/* Icon styles, monochrome accent */
.features-section img, .course-item img, .contact-details img {
  filter: grayscale(100%) brightness(0.35) opacity(0.95);
}
.features-section img:hover, .course-item img:hover, .contact-details img:hover {
  filter: none;
  transition: filter 0.18s;
}

/* Tables */
.pricing-table th, .pricing-table td {
  border-color: #e5e7eb;
}
.pricing-table th {
  background: #131313;
  color: #F4E9CD;
}

/* Quoting (for alternative testimonial/review blocks) */
blockquote {
  background: #ececec;
  border-left: 5px solid #344966;
  padding: 14px 22px;
  margin-bottom: 16px;
  border-radius: 14px;
  color: #232327;
  font-size: 1.09rem;
}

/* =====================================================
   COOKIE CONSENT BANNER & MODAL
   ===================================================== */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  width: 100vw;
  background: #18181b;
  color: #fff;
  padding: 22px 16px 22px 24px;
  z-index: 1200;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  box-shadow: 0 -3px 22px 0 rgba(20,20,24,0.18);
  transition: transform 0.36s, opacity 0.23s;
  font-size: 1rem;
}
.cookie-banner.hide {
  transform: translateY(100%);
  opacity: 0;
}
.cookie-banner .cookie-text {
  flex: 1 1 200px;
  color: #fff;
  font-size: 1rem;
}
.cookie-btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 19px;
  margin-right: 0;
  background: #fff;
  color: #18181b;
  border: none;
  transition: background 0.19s, color 0.17s, box-shadow 0.15s;
  cursor: pointer;
  box-shadow: 0 1px 6px rgba(49,49,65,0.07);
}
.cookie-btn-accept {
  background: #344966;
  color: #fff;
}
.cookie-btn-accept:hover, .cookie-btn-accept:focus {
  background: #232327;
  color: #fff;
}
.cookie-btn-reject {
  background: #fff;
  color: #18181b;
}
.cookie-btn-reject:hover, .cookie-btn-reject:focus {
  background: #232327;
  color: #fff;
}
.cookie-btn-settings {
  background: #F4E9CD;
  color: #232327;
}
.cookie-btn-settings:hover, .cookie-btn-settings:focus {
  background: #ACD8AA;
  color: #18181b;
}
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    gap: 14px;
    padding: 17px 8px 17px 8px;
    font-size: 0.96rem;
    text-align: left;
  }
}

/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(25,26,36,0.66);
  z-index: 1250;
  display: none;
  align-items: center;
  justify-content: center;
  animation: fade-in 0.27s;
}
.cookie-modal-overlay.open {
  display: flex;
}
@keyframes fade-in {
  from { opacity: 0; } to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  color: #232327;
  border-radius: 16px;
  max-width: 360px;
  width: 97vw;
  box-shadow: 0 7px 30px 0 rgba(36,37,38,0.22);
  padding: 26px 24px 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  animation: modal-appear 0.37s cubic-bezier(.67,.09,.46,1.1);
}
@keyframes modal-appear {
  0% { transform: translateY(60px) scale(0.89); opacity: 0.4; }
  100% { transform: none; opacity: 1; }
}
.cookie-modal h3 {
  margin-bottom: 0;
  color: #18181b;
  font-size: 1.13rem;
  font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 10px;
}
.cookie-category-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  padding: 6px 0 2px 0;
}
.cookie-category-label {
  flex: 1 1 auto;
  color: #232327;
}
.cookie-toggle {
  appearance: none;
  width: 36px; height: 20px;
  border-radius: 100px;
  background: #e2e2e7;
  outline: none;
  position: relative;
  transition: background 0.16s;
  cursor: pointer;
  display: inline-block;
}
.cookie-toggle:checked {
  background: #344966;
}
.cookie-toggle::before {
  content: '';
  position: absolute;
  top: 2px; left: 2px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 2px 6px rgba(44,44,62,0.03);
  transition: transform 0.12s;
}
.cookie-toggle:checked::before {
  transform: translateX(16px);
}
.cookie-modal-btn-group {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 8px;
}
.cookie-modal-close {
  position: absolute;
  top: 12px; right: 14px;
  background: transparent;
  border: none;
  color: #232327;
  font-size: 1.5rem;
  cursor: pointer;
  transition: color 0.16s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #344966;
}
@media (max-width: 500px) {
  .cookie-modal { padding: 13px 6px 15px 9px; max-width: 98vw; }
  .cookie-modal h3 { font-size: 0.98rem; }
}

/* =====================================================
   MISC UTILITY CLASSES
   ===================================================== */
.hide { display: none !important; }
.show { display: block !important; }
.text-center { text-align: center; }
.w-100 { width: 100% !important; }
.rounded { border-radius: 26px; }

/* =====================================================
   MONOCHROME SOPHISTICATED COLOR PALETTE
   ===================================================== */
:root {
  --primary: #344966;
  --secondary: #F4E9CD;
  --accent: #ACD8AA;
  --dark: #131313;
  --almost-black: #18181b;
  --gray-100: #fafafa;
  --gray-200: #F4E9CD;
  --gray-300: #ececec;
  --gray-400: #e5e7eb;
  --gray-700: #232327;
  --white: #fff;
}

/* =====================================================
   SCROLLBAR STYLING
   ===================================================== */
::-webkit-scrollbar {
  width: 8px;
  background: #ececec;
}
::-webkit-scrollbar-thumb {
  background: #d5d5ee;
  border-radius: 9px;
}

/* =====================================================
   FORM ELEMENTS (for kontakt.html)
   ===================================================== */
input, textarea, select {
  font-family: 'Open Sans', Arial, sans-serif;
  border: 1.2px solid #dadcdf;
  border-radius: 9px;
  padding: 11px 13px;
  background: #fff;
  font-size: 1rem;
  color: #232327;
  outline: none;
  transition: border 0.18s;
}
input:focus, textarea:focus, select:focus {
  border-color: #344966;
}
label { font-size: 1rem; font-family: 'Montserrat', Arial, sans-serif; color: #344966; }

button:focus, .btn-primary:focus, a:focus {
  outline: 2px solid #ACD8AA;
  outline-offset: 1.5px;
}

input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: #344966;
}

/* =====================================================
   RESPONSIVE: GLOBAL
   ===================================================== */
@media (max-width: 600px) {
  h1 { font-size: 1.45rem; }
  h2 { font-size: 1.1rem; }
  .header-wrapper { height: 58px; padding: 0 8px; }
  .hero-section {
    padding: 17px 0 11px 0;
    min-height: 120px;
  }
  .footer-wrapper { padding: 0 3px; }
  .cta-section { padding: 18px 4px; }
}

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