/* ==========================================================================
   VW ACCOUNTING PRO - STUNNING ANIMATED & RESPONSIVE THEME STYLESHEET
   Design Inspiration: VW Accounting Pro (VW Themes)
   Colors: Navy (#002857), Sky Blue (#3890cb), Purple Accent (#8c129b / #841192 - #9a2ea7)
   Fonts: 'Ubuntu' (Headings), 'Open Sans' (Body)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,600;0,700;1,400&family=Ubuntu:wght@400;500;700&display=swap');

:root {
  --vw-navy: #002857;
  --vw-navy-dark: #001a3a;
  --vw-purple: #8c129b;
  --vw-purple-gradient: linear-gradient(135deg, #841192 0%, #9a2ea7 100%);
  --vw-sky-blue: #3890cb;
  --vw-text-dark: #111827;
  --vw-text-muted: #4b5563;
  --vw-bg-light: #f8fafc;
  --vw-white: #ffffff;
  --vw-font-heading: 'Ubuntu', sans-serif;
  --vw-font-body: 'Open Sans', sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--vw-font-body);
  font-size: 15px;
  line-height: 1.6;
  color: var(--vw-text-muted);
  background-color: #ffffff;
  overflow-x: hidden;
}

a {
  color: var(--vw-navy);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

a:hover {
  color: var(--vw-purple);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--vw-font-heading);
  color: var(--vw-text-dark);
  font-weight: 700;
  line-height: 1.2;
}

/* --- FULL-WIDTH CONTAINER --- */
.container {
  width: 96%;
  max-width: 1540px;
  margin: 0 auto;
  padding: 0 15px;
}

/* --- KEYFRAME ANIMATIONS --- */
@keyframes floatAnim {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0px); }
}

@keyframes pulseGlow {
  0% { box-shadow: 0 0 0 0 rgba(140, 18, 155, 0.4); }
  70% { box-shadow: 0 0 0 15px rgba(140, 18, 155, 0); }
  100% { box-shadow: 0 0 0 0 rgba(140, 18, 155, 0); }
}

/* --- BUTTONS --- */
.vw-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 26px;
  font-family: var(--vw-font-heading);
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  gap: 8px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.vw-btn-purple {
  background: var(--vw-purple);
  color: var(--vw-white) !important;
}

.vw-btn-purple:hover {
  background: var(--vw-navy);
  color: var(--vw-white) !important;
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 20px rgba(0, 40, 87, 0.25);
}

.vw-btn-gradient {
  background: var(--vw-purple-gradient);
  color: var(--vw-white) !important;
  box-shadow: 0 4px 15px rgba(140, 18, 155, 0.3);
}

.vw-btn-gradient:hover {
  background: var(--vw-navy);
  color: var(--vw-white) !important;
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 10px 25px rgba(0, 40, 87, 0.35);
}

.vw-btn-outline {
  background: transparent;
  color: var(--vw-white) !important;
  border: 2px solid var(--vw-white);
}

.vw-btn-outline:hover {
  background: var(--vw-white);
  color: var(--vw-navy) !important;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

/* --- TOP CONTACT BAR --- */
.vw-top-bar {
  background-color: var(--vw-purple);
  color: var(--vw-white);
  padding: 8px 0;
  font-size: 13px;
}

.vw-top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.vw-top-contact {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.vw-top-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--vw-white);
  font-weight: 500;
}

.vw-top-social {
  display: flex;
  align-items: center;
  gap: 10px;
}

.vw-top-social a {
  color: #ffffff !important;
  font-size: 14px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.vw-top-social a:hover {
  background-color: #ffffff;
  color: var(--vw-purple) !important;
  transform: translateY(-2px) scale(1.08);
}

/* --- MAIN HEADER --- */
.vw-main-header {
  background-color: var(--vw-white);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.vw-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
}

/* LOGO ON EXTREME LEFT WITH SINGLE-LINE TITLE ENFORCEMENT */
.vw-logo-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: 0;
  padding-left: 0;
}

.vw-logo-icon-badge {
  width: 52px;
  height: 52px;
  background: var(--vw-purple-gradient);
  color: var(--vw-white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 6px 16px rgba(140, 18, 155, 0.3);
  flex-shrink: 0;
  animation: pulseGlow 3s infinite;
}

.vw-logo-brand img {
  max-height: 55px;
  width: auto;
  object-fit: contain;
}

.vw-brand-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--vw-navy);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.1;
  display: block;
  white-space: nowrap !important;
  overflow: hidden;
  text-overflow: ellipsis;
}

.vw-brand-sub {
  font-size: 12px;
  color: var(--vw-purple);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  display: block;
  margin-top: 3px;
  white-space: nowrap !important;
}

/* NAVIGATION MENU */
.vw-nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 20px;
}

.vw-nav-menu > li {
  position: relative;
}

.vw-nav-menu > li > a {
  font-family: var(--vw-font-heading);
  font-size: 14px;
  font-weight: 500;
  color: var(--vw-text-dark);
  text-transform: uppercase;
  padding: 10px 0;
  position: relative;
}

.vw-nav-menu > li > a:hover,
.vw-nav-menu > li.active > a {
  color: var(--vw-purple);
}

.vw-nav-menu > li > a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--vw-purple-gradient);
  border-radius: 2px;
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.vw-nav-menu > li:hover > a::after,
.vw-nav-menu > li.active > a::after {
  width: 100%;
}

/* DROPDOWN MENU */
.vw-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--vw-white);
  min-width: 230px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
  border-radius: 8px;
  padding: 10px 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 100;
  border: 1px solid #f1f5f9;
}

.vw-nav-menu > li:hover .vw-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.vw-dropdown li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 22px;
  font-size: 13.5px;
  color: var(--vw-text-dark);
  font-weight: 500;
  transition: all 0.25s ease;
}

.vw-dropdown li a:hover {
  background-color: var(--vw-bg-light);
  color: var(--vw-purple);
  padding-left: 26px;
}

.vw-mobile-toggle {
  display: none;
  background: var(--vw-bg-light);
  border: 1px solid #cbd5e1;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  font-size: 20px;
  color: var(--vw-navy);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

/* --- PAGE HEADER BANNER --- */
.vw-page-header {
  background: linear-gradient(135deg, var(--vw-navy) 0%, var(--vw-purple) 100%);
  color: #ffffff;
  padding: 45px 0;
  text-align: center;
}

.vw-page-title {
  font-size: 36px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.vw-breadcrumb {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.85);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.vw-breadcrumb a {
  color: #ffffff;
  text-decoration: underline;
}

/* --- HERO SLIDER --- */
.vw-hero-slider {
  position: relative;
  width: 100%;
  min-height: 520px;
  background-color: #0b132b;
  overflow: hidden;
}

.vw-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease-in-out;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

.vw-slide.active {
  opacity: 1;
  visibility: visible;
}

.vw-slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(0, 40, 87, 0.86) 0%, rgba(0, 0, 0, 0.5) 100%);
}

.vw-slide-content {
  position: relative;
  z-index: 10;
  max-width: 820px;
  color: var(--vw-white);
  padding: 50px 0;
}

.vw-slide-title {
  font-size: 44px;
  font-weight: 700;
  color: var(--vw-white);
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.2;
}

.vw-slide-text {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 32px;
  line-height: 1.6;
}

.vw-slide-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.vw-slider-arrows {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  z-index: 20;
  padding: 0 20px;
  pointer-events: none;
}

.vw-slider-arrow {
  width: 46px;
  height: 46px;
  background: rgba(0, 0, 0, 0.45);
  color: var(--vw-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: auto;
  transition: all 0.3s ease;
}

.vw-slider-dots {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 20;
}

.vw-slider-dot {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.vw-slider-dot.active {
  background: var(--vw-purple);
  width: 30px;
  border-radius: 10px;
}

/* --- MARQUEE TICKER --- */
.vw-marquee-bar {
  background: #f1f5f9;
  border-bottom: 1px solid #e2e8f0;
  padding: 10px 0;
}

.vw-marquee-inner {
  display: flex;
  align-items: center;
  gap: 15px;
}

.vw-marquee-label {
  background: var(--vw-purple);
  color: var(--vw-white);
  padding: 5px 14px;
  font-family: var(--vw-font-heading);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 4px;
  white-space: nowrap;
  animation: pulseGlow 2.5s infinite;
}

.vw-marquee-content {
  flex: 1;
  overflow: hidden;
  white-space: nowrap;
}

.vw-marquee-text {
  display: inline-block;
  font-size: 14px;
  color: var(--vw-text-dark);
  font-weight: 500;
}

/* --- SECTION COMMON --- */
.vw-section {
  padding: 70px 0;
}

.vw-section-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 50px auto;
  position: relative;
}

.vw-section-badge {
  font-family: var(--vw-font-heading);
  font-size: 13px;
  font-weight: 700;
  color: var(--vw-purple);
  text-transform: uppercase;
  letter-spacing: 2.5px;
  display: inline-block;
  margin-bottom: 10px;
  background: rgba(140, 18, 155, 0.08);
  padding: 4px 14px;
  border-radius: 20px;
}

.vw-section-title {
  font-size: 34px;
  font-weight: 700;
  color: var(--vw-text-dark);
  text-transform: uppercase;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.vw-section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--vw-purple-gradient);
  margin: 12px auto 0 auto;
  border-radius: 2px;
}

.vw-section-desc {
  font-size: 15.5px;
  color: var(--vw-text-muted);
}

/* --- OUR SERVICES SECTION --- */
.vw-services-section {
  background: linear-gradient(180deg, #f8fafc 0%, #edf2f7 100%);
  position: relative;
}

.vw-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.vw-service-card {
  background: var(--vw-white);
  border-radius: 14px;
  padding: 38px 26px 30px 26px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid #e2e8f0;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.vw-service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--vw-purple-gradient);
  opacity: 0.3;
  transition: all 0.35s ease;
}

.vw-service-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 18px 40px rgba(140, 18, 155, 0.15);
  border-color: rgba(140, 18, 155, 0.3);
}

.vw-service-card:hover::before {
  opacity: 1;
  height: 5px;
}

.vw-service-icon {
  width: 76px;
  height: 76px;
  background: var(--vw-navy);
  color: var(--vw-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  margin-bottom: 22px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 6px 16px rgba(0, 40, 87, 0.2);
  position: relative;
}

.vw-service-icon::after {
  content: '';
  position: absolute;
  top: -6px;
  left: -6px;
  right: -6px;
  bottom: -6px;
  border-radius: 50%;
  border: 2px dashed var(--vw-purple);
  opacity: 0;
  transition: all 0.4s ease;
}

.vw-service-card:hover .vw-service-icon {
  background: var(--vw-purple-gradient);
  transform: scale(1.12) rotate(8deg);
  box-shadow: 0 10px 25px rgba(140, 18, 155, 0.35);
}

.vw-service-card:hover .vw-service-icon::after {
  opacity: 1;
  transform: rotate(180deg);
}

.vw-service-title {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--vw-text-dark);
}

.vw-service-card:hover .vw-service-title {
  color: var(--vw-purple);
}

.vw-service-text {
  font-size: 14px;
  color: var(--vw-text-muted);
  margin-bottom: 22px;
  flex-grow: 1;
  line-height: 1.6;
}

/* --- ABOUT SECTION --- */
.vw-about-section {
  background: #ffffff;
}

.vw-about-container {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 50px;
  align-items: center;
}

.vw-about-avatar {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  object-fit: cover;
  border: 6px solid var(--vw-white);
  box-shadow: 0 12px 35px rgba(0,0,0,0.15);
  margin: 0 auto;
  display: block;
  animation: floatAnim 4s ease-in-out infinite;
}

.vw-about-content h2 {
  font-size: 34px;
  margin-bottom: 20px;
  color: var(--vw-purple);
}

/* --- COUNTER STATS SECTION --- */
.vw-stats-section {
  background: var(--vw-purple-gradient);
  color: var(--vw-white);
  padding: 60px 0;
}

.vw-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.vw-stat-item {
  padding: 20px 15px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.35s ease;
}

.vw-stat-item:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.18);
}

.vw-stat-number {
  font-family: var(--vw-font-heading);
  font-size: 44px;
  font-weight: 700;
  color: var(--vw-white);
  margin-bottom: 5px;
}

.vw-stat-label {
  font-size: 13.5px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
}

/* --- FORM STYLES FOR ENQUIRY & CONTACT --- */
.vw-form-group {
  margin-bottom: 20px;
}

.vw-form-group label {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--vw-text-dark);
  margin-bottom: 6px;
}

.vw-form-control {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--vw-font-body);
  font-size: 14px;
  color: var(--vw-text-dark);
  background-color: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  transition: all 0.3s ease;
  outline: none;
}

.vw-form-control:focus {
  border-color: var(--vw-purple);
  box-shadow: 0 0 0 3px rgba(140, 18, 155, 0.15);
}

/* --- SIDE-BY-SIDE NEWS & NOTIFICATIONS CONTAINER --- */
.vw-news-notif-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 30px;
}

.vw-card-box {
  background: var(--vw-white);
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 28px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.03);
}

.vw-card-header {
  font-size: 18px;
  font-weight: 700;
  color: var(--vw-purple);
  border-bottom: 2px solid var(--vw-bg-light);
  padding-bottom: 12px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* --- CTA BANNER --- */
.vw-cta-section {
  background: var(--vw-navy);
  color: var(--vw-white);
  padding: 65px 0;
  text-align: center;
}

.vw-cta-content h2 {
  color: var(--vw-white);
  font-size: 34px;
  margin-bottom: 15px;
}

.vw-cta-content p {
  color: rgba(255,255,255,0.88);
  max-width: 720px;
  margin: 0 auto 30px auto;
  font-size: 16px;
}

/* --- FOOTER --- */
.vw-site-footer {
  background-color: var(--vw-purple);
  color: var(--vw-white);
  padding-top: 60px;
}

.vw-footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px;
  padding-bottom: 50px;
}

.vw-footer-widget h3 {
  color: var(--vw-white);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.vw-footer-widget h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--vw-white);
}

.vw-footer-links {
  list-style: none;
}

.vw-footer-links li {
  margin-bottom: 10px;
}

.vw-footer-links li a {
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
}

.vw-copyright-bar {
  background-color: #000000;
  color: var(--vw-white);
  padding: 18px 0;
  text-align: center;
  font-size: 13px;
}

/* --- SUBPAGE LAYOUT GRID --- */
.vw-subpage-layout {
  padding: 55px 0;
}

.vw-subpage-grid {
  display: grid;
  grid-template-columns: 2.8fr 1.2fr;
  gap: 35px;
}

.vw-main-content {
  background: var(--vw-white);
}

/* TABLE SCROLL WRAPPER FOR MOBILE */
.table-responsive, .vw-table-wrap {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 20px;
}

/* ==========================================================================
   MOBILE & TABLET MEDIA QUERIES
   ========================================================================== */

@media (max-width: 1200px) {
  .vw-services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
  }
}

@media (max-width: 992px) {
  .vw-top-bar {
    display: none;
  }
  .vw-brand-title {
    font-size: clamp(13px, 3.8vw, 18px) !important;
    white-space: nowrap !important;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .vw-brand-sub {
    font-size: clamp(9.5px, 2.5vw, 11px) !important;
    white-space: nowrap !important;
  }
  .vw-services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .vw-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  .vw-footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  .vw-about-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .vw-subpage-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .vw-news-notif-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .vw-nav-menu {
    display: none;
  }
  .vw-mobile-toggle {
    display: flex;
  }
}

@media (max-width: 600px) {
  .container {
    width: 95%;
    padding: 0 10px;
  }
  .vw-logo-brand {
    gap: 8px;
    max-width: calc(100% - 50px);
  }
  .vw-brand-title {
    font-size: clamp(11px, 3.4vw, 15px) !important;
    white-space: nowrap !important;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    line-height: 1.1;
  }
  .vw-brand-sub {
    font-size: 9.5px !important;
    white-space: nowrap !important;
    display: block;
  }
  .vw-logo-icon-badge {
    width: 38px;
    height: 38px;
    font-size: 17px;
  }
  .vw-logo-brand img {
    max-height: 40px;
  }
  .vw-services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .vw-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .vw-footer-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .vw-hero-slider {
    min-height: 380px;
  }
  .vw-slide-title {
    font-size: 24px;
  }
  .vw-section {
    padding: 45px 0;
  }
  .vw-section-title {
    font-size: 24px;
  }
}
