/* Rare Vistas Consulting | style.css | gradient_modern aesthetic */
/* --- CSS RESET & BASES --- */
html {
  box-sizing: border-box;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  background: linear-gradient(120deg, #F2F2F2 0%, #e6ece5 100%);
  color: #24304A;
  min-height: 100vh;
  letter-spacing: 0.01em;
  line-height: 1.6;
  -webkit-tap-highlight-color: transparent;
}
:root {
  --primary: #24304A;
  --secondary: #7CB518;
  --accent: #F2F2F2;
  --danger: #D7263D;
  --text: #24304A;
  --text-light: #fff;
  --shadow: rgba(36,48,74,0.06);
}
img {
  max-width: 100%;
  border: 0;
}
a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: var(--secondary);
  outline: none;
}
ul, ol {
  padding-left: 1.5em;
  margin-bottom: 16px;
}
strong {
  font-weight: 700;
}
/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
  line-height: 1.15;
}
h1 { font-size: 2.5rem; margin-bottom: 20px; }
h2 { font-size: 2rem; margin-bottom: 16px; }
h3 { font-size: 1.35rem; margin-bottom: 12px; }
h4 { font-size: 1.1rem; }
.subheadline {
  font-size: 1.25rem;
  font-family: 'Roboto', Arial, sans-serif;
  color: #445676;
  margin-bottom: 28px;
}
p, li, dt, dd {
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
}
dt {
  font-weight: 700;
  margin-top: 20px;
}
dd {
  margin-bottom: 20px;
}
blockquote {
  font-style: italic;
  color: var(--primary);
  opacity: 0.92;
  margin-bottom: 8px;
  border-left: 4px solid var(--secondary);
  padding-left: 20px;
}
/* --- LAYOUT CONTAINERS --- */
.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  max-width: 1200px;
  padding: 0 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}
.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
  padding: 16px 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 24px 0 var(--shadow);
  margin-bottom: 20px;
  position: relative;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  min-width: 260px;
  flex: 1 1 280px;
  transition: box-shadow 0.25s, transform 0.19s;
}
.card:hover {
  box-shadow: 0 8px 32px 0 rgba(36,48,74,0.12);
  transform: translateY(-4px) scale(1.02);
  z-index: 2;
}
.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;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  margin-bottom: 24px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 18px 0 var(--shadow);
  min-width: 240px;
  max-width: 500px;
}
.testimonial-card blockquote {
  font-size: 1.1rem;
  color: #24304A;
  border-left: 4px solid var(--secondary);
}
.testimonial-meta {
  font-size: 1rem;
  color: #24304A;
  opacity: 0.7;
  font-style: normal;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
/* --- HERO AND CTA --- */
.hero {
  min-height: 420px;
  background: linear-gradient(71deg, #7CB518 0%, #24304A 90%);
  color: #fff;
  display: flex;
  align-items: center;
  position: relative;
  margin-bottom: 48px;
  box-shadow: 0 4px 40px rgba(36,48,74,0.11);
}
.hero .container {
  align-items: flex-start;
  justify-content: center;
}
.hero h1, .hero .subheadline { color: #fff; }
.hero .cta-btn {
  margin-top: 18px;
}
.cta {
  background: linear-gradient(71deg, #7CB518 0%, #24304A 90%);
  color: #fff;
  border-radius: 18px;
  margin-bottom: 60px;
  box-shadow: 0 2px 36px 0 rgba(36,48,74,0.11);
}
.cta .cta-btn {
  background: #fff;
  color: var(--primary);
}
.cta h2, .cta p { color: #fff; }
/* --- BUTTONS & INTERACTIONS --- */
.cta-btn, .btn, button, input[type="submit"] {
  display: inline-block;
  padding: 13px 30px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.12rem;
  background: linear-gradient(90deg, #7CB518 0%, #96e428 100%);
  color: #24304A;
  border: none;
  border-radius: 32px;
  box-shadow: 0 2px 18px 0 rgba(36,48,74,0.10);
  cursor: pointer;
  transition: background 0.23s, color 0.18s, box-shadow 0.23s, transform 0.15s;
  text-align: center;
  outline: none;
}
.cta-btn:hover, .cta-btn:focus, .btn:hover, .btn:focus, button:hover, button:focus {
  background: linear-gradient(90deg, #96e428 0%, #7CB518 100%);
  color: #24304A;
  box-shadow: 0 6px 24px 0 rgba(124,181,24,0.20);
  transform: translateY(-2px) scale(1.04);
}
/* --- PRIMARY NAVIGATION --- */
header {
  background: #fff;
  box-shadow: 0 2px 16px var(--shadow);
  z-index: 10;
  position: relative;
}
.main-nav {
  display: flex;
  gap: 22px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1.03rem;
  color: #24304A;
  padding: 6px 12px;
  border-radius: 8px;
  transition: background 0.18s, color 0.18s;
}
.main-nav a:hover, .main-nav a.active {
  background: var(--secondary);
  color: #fff;
}
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.05rem;
  color: #24304A;
  cursor: pointer;
  transition: color 0.18s;
  margin-left: 14px;
  z-index: 40;
}
.mobile-menu-toggle:focus {
  color: var(--secondary);
}
.mobile-menu {
  display: none;
}
.mobile-menu.active {
  display: flex;
  flex-direction: column;
  position: fixed;
  z-index: 1005;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #24304A;
  padding: 0 0 32px 0;
  transition: transform 0.32s cubic-bezier(.85,0,.18,1);
  transform: translateX(0);
}
.mobile-menu {
  transform: translateX(-100vw);
  transition: transform 0.32s cubic-bezier(.85,0,.18,1);
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2.2rem;
  align-self: flex-end;
  margin: 22px 24px 0 0;
  cursor: pointer;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  margin-top: 64px;
  margin-left: 32px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.28rem;
  border-radius: 6px;
  padding: 10px 18px;
  width: 100%;
  transition: background 0.17s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--secondary);
  color: #24304A;
}
/* --- FOOTER --- */
footer {
  background: #24304A;
  color: #fff;
  padding: 52px 0 0 0;
  margin-top: 58px;
}
footer .container {
  align-items: flex-start;
  gap: 32px;
  flex-wrap: wrap;
}
.footer-brand {
  margin-bottom: 18px;
}
.footer-main-links, .footer-utility-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 8px;
}
.footer-main-links a, .footer-utility-links a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  opacity: 0.87;
  transition: color 0.16s;
}
.footer-main-links a:hover, .footer-utility-links a:hover {
  color: var(--secondary);
}
.footer-contact-short {
  font-size: 1rem;
  margin-bottom: 14px;
  color: #fff;
  opacity: 0.88;
}
.footer-contact-short img {
  vertical-align: middle;
  margin-right: 7px;
}
.footer-social-media {
  display: flex;
  gap: 16px;
  margin-bottom: 14px;
}
.footer-social-media a img {
  width: 28px;
  height: 28px;
  filter: brightness(0) invert(1);
  transition: filter 0.16s;
}
.footer-social-media a:hover img {
  filter: brightness(1) invert(0.3) sepia(1) saturate(3) hue-rotate(70deg);
}
.footer-copy {
  width: 100%;
  font-size: 0.92rem;
  color: #fff;
  opacity: 0.58;
  text-align: center;
  margin-top: 32px;
  margin-bottom: 16px;
}
/* --- FEATURE/CARD GRIDS --- */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  justify-content: flex-start;
  list-style: none;
  margin: 0 0 16px 0;
}
.feature-grid li {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 14px 0 var(--shadow);
  padding: 26px 20px 20px 18px;
  min-width: 212px;
  flex: 1 1 200px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.22s, transform 0.17s;
}
.feature-grid li:hover {
  box-shadow: 0 6px 20px rgba(124,181,24,0.13);
  transform: translateY(-2px) scale(1.01);
}
.feature-grid img {
  width: 38px;
  height: 38px;
  margin-bottom: 8px;
}
.service-list, .benefit-list {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  list-style-type: none;
  margin-bottom: 12px;
}
.service-list li, .benefit-list li {
  padding: 19px 16px 16px 16px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 14px 0 var(--shadow);
  margin-bottom: 20px;
  min-width: 200px;
  flex: 1 1 220px;
  position: relative;
  transition: box-shadow 0.22s, transform 0.18s;
  display: flex;
  align-items: center;
  gap: 13px;
}
.service-list li img, .benefit-list li img {
  width: 30px;
  height: 30px;
}
.service-list li:hover, .benefit-list li:hover {
  box-shadow: 0 6px 20px rgba(124,181,24,0.13);
  transform: translateY(-2px) scale(1.01);
}
/* --- BLOG --- */
.blog-featured-posts {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 22px;
}
.blog-featured-posts article {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 14px var(--shadow);
  padding: 26px 22px;
  min-width: 240px;
  flex: 1 1 280px;
  transition: box-shadow 0.22s, transform 0.17s;
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 20px;
}
.blog-featured-posts article:hover {
  box-shadow: 0 6px 22px rgba(124,181,24,0.13);
  transform: translateY(-2px) scale(1.015);
}
.blog-featured-posts h3 a {
  font-size: 1.19rem;
  color: var(--primary);
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
  transition: color 0.21s;
}
.blog-featured-posts h3 a:hover {
  color: var(--secondary);
}
.blog-meta {
  font-size: 0.99rem;
  color: #75809B;
}
.blog-list ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 16px;
}
.blog-list li {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 9px 0 var(--shadow);
  padding: 10px 18px;
  font-size: 1.07rem;
  transition: box-shadow 0.13s, transform 0.09s;
}
.blog-list li:hover {
  box-shadow: 0 4px 14px #7CB51833;
  transform: translateY(-2px);
}
.blog-categories-list {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  list-style: none;
}
.blog-categories-list li a {
  background: #F3F7EE;
  border-radius: 16px;
  padding: 8px 17px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #24304A;
  transition: background 0.13s, color 0.13s;
}
.blog-categories-list li a:hover {
  background: #7CB518;
  color: #fff;
}
/* --- PRICING TABLE (OFFER PAGE) --- */
.pricing-table {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  list-style: none;
  margin-bottom: 8px;
}
.pricing-table li {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 14px var(--shadow);
  padding: 28px 22px 22px 22px;
  min-width: 220px;
  flex: 1 1 270px;
  transition: box-shadow 0.22s, transform 0.17s;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pricing-table li strong {
  color: var(--secondary);
  font-size: 1.18rem;
}
.pricing-table li span {
  font-size: 0.98rem;
  color: #677184;
  margin-top: 6px;
  display: block;
}
.pricing-table li:hover {
  box-shadow: 0 6px 18px rgba(124,181,24,0.15);
  transform: translateY(-2px) scale(1.015);
}
/* --- ACCORDIONS/FAQ/LISTS --- */
.faq-list dt {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08rem;
  color: var(--primary);
  margin-bottom: 6px;
}
.faq-list dd {
  font-size: 1rem;
  margin-bottom: 12px;
  color: #356;
}
.timeline {
  list-style: none;
  padding-left: 0;
}
.timeline li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
}
.timeline li::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 9px;
  width: 8px;
  height: 8px;
  background: var(--secondary);
  border-radius: 50%;
}
/* --- EXPERIENCE HIGHLIGHT --- */
.experience-highlight {
  padding: 20px 18px;
  background: #f6fef4;
  border-radius: 12px;
  margin-top: 22px;
  box-shadow: 0 2px 12px 0 var(--shadow);
}
.experience-highlight h3 {
  margin-bottom: 10px;
  color: var(--primary);
  font-size: 1.15rem;
}
/* --- CONTACT --- */
.contact-details-list {
  list-style: none;
  margin-bottom: 11px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-details-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.09rem;
}
.contact-details-list img {
  width: 24px;
  height: 24px;
}
.location-map {
  font-size: 0.98rem;
  background: #f6fef4;
  padding: 13px 18px;
  border-radius: 10px;
}
.location-map strong {
  color: var(--secondary);
}
/* --- MISC TEXT SECTIONS --- */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.values-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  list-style: none;
}
.values-list li {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px var(--shadow);
  padding: 18px 14px 18px 18px;
  font-size: 1rem;
  min-width: 190px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.values-list img {
  width: 26px;
  height: 26px;
}
/* --- PROCESS STEPS (jak-dzialamy.html) --- */
.process-steps {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}
.process-steps li {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 14px var(--shadow);
  padding: 22px 17px 17px 16px;
  min-width: 210px;
  flex: 1 1 200px;
  display: flex;
  align-items: flex-start;
  gap: 13px;
  font-size: 1rem;
  margin-bottom: 20px;
  transition: box-shadow 0.22s, transform 0.21s;
}
.process-steps li img {
  width: 30px;
  height: 30px;
}
.process-steps li:hover {
  box-shadow: 0 6px 20px rgba(124,181,24,0.14);
  transform: translateY(-2px) scale(1.015);
}
/* --- FORM ELEMENTS --- */
input, select, textarea {
  font-size: 1rem;
  padding: 12px 14px;
  border: 1px solid #dee3ee;
  border-radius: 8px;
  background: #fff;
  color: #24304A;
  margin-bottom: 16px;
  box-shadow: none;
  outline: none;
  width: 100%;
  transition: border 0.17s;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--secondary);
}
/* --- RESPONSIVE BREAKPOINTS --- */
@media (max-width: 1024px) {
  .main-nav {
    gap: 12px;
  }
  .container {
    max-width: 970px;
  }
  .blog-featured-posts, .card-container, .feature-grid, .service-list, .benefit-list, .process-steps, .pricing-table, .values-list {
    gap: 16px;
  }
}
@media (max-width: 900px) {
  .container {
    max-width: 94vw;
  }
  .feature-grid, .service-list, .card-container, .blog-featured-posts, .process-steps, .pricing-table, .benefit-list {
    flex-direction: column;
    flex-wrap: wrap;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.45rem; }
  .main-nav, .cta-btn {
    display: none;
  }
  .header-container {
    flex-direction: row;
    gap: 9px;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .hero, .cta {
    border-radius: 0;
    min-height: 260px;
    padding: 15px 0;
  }
  .hero .container {
    padding: 0 8px;
  }
  .content-grid, .section, .content-wrapper {
    gap: 16px;
    padding-left: 0;
    padding-right: 0;
  }
  .card, .testimonial-card, .feature-grid li, .service-list li, .benefit-list li, .pricing-table li, .process-steps li, .values-list li, .blog-featured-posts article {
    min-width: 0;
    flex: 1 1 100%;
    margin-bottom: 16px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
  .footer-main-links, .footer-utility-links {
    flex-direction: column;
    gap: 6px;
  }
  .footer-social-media, .footer-contact-short {
    margin-bottom: 7px;
  }
}
@media (max-width: 500px) {
  .container {
    padding: 0 8px;
  }
  .hero, .cta, .section {
    padding: 15px 0;
  }
  .footer-brand img {
    width: 110px;
  }
}
/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1100;
  background: linear-gradient(90deg, #fff 70%, #e6ece5 100%);
  color: #24304A;
  box-shadow: 0 -2px 29px 0 rgba(65,96,92,0.09);
  padding: 22px 28px 22px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  border-radius: 12px 12px 0 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
.cookie-banner.visible {
  opacity: 1;
  pointer-events: all;
}
.cookie-banner p {
  font-size: 1rem;
  margin-bottom: 5px;
  text-align: center;
}
.cookie-banner .cookie-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.cookie-btn {
  display: inline-block;
  padding: 9px 22px;
  background: #7CB518;
  color: #24304A;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  border-radius: 32px;
  margin: 0 2px;
  cursor: pointer;
  transition: background 0.18s, color 0.13s, box-shadow 0.15s;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #24304A;
  color: #fff;
}
.cookie-btn.danger {
  background: #D7263D;
  color: #fff;
}
.cookie-btn.danger:hover {
  background: #bc1630;
}
.cookie-btn.secondary {
  background: #F2F2F2;
  color: #24304A;
  border: 1px solid #BCC9E0;
}
.cookie-btn.secondary:hover {
  background: #e6ece5;
  color: #24304A;
}
@media (max-width: 600px) {
  .cookie-banner {
    padding: 18px 8px 16px 8px;
    gap: 8px;
  }
  .cookie-banner .cookie-btns {
    gap: 8px;
    flex-direction: column;
    align-items: center;
  }
}
/* --- COOKIE PREFS MODAL --- */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  z-index: 1200;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: rgba(36,48,74, 0.63);
  align-items: center;
  justify-content: center;
}
.cookie-modal-overlay.active {
  display: flex;
  animation: fadeIn 0.22s;
}
@keyframes fadeIn {
  from { opacity: 0; } to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  border-radius: 22px;
  padding: 36px 32px 32px 32px;
  min-width: 320px;
  max-width: 94vw;
  box-shadow: 0 8px 60px 0 rgba(36,48,74,0.21);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  animation: modalPopUp 0.29s cubic-bezier(.64,.02,.53,1.05);
}
@keyframes modalPopUp {
  0% { transform: translateY(64px) scale(0.95); opacity: 0; }
  100% { transform: none; opacity: 1; }
}
.cookie-modal h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #24304A;
  margin-bottom: 6px;
}
.cookie-modal .category-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cookie-modal .category-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.01rem;
  background: #f6fef4;
  padding: 8px 14px;
  border-radius: 10px;
}
.cookie-modal .category-toggle {
  width: 36px;
  height: 20px;
  background: #BCC9E0;
  border-radius: 10px;
  position: relative;
  cursor: pointer;
  transition: background 0.15s;
  flex-shrink: 0;
}
.cookie-modal .category-toggle.enabled {
  background: #7CB518;
}
.cookie-modal .category-toggle::after {
  content: '';
  position: absolute;
  left: 2px;
  top: 2px;
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 100%;
  transition: left 0.18s;
  box-shadow: 0 1px 5px rgba(36,48,74,0.12);
}
.cookie-modal .category-toggle.enabled::after {
  left: 18px;
}
.cookie-modal .category-name {
  font-weight: 600;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #24304A;
}
.cookie-modal .essential {
  opacity: 0.65;
  cursor: not-allowed;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 14px;
  margin-top: 18px;
}
.cookie-modal-close {
  position: absolute;
  top: 13px;
  right: 18px;
  background: none;
  border: none;
  font-size: 1.95rem;
  color: #24304A;
  cursor: pointer;
  transition: color 0.15s;
}
.cookie-modal-close:hover {
  color: #D7263D;
}
@media (max-width: 470px) {
  .cookie-modal {
    padding: 16px 5vw 12px 5vw;
    min-width: 0;
  }
}
/* --- ACCESSIBILITY/MISC --- */
:focus-visible {
  outline: 2px dashed #7CB518;
  outline-offset: 3px;
}
[aria-current], a.active {
  font-weight: 700;
  color: #7CB518 !important;
  background: #f6fef4 !important;
}
/* Hide scrollbars for horizontal containers */
.card-container, .feature-grid, .blog-featured-posts, .service-list, .benefit-list, .process-steps, .pricing-table, .values-list, .content-grid {
  scrollbar-width: thin;
  scrollbar-color: #7CB518 #F2F2F2;
}
.card-container::-webkit-scrollbar, .feature-grid::-webkit-scrollbar { height: 5px; }
.card-container::-webkit-scrollbar-thumb, .feature-grid::-webkit-scrollbar-thumb { background: #7CB518; border-radius: 2px; }
.card-container::-webkit-scrollbar-track, .feature-grid::-webkit-scrollbar-track { background: #F2F2F2; }

/* --- END Rare Vistas Consulting Main Styles --- */
