/* =========================
   GLOW ADVANCE - MODERN_BOLD STYLE CSS
   ========================= */

/* ===== CSS RESET & BASE ===== */
html {
  box-sizing: border-box;
  font-size: 16px;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  background: #F7F8FA;
  color: #133B5C;
  line-height: 1.6;
  font-size: 1rem;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul, ol {
  margin: 0 0 1.5em 1.5em;
  padding-left: 20px;
}
a {
  color: #133B5C;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #F5DF4D;
}
button, .cta-btn {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  color: #133B5C;
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
h1 { font-size: 2.7rem; margin-bottom: 20px; }
h2 { font-size: 2rem; margin-bottom: 16px; }
h3 { font-size: 1.25rem; margin-bottom: 12px; }
h4 { font-size: 1.125rem; }
p, blockquote { font-size: 1rem; margin-bottom: 16px; }
strong { font-weight: 700; }
blockquote {
  font-style: italic;
  color: #133B5C;
  border-left: 5px solid #F5DF4D;
  padding-left: 15px;
  margin-bottom: 8px;
}

/* ===== LAYOUT CONTAINERS ===== */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 24px 0 rgba(19,59,92,0.06);
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px 0 rgba(19,59,92,0.08);
  padding: 32px 24px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.2s;
}
.card:hover { box-shadow: 0 8px 32px 0 rgba(19,59,92,0.18); }
.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;
  background: #fffbea;
  border-radius: 16px;
  margin-bottom: 20px;
  box-shadow: 0 2px 24px 0 rgba(19,59,92,0.06);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ===== HEADER & NAV ===== */
header {
  background: #fff;
  border-bottom: 4px solid #F5DF4D;
  padding: 0;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 80px;
  gap: 32px;
}
header img {
  height: 44px;
}
.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 22px;
  margin-left: 32px;
  flex: 1;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.5px;
  font-size: 1rem;
  color: #133B5C;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: border-bottom 0.18s, color 0.18s;
}
.main-nav a:hover, .main-nav a:focus {
  color: #F5DF4D;
  border-bottom: 2px solid #F5DF4D;
}

.cta-btn {
  background: #133B5C;
  color: #fff;
  border: none;
  border-radius: 32px;
  padding: 12px 36px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 900;
  box-shadow: 0 2px 12px 0 rgba(19,59,92,0.09);
  letter-spacing: 0.8px;
  margin-left: 16px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.09s;
  outline: none;
  text-align: center;
}
.cta-btn:hover, .cta-btn:focus {
  background: #F5DF4D;
  color: #133B5C;
  box-shadow: 0 6px 24px 0 rgba(245,223,77,0.12);
  transform: translateY(-2px) scale(1.03);
}

/* ===== MOBILE MENU ===== */
.mobile-menu-toggle {
  display: none;
  background: #F5DF4D;
  border: none;
  color: #133B5C;
  font-size: 2rem;
  padding: 6px 16px;
  border-radius: 36px;
  cursor: pointer;
  margin-left: auto;
  transition: background 0.2s, transform 0.14s;
  z-index: 1099;
}

.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #133B5C;
  color: #fff;
  transform: scale(1.08);
}

.mobile-menu {
  position: fixed;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  max-width: 100vw;
  background: #133B5C;
  transform: translateX(-100%);
  transition: transform 0.34s cubic-bezier(.86,0,.07,1);
  z-index: 2000;
  opacity: 0.99;
  padding: 0;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu .mobile-menu-close {
  position: absolute;
  top: 22px;
  right: 24px;
  font-size: 2rem;
  background: transparent;
  border: none;
  color: #F5DF4D;
  cursor: pointer;
  z-index: 10;
  transition: color 0.16s, transform 0.14s;
}
.mobile-menu .mobile-menu-close:hover, .mobile-menu .mobile-menu-close:focus {
  color: #fff;
  transform: rotate(90deg);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  margin-top: 90px;
  width: 100%;
  padding-left: 36px;
}
.mobile-nav a {
  color: #F5DF4D;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: 1.2px;
  padding: 10px 0;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F5DF4D;
  color: #133B5C;
}

/* ===== HERO SECTIONS ===== */
.hero {
  padding: 65px 0 35px 0;
  background: #F5DF4D;
  border-radius: 0 0 36px 36px;
  min-height: 240px;
  margin-bottom: 40px;
}
.hero h1, .hero p {
  color: #133B5C;
}
.hero .cta-btn {
  background: #133B5C;
  color: #fff;
  margin-top: 24px;
}

/* ===== FEATURE GRID, SERVICES, CARDS ===== */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
}
.feature {
  background: #fff;
  flex: 1 1 210px;
  min-width: 210px;
  max-width: 280px;
  padding: 22px 18px;
  border-radius: 18px;
  box-shadow: 0 2px 14px 0 rgba(19,59,92,0.06);
  text-align: left;
  transition: box-shadow 0.18s;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.feature img {
  width: 38px;
  height: 38px;
  margin-bottom: 14px;
}
.feature:hover {
  box-shadow: 0 6px 24px 0 rgba(19,59,92,0.14);
}

/* Service Cards (Index + Sluzby) */
.service-card-list, .services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.service-card, .service-block {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 14px 0 rgba(19,59,92,0.09);
  padding: 28px 20px;
  flex: 1 1 210px;
  min-width: 210px;
  max-width: 270px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: flex-start;
  align-items: flex-start;
  transition: box-shadow 0.18s, transform 0.16s;
  margin-bottom: 20px;
  position: relative;
}
.service-card img, .service-block img {
  width: 36px;
  height: 36px;
  margin-bottom: 8px;
}
.service-card .price, .service-block strong {
  background: #F5DF4D;
  color: #133B5C;
  border-radius: 6px;
  padding: 4px 12px;
  font-weight: 800;
  font-size: 0.97rem;
  letter-spacing: 0.8px;
}
.service-card:hover, .service-block:hover {
  box-shadow: 0 8px 32px 0 rgba(245,223,77,0.18);
  transform: translateY(-2px) scale(1.03);
}

/* ===== NEWS/CATEGORIES/FEEDS ===== */
.news-categories {
  margin-top: 12px;
  font-size: 1rem;
  font-weight: 700;
  color: #133B5C;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}
.news-categories a {
  background: #F5DF4D;
  color: #133B5C;
  border-radius: 4px;
  padding: 4px 12px;
  font-weight: 600;
  margin-right: 8px;
  transition: background 0.15s, color 0.15s;
}
.news-categories a:hover {
  background: #133B5C;
  color: #fff;
}
.news-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 20px;
}
.news-list li h3 {
  font-size: 1.1rem;
  margin-bottom: 6px;
  color: #133B5C;
  font-weight: bold;
}
.news-list li p {
  font-size: 1rem;
}

/* zpravy.html news-feed and tabs */
.category-tabs {
  display: flex;
  gap: 16px;
  margin: 14px 0 10px 0;
  flex-wrap: wrap;
}
.category-tabs a {
  color: #133B5C;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  background: #F7F8FA;
  border-radius: 24px;
  padding: 9px 22px;
  font-size: 1rem;
  letter-spacing: 0.6px;
  transition: background 0.17s, color 0.14s;
}
.category-tabs a.active,
.category-tabs a:hover,
.category-tabs a:focus {
  background: #F5DF4D;
  color: #133B5C;
}
.tags-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-bottom: 14px;
}
.tags-cloud span {
  background: #fff;
  color: #133B5C;
  border-radius: 5px;
  padding: 3px 10px;
  font-size: 0.95rem;
  font-weight: 700;
  border: 1px solid #F5DF4D;
}
.news-feed {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.news-feed h2 {
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 4px;
}

.highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}
.highlight {
  background: #fff;
  border-left: 7px solid #F5DF4D;
  border-radius: 9px;
  padding: 20px 19px 17px 28px;
  min-width: 220px;
  max-width: 410px;
}
.highlight h3 {
  font-size: 1.12rem;
  font-weight: 700;
  margin-bottom: 7px;
}
.highlight a { color: #133B5C; text-decoration: underline; font-weight: 700; }

/* regiony.html layout */
.region-picker h2 {
  font-size: 1.15rem;
  font-weight: 700;
}
.region-list {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin: 11px 0 18px 0;
  list-style: none;
}
.region-list li {
  background: #F7F8FA;
  color: #133B5C;
  border-radius: 6px;
  padding: 8px 18px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s, color 0.17s, box-shadow 0.14s;
  box-shadow: 0 4px 14px 0 rgba(19,59,92,0.03);
  margin-bottom: 8px;
}
.region-list li:hover {
  background: #F5DF4D;
  color: #133B5C;
  box-shadow: 0 6px 18px 0 rgba(245,223,77,0.09);
}
.local-news-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 14px;
}
.local-news {
  background: #fff;
  border-left: 6px solid #133B5C;
  border-radius: 12px;
  padding: 18px 16px 13px 20px;
  min-width: 220px;
  flex: 1 1 220px;
  margin-bottom: 8px;
  box-shadow: 0 2px 14px 0 rgba(19,59,92,0.07);
}
.community-announcements {
  margin-top: 28px;
  background: #F7F8FA;
  padding: 16px;
  border-radius: 12px;
}
.community-announcements h4 {
  margin-bottom: 8px;
  color: #133B5C;
}
.community-announcements ul {
  list-style: disc inside;
}

/* Pricing Table (predplatne) */
.pricing-table {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 24px;
  justify-content: flex-start;
}
.pricing-column {
  background: #fff;
  border-radius: 21px;
  box-shadow: 0 2px 24px 0 rgba(19,59,92,0.09);
  padding: 33px 30px 30px 30px;
  flex: 1 1 240px;
  min-width: 240px;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
  border-left: 8px solid #F5DF4D;
  position: relative;
}
.pricing-column .price {
  background: #F5DF4D;
  color: #133B5C;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.3rem;
  font-weight: 900;
  letter-spacing: 1.0px;
  padding: 8px 15px;
  border-radius: 6px;
  margin-top: 7px;
  margin-bottom: 7px;
}
.pricing-column ul {
  list-style: none;
  margin-top: 0px;
  margin-bottom: 16px;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.pricing-column .cta-btn {
  margin-top: 4px;
  width: 100%;
  text-align: center;
}
.compare-benefits {
  background: #fff;
  box-shadow: 0 2px 14px 0 rgba(19,59,92,0.06);
  border-radius: 14px;
  padding: 24px 18px;
  margin-bottom: 20px;
}
.compare-benefits h4 {
  font-size: 1.08rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  margin-bottom: 9px;
}
.compare-benefits ul {
  list-style: disc inside;
  margin-bottom: 3px;
  margin-top: 7px;
}

/* FAQ (predplatne) */
.faq {
  background: #F7F8FA;
  border-radius: 14px;
  margin: 38px 0 0 0;
  padding: 16px 0 0 0;
}
.faq-item {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px 0 rgba(19,59,92,0.03);
  margin-bottom: 14px;
  padding: 18px 14px 10px 14px;
  transition: box-shadow 0.14s;
}
.faq-item h3 {
  font-size: 1.05rem;
}

/* CTA Section */
.cta-section {
  background: #133B5C;
  color: #fff;
  border-radius: 24px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 16px;
}
.cta-section h2, .cta-section p {
  color: #fff;
  text-align: center;
}
.cta-section .cta-btn {
  background: #F5DF4D;
  color: #133B5C;
  font-weight: 900;
  box-shadow: 0 5px 18px 0 rgba(245,223,77,0.16);
}
.cta-section .cta-btn:hover {
  background: #fff;
  color: #133B5C;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 18px 0 0 0;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
  background: #fffbea;
  border-radius: 16px;
  box-shadow: 0 2px 14px 0 rgba(19,59,92,0.08);
  padding: 22px 20px;
  min-width: 220px;
  max-width: 410px;
  color: #133B5C;
  margin-bottom: 20px;
}
.testimonial-details span {
  font-size: 0.98rem;
  color: #133B5C;
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-top: 6px;
  opacity: 0.91;
}

/* ===== FOOTER ===== */
footer {
  background: #133B5C;
  color: #fff;
  padding: 45px 0 20px 0;
  margin-top: 60px;
  border-radius: 36px 36px 0 0;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
footer img {
  height: 39px;
  margin-bottom: 9px;
}
.footer-nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 12px;
  justify-content: center;
}
.footer-nav a {
  color: #F5DF4D;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.65px;
}
.footer-nav a:hover, .footer-nav a:focus {
  text-decoration: underline;
  color: #fff;
}
.contact-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  color: #fff;
  font-size: 0.98rem;
}
.contact-footer span {
  display: flex;
  align-items: center;
  gap: 6px;
}
.contact-footer img {
  height: 18px;
  width: 18px;
  filter: brightness(0) invert(1);
}
.copyright {
  font-size: 0.9rem;
  color: #F5DF4D;
  margin-top: 10px;
}

/* ===== OFFICE HOURS, EDITOR CARDS, TEAM ===== */
.office-hours ul, .team-list {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.editor-card {
  background: #fff;
  border-radius: 10px;
  padding: 16px 24px;
  margin-bottom: 18px;
  box-shadow: 0 2px 10px 0 rgba(19,59,92,0.05);
  font-size: 1rem;
}
.editor-card strong {
  color: #133B5C;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
}
.values-block ul {
  list-style: disc inside;
  margin-bottom: 1em;
  margin-top: 6px;
}

/* ===== FORMS, CONTACT ===== */
.contact-info ul {
  list-style: none;
  margin: 0 0 12px 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-info ul li, .office-hours ul li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
}
.contact-info img, .office-hours img {
  height: 18px;
  width: 18px;
}

.map-placeholder {
  background: #fff;
  border-radius: 11px;
  box-shadow: 0 2px 14px 0 rgba(19,59,92,0.045);
  font-size: 1rem;
  padding: 16px 18px;
  margin-top: 6px;
}

/* ===== COOKIE CONSENT BANNER & MODAL ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  color: #133B5C;
  box-shadow: 0 -4px 24px 0 rgba(19,59,92,0.13);
  padding: 20px 22px;
  z-index: 3000;
  gap: 18px;
  border-top: 4px solid #F5DF4D;
  font-size: 1rem;
  animation: cookieSlideIn 0.6s cubic-bezier(.86,0,.07,1) forwards;
}
@keyframes cookieSlideIn {
  0% { transform: translateY(100%); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 13px;
  flex-wrap: wrap;
}
.cookie-btn {
  background: #F5DF4D;
  color: #133B5C;
  border: none;
  border-radius: 22px;
  padding: 9px 26px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 800;
  transition: background 0.16s, color 0.18s, transform 0.13s;
  cursor: pointer;
  outline: none;
}
.cookie-btn:focus, .cookie-btn:hover {
  background: #133B5C;
  color: #fff;
  transform: scale(1.07);
}
.cookie-btn.settings {
  background: #fff;
  color: #133B5C;
  border: 2px solid #F5DF4D;
}
.cookie-btn.settings:hover {
  background: #F5DF4D;
  color: #133B5C;
  border: 2px solid #133B5C;
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%) scale(0.95);
  background: #fff;
  border-radius: 21px;
  box-shadow: 0 12px 48px 10px rgba(19,59,92,0.12);
  z-index: 3500;
  width: 94vw;
  max-width: 440px;
  padding: 32px 24px 22px 24px;
  display: none;
  flex-direction: column;
  gap: 21px;
  animation: cookieModalFadeIn 0.39s cubic-bezier(.86,0,.07,1);
}
.cookie-modal.active {
  display: flex;
}
@keyframes cookieModalFadeIn {
  0% { opacity: 0; transform: translate(-50%,-50%) scale(0.84); }
  100% { opacity: 1; transform: translate(-50%,-50%) scale(1); }
}
.cookie-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.cookie-modal-header h3 {
  font-size: 1.18rem;
}
.cookie-modal-close {
  background: none;
  border: none;
  color: #133B5C;
  font-size: 1.7rem;
  cursor: pointer;
  margin-left: 8px;
  border-radius: 100px;
  transition: background 0.14s, color 0.13s, transform 0.14s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #F5DF4D;
  color: #133B5C;
  transform: scale(1.1);
}
.cookie-options {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cookie-option {
  display: flex;
  gap: 8px;
  align-items: center;
}
.cookie-option input[type="checkbox"], .cookie-option input[type="radio"] {
  accent-color: #F5DF4D;
  width: 1.1em;
  height: 1.1em;
  margin-right: 4px;
}
.cookie-option strong {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
}
.cookie-option .always {
  color: #133B5C;
  font-size: 0.97em;
  opacity: 0.75;
  margin-left: 4px;
}
.cookie-modal .cookie-btn {
  margin: 10px 0 0 0;
}

/* Overlay for modal */
.cookie-modal-backdrop {
  background: rgba(19,59,92,0.13);
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  z-index: 3400;
  display: none;
}
.cookie-modal.active ~ .cookie-modal-backdrop {
  display: block;
}

/* ===== MEDIA QUERIES: MOBILE FIRST ===== */
@media (max-width: 1024px) {
  .container {
    max-width: 970px;
  }
  .footer-nav {
    gap: 11px;
  }
}
@media (max-width: 900px) {
  .container {
    max-width: 95vw;
  }
  header .container {
    gap: 24px;
  }
}
@media (max-width: 768px) {
  html { font-size: 15px; }
  .container {
    max-width: 100vw;
    padding-left: 10px;
    padding-right: 10px;
  }
  header .container {
    flex-wrap: wrap;
    gap: 16px;
    height: 60px;
    min-height: 48px;
  }
  .main-nav {
    display: none;
  }
  .cta-btn {
    margin-left: auto;
    font-size: 1rem;
    padding: 10px 16px;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .hero {
    padding: 36px 0 12px 0;
    border-radius: 0 0 26px 26px;
    min-height: 150px;
    margin-bottom: 28px;
  }
  .feature-grid, .service-card-list, .services-list, .content-wrapper, .card-container, .testimonials, .local-news-grid, .highlights, .pricing-table {
    flex-direction: column;
    gap: 14px;
  }
  .feature, .service-card, .service-block, .pricing-column, .highlight, .testimonial-card, .editor-card, .local-news {
    min-width: unset;
    max-width: unset;
    width: 100%;
    margin-bottom: 14px;
  }
  .content-grid, .card-container {
    flex-direction: column;
    gap: 14px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  .cta-section {
    padding: 16px 7px;
    border-radius: 13px;
  }
  .testimonial-card {
    margin-bottom: 14px;
    padding: 15px 8px;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 11px;
    padding: 14px 7px;
    font-size: 0.99rem;
  }
}
@media (max-width: 515px) {
  html { font-size: 14px; }
  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.15rem; }
  .container { padding: 0 4px; }
  .feature, .service-card, .service-block, .pricing-column, .highlight, .editor-card, .local-news {
    padding: 12px 7px;
    border-radius: 7px;
  }
}

/* ===== FOCUS STATES (a11y) ===== */
a:focus, button:focus, .cta-btn:focus, input:focus, .cookie-btn:focus {
  outline: 2px solid #F5DF4D;
  outline-offset: 2px;
}

/* Hide scroll on modal open for mobile menu/cookie modal (supplied via JS, but fallback CSS) */
.mobile-menu-open, .cookie-modal-open {
  overflow: hidden;
  height: 100vh;
}

/* ========== END GLOW ADVANCE CSS ========== */
