@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&display=swap');

html, body, * {
  font-family: 'Montserrat', sans-serif !important;
}

::selection {
  background: var(--red);
  color: #fff;
}

.form-field input:hover,
.form-field select:hover,
.form-field textarea:hover {
  border-color: var(--red);
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700 !important;
  letter-spacing: -0.5px;
}

button, .btn-primary, .btn-secondary {
    font-weight: 600 !important;
}

.btn-primary:hover,
.btn-primary:focus {
    color: #fff !important;
    text-decoration: none;
}

:root {
  --red: #d62828;
  --red-dark: #b71c1c;
  --red-light: #ffe5e5;
  --bg: #ffffff;
  --bg-alt: #f7f7f7;
  --text: #222222;
  --text-muted: #666666;
  --border-soft: #e5e5e5;
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.06);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: #111;
}
::-webkit-scrollbar-thumb {
  background: #444;
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--red);
}

* {
  scrollbar-width: thin;
  scrollbar-color: #444 #11111100;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

a {
  color: var(--red-dark);
  text-decoration: none;
}

a:hover {
  color: var(--red);
  text-decoration: underline;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section {
  padding: 2rem 0;
}

@media (max-width: 1024px) {
  .section {
    padding: 1rem 0;
  }
}

.section-light {
  background: #ffffff00;
}
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 2.5rem;
}
.section-header h2 {
  margin-bottom: 0.5rem;
  font-size: 2rem;
}
.section-header p {
  margin: 0;
  color: var(--text-muted);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}
.logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 20%, #ffb3b3, var(--red));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
}
.logo-text {
  font-weight: 600;
  color: var(--text);
}

.main-nav {
  display: none;
  gap: 1.25rem;
  font-size: 0.95rem;
}
.main-nav a {
  text-decoration: none;
  color: var(--text-muted);
  position: relative;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width 0.2s ease;
}
.main-nav a:hover {
  color: var(--text);
}
.main-nav a:hover::after {
  width: 100%;
}

.nav-phone {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(214, 40, 40, 0.3);
  color: var(--red-dark);
  font-weight: 600;
  text-decoration: none;
  background: #fff0f0;
  font-size: 0.85rem;
}

.site-footer {
  background: var(--red-dark);
  color: #fff;
  padding: 3rem 0 1.5rem !important;
  margin-top: 3rem;
  border-radius: 16px !important;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1.3fr) minmax(0, 2fr);
  align-items: flex-start;
}

.footer-col h4 {
  margin-top: 0;
  margin-bottom: 0.75rem;
}

.footer-brand p {
  margin-top: 0.75rem;
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.85);
}

.footer-contact-mini {
  font-size: 0.9rem;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 0.35rem;
}

.site-footer a {
  color: #fff;
}
.site-footer a:hover {
  color: #ffe5e5;
  text-decoration: underline;
}

.footer-fb-text {
  margin-top: 0;
  margin-bottom: 0.75rem;
  color: rgba(255, 255, 255, 0.9);
}

.footer-bottom {
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding-top: 1rem;
  font-size: 0.85rem;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-logo .logo-mark {
  width: 28px;
  height: 28px;
}
.footer-logo .logo-text {
    font-size: 0.95rem;
    color: #fff;
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.4fr);
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-col {
    text-align: center;
  }

  .footer-links ul {
    text-align: center;
  }

  .footer-facebook {
    text-align: center;
  }
}

@media (max-width: 600px) {
  .footer-bottom-inner {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  display: none;    
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.lightbox.open {
  display: flex;
}

.lightbox img {
  max-width: 95vw;
  max-height: 95vh;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: none;
  background: #f0f0f0;
  padding: 0;
  margin-right: 0.25rem;
  color: #000
}

.mobile-overlay {
  position: fixed;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.mobile-nav {
  position: fixed;
  inset: 0;
  width: 100%;
  background: var(--red);
  color: #fff;
  transform: translateX(100%);
  transition: transform 0.25s ease;
  z-index: 9999;
  display: flex;
  flex-direction: column;
}
.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  font-weight: 600;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.mobile-close {
  border: none;
  background: transparent;
  color: #fff;
  font-size: 1.25rem;
}
.mobile-link {
  padding: 0.85rem 1.25rem;
  text-decoration: none;
  color: #fff;
  background: var(--red);
}
.mobile-link:hover {
  background: #be0909;
  color: #fff;
  text-decoration: none;
}
.mobile-nav-footer {
  margin-top: auto;
  padding: 1.25rem;
  background: #be0909;
}
.mobile-call-btn {
  display: block;
  text-align: center;
  padding: 0.9rem 1rem;
  border-radius: 999px;
  background: #fff;
  color: var(--red-dark);
  font-weight: 600;
  text-decoration: none;
}

.mobile-nav.open {
  transform: translateX(0);
}
.mobile-overlay.open {
  opacity: 1;
  visibility: visible;
}

.hero-section {
  position: relative;
  height: min(80vh, 580px);
  overflow: hidden;
}
.hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.hero-slide.active {
  opacity: 1;
}
.hero-overlay-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 1.5rem;
  color: #fff;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0.6)
  );
}
.hero-eyebrow {
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
  color: #ffe5e5;
}
.hero-overlay-content h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0 0 0.75rem;
}
.hero-text {
  max-width: 600px;
  margin: 0 auto 1.5rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}
.hero-dots {
  position: absolute;
  inset-inline: 0;
  bottom: 1rem;
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  z-index: 3;
}
.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 1px solid #fff;
  background: transparent;
  cursor: pointer;
}
.hero-dot.active {
  background: #fff;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  border: none;
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
}
.btn-primary {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: #fff;
  box-shadow: 0 10px 25px rgba(214, 40, 40, 0.4);
}
.btn-primary:hover {
  filter: brightness(1.05);
}
.btn-secondary {
  background: #fff;
  color: var(--red-dark);
  border: 1px solid rgba(214, 40, 40, 0.5);
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.1fr);
  gap: 2.5rem;
  align-items: flex-start;
}
.two-col p {
  color: var(--text-muted);
  line-height: 1.6;
}
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}
.highlight-card {
  background: #fff;
  border-radius: 12px;
  padding: 1rem;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
}
.highlight-card h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}
.offer-card {
  background: #fff;
  border-radius: 14px;
  padding: 1.25rem;
  border: 1px solid var(--border-soft);
}
.offer-card h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}
.offer-card p {
  margin: 0;
  color: var(--text-muted);
}

.horizontal-scroller {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
    background: #ffffff;
}

.horizontal-scroller > * {
  flex: 0 0 auto;
  scroll-snap-align: start;
    background: #ffffff;
}

.horizontal-scroller::-webkit-scrollbar {
  height: 6px;
    background: #ffffff;
}
.horizontal-scroller::-webkit-scrollbar-track {
  background: #ffffff;
}
.horizontal-scroller::-webkit-scrollbar-thumb {
  background: #999999;
  border-radius: 999px;
}
.horizontal-scroller::-webkit-scrollbar-thumb:hover {
  background: var(--red);
}

.offer-card {
  min-width: 260px;
  max-width: 320px;
}

.pricing-section h3 {
  text-align: center;
  margin-bottom: 1.5rem;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem;
}
.price-card {
  background: #fff;
  border-radius: 16px;
  padding: 1.5rem;
  border: 1px solid rgba(214, 40, 40, 0.2);
  box-shadow: var(--shadow-soft);
}
.price-card h4 {
  margin-top: 0;
  margin-bottom: 0.25rem;
}
.price {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--red-dark);
  margin: 0 0 0.75rem;
}
.price-card ul {
  padding-left: 1.1rem;
  margin: 0;
  color: var(--text-muted);
}
.price-note {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  text-align: center;
}

.gallery-section h3 {
  text-align: center;
  margin-top: 3rem;
}
.gallery-section p {
  text-align: center;
  color: var(--text-muted);
  max-width: 620px;
  margin: 0.25rem auto 1.5rem;
}

.gallery-strip {
  max-width: 1100px;
  margin: 0 auto;
}

.gallery-card {
  box-sizing: border-box;
}

.gallery-card img {
  display: block;
  width: 260px;
  height: 180px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: var(--shadow-soft);
}

@media (min-width: 1024px) {
  .gallery-card img {
    width: 260px;
    height: 180px;
  }
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.75rem;
}
.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-section h3 {
  text-align: center;
  margin-top: 3rem;
}

.gallery-section p {
  text-align: center;
  color: var(--text-muted);
  max-width: 620px;
  margin: 0.25rem auto 1.5rem;
}

.gallery-slider {
  position: relative;
  overflow: hidden;
  max-width: 1100px;
  margin: 0 auto;
}

.gallery-track {
  display: flex;
  transition: transform 0.3s ease;
}

.gallery-slide {
  min-width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding: 0.25rem;
}

.gallery-slide img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: var(--shadow-soft);
}

@media (min-width: 768px) {
  .gallery-slide {
    min-width: 50%;
    max-width: 50%;
  }
}

@media (min-width: 1024px) {
  .gallery-slide {
    min-width: 25%;
    max-width: 25%;
  }
}

.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: rgba(255, 255, 255, 0.94);
  width: 32px;
  height: 32px;
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  z-index: 5;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 1.5rem;
  background: #fff;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.form-field-full {
  grid-column: 1 / -1;
}
.form-field label {
  font-size: 0.9rem;
}
.form-field input,
.form-field select,
.form-field textarea {
  border-radius: 999px;
  border: 1px solid var(--border-soft);
  padding: 0.65rem 0.9rem;
  font: inherit;
  color: #000; 
  background: #fff;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none !important;
  border-color: var(--red) !important;
  box-shadow: 0 0 0 2px rgba(214,40,40,0.25) !important;
  color: #0f0f0f !important;
}

.form-field textarea {
  border-radius: 12px;
  resize: vertical;
}
.form-consent {
  font-size: 0.85rem;
  color: var(--text-muted);
}
.form-consent input {
  margin-right: 0.4rem;
}
.form-actions {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: flex-start;
}
.form-note {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.holdstart-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.25rem;
}
.hold-card {
  background: #fff;
  border-radius: 14px;
  padding: 1.25rem;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-soft);
}
.hold-card h3 {
  margin-top: 0;
}
.hold-card p {
  margin: 0.2rem 0;
  color: var(--text-muted);
}
.hold-date {
  font-weight: 600;
  color: var(--red-dark);
}
.holdstart-footer {
  margin-top: 1.5rem;
  text-align: center;
  color: var(--text-muted);
}

.reviews-section {
  position: relative;
  background: #ffffff00;
}
.reviews-slider {
  position: relative;
  overflow: hidden;
  background: #ffffff00;
}
.reviews-track {
  display: flex;
  transition: transform 0.3s ease;
  background: #ffffff00;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 0.5rem;
}
.review-card {
  min-width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding: 1.5rem;
  margin: 0.25rem;
  border-radius: 16px;
  background: #0a0a0a0a;
  background: #ffffff00;
  flex: 0 0 280px;
  scroll-snap-align: start;
}
.review-text {
  font-style: italic;
  margin-bottom: 0.75rem;
}
.review-name {
  font-weight: 600;
}
.review-role {
  font-size: 0.85rem;
  color: var(--text-muted);
}
.reviews-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: var(--red); 
  color: #fff;            
  width: 32px;
  height: 32px;
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
  cursor: pointer;
}

.reviews-arrow:hover {
  background: var(--red-dark);  
}

.reviews-arrow.left {
  left: -45px; 
}
.reviews-arrow.right {
  right: -45px;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  gap: 2rem;
}
.contact-info p {
  color: var(--text-muted);
}
.contact-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}
.contact-list li {
  margin-bottom: 0.25rem;
}
.contact-form-wrap {
  background: #fff;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: var(--shadow-soft);
}
.contact-form .form-field {
  margin-bottom: 0.75rem;
}

.back-to-top {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: none;
  background: var(--red);
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 70;
}
.back-to-top.show {
  display: flex;
}

.cookie-banner {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 1rem;
  max-width: 960px;
  width: calc(100% - 2rem);
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
  padding: 0.9rem 1rem;
  display: flex;
  gap: 1rem;
  align-items: center;
  font-size: 0.9rem;
  z-index: 80;
}
.cookie-text {
  flex: 1;
}
.cookie-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.cookie-link {
  color: var(--red-dark);
  text-decoration: none;
  font-weight: 500;
}
.cookie-link:hover {
  text-decoration: underline;
}
.btn-cookie {
  border-radius: 999px;
  border: none;
  padding: 0.5rem 1.25rem;
  background: var(--red);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.btn-cookie-secondary {
  border-radius: 999px;
  border: 1px solid rgba(214, 40, 40, 0.4);
  padding: 0.5rem 1.1rem;
  background: #fff;
  color: var(--red-dark);
  font-weight: 600;
  cursor: pointer;
}

.btn-cookie-ghost {
  border-radius: 999px;
  border: 1px solid #ddd;
  padding: 0.5rem 1.1rem;
  background: #fff;
  color: #444;
  font-weight: 500;
  cursor: pointer;
}

.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 90;
}

.cookie-modal {
  max-width: 520px;
  width: calc(100% - 2rem);
  background: #fff;
  border-radius: 18px;
  padding: 1.5rem 1.75rem;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
}
.cookie-modal h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}
.cookie-modal-intro {
  margin-top: 0;
  color: var(--text-muted);
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
  border-top: 1px solid var(--border-soft);
}
.cookie-cat-text p {
  margin: 0.25rem 0 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.cookie-switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
}
.cookie-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background-color: #ccc;
  border-radius: 999px;
  transition: 0.2s;
}
.cookie-slider::before {
  content: "";
  position: absolute;
  height: 18px;
  width: 18px;
  left: 3px;
  top: 3px;
  background-color: white;
  border-radius: 50%;
  transition: 0.2s;
}
.cookie-switch input:checked + .cookie-slider {
  background-color: var(--red);
}
.cookie-switch input:checked + .cookie-slider::before {
  transform: translateX(18px);
}

.cookie-modal-actions {
  margin-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: flex-end;
}

@media (max-width: 600px) {
  .cookie-modal {
    padding: 1.25rem 1.25rem;
  }
}

@media (min-width: 900px) {
  .main-nav {
    display: flex;
  }
  .nav-toggle {
    display: none;
  }
    .mobile-nav,
  .mobile-overlay {
    display: none !important;
    transform: none !important;
  }
}

@media (min-width: 768px) {
  .reviews-track {
    transform: translateX(0);
  }
  .review-card {
    min-width: 50%;
    max-width: 50%;
  }
}

@media (max-width: 899px) {
  .header-inner {
    gap: 0.5rem;
  }
  .nav-phone {
    font-size: 0.8rem;
  }
  .review-card {
  text-align:center !important;
}

.contact-grid {
  text-align:center !important;
}

.price-card {
    text-align:center !important;
}

.highlight-card {
    text-align:center !important;
}

.two-col {
      text-align:center !important;
}

.pricing-section ul {
  list-style: none !important;
  padding-left: 0 !important;
  margin-left: 0 !important;
}

}

@media (max-width: 768px) {
  .two-col,
  .contact-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-grid {
    padding: 1.25rem;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
  }

  @media (max-width: 768px) {
  .hero-overlay-content {
    padding-bottom: 1.5rem; 
  }
  .hero-dots {
    bottom: 0.75rem; 
  }
}

@media (max-width: 899px) {
  .nav-toggle {
    display: inline-flex !important;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    width: 36px;
    height: 36px;
    border-radius: 999px;
    border: none;
    background: var(--red); 
    padding: 0;
    margin-right: 0.25rem;
    position: relative;
  }

.nav-toggle span {
  display: block;
  width: 22px;   
  height: 2px;
  background: #fff;  
  border-radius: 999px;
  margin: 0 6px;
}

  .mobile-nav {
    z-index: 10000;
  }
}

@media (min-width: 900px) {
  .nav-toggle {
    display: none !important;
  }
}


}
