[style*="font-size: 20px"], 
[style*="font-size:20px"] {
    line-height: 1.3 !important;
    display: block !important;
    padding-bottom: 0px !important;
}
[style*="font-size: 48px"], 
[style*="font-size:48px"] {
    line-height: 1.15 !important;
    display: block !important;
    margin: 0px !important;
    padding-bottom: 48px !important;
}
[style*="font-size: 18px"], 
[style*="font-size:18px"] {
    line-height: 1.4 !important;
    display: block !important;
    margin: 0px !important;
}

/* VERSION: nsa-vcfo-v7.1-global-tables-css */
:root {
  --nsa-primary: #6C7368; /* Smoke Green */
  --nsa-secondary: #F2F1F0; /* Off-White */
  --nsa-highlight: #F2E3D0; /* The added border highlight */
  --text-light: #FFFFFF;
  --text-dark: #000000;
  --font-head: 'Georgia', serif;
  --font-body: 'Lato', sans-serif;
}

.nsa-table-wrapper {
  width: 100%;
  padding: 20px 0;
  background-color: var(--nsa-secondary);
  font-family: var(--font-body);
  color: var(--text-dark);
}

/* Responsive CSS Grid definitions */
.nsa-grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; }
.nsa-grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }
.nsa-grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }

/* Card and Content Styling */
.nsa-card {
  background: var(--nsa-secondary);
  /* 1px thin border on all sides using the new highlight color */
  border: 1px solid var(--nsa-highlight);
  /* 5px thicker highlight border forced to the right */
  border-right: 5px solid var(--nsa-highlight);
  display: flex;
  flex-direction: column;
}

.nsa-card-header {
  background-color: var(--nsa-primary);
  color: var(--text-light);
  padding: 18px 25px;
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nsa-card-body {
  padding: 25px;
}

.nsa-list { list-style: none; padding: 0; margin: 0; }
.nsa-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 12px;
  font-size: 0.95rem;
  line-height: 1.5;
}
.nsa-list li::before {
  content: '■'; 
  position: absolute;
  left: 0;
  color: var(--nsa-primary);
  font-size: 0.75rem;
  top: 4px;
}

.nsa-kicker {
  font-size: 0.85rem;
  font-family: var(--font-body);
  font-style: italic;
  font-weight: normal;
  color: var(--nsa-secondary);
}

/* Custom 5-Column Grid for Team Rows (13" Breakpoint) */
.nsa-grid-5 { 
  display: grid; 
  grid-template-columns: repeat(5, 1fr); /* Forces exactly 5 columns on desktop */
  gap: 15px; 
}

@media (max-width: 1024px) {
  .nsa-grid-5 { 
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* Wraps gracefully on tablets/phones */
  }
}

/* =========================================
   4. SERVICES TABS & ACCORDION (v9.3)
   ========================================= */
.nsa-tabs-container { 
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); 
  gap: 15px; 
  margin-bottom: 30px; 
}

.nsa-tab-btn {
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 1;
  overflow: hidden;
  border: 2px solid var(--nsa-highlight);
  color: #FFFFFF !important; 
  font-family: var(--font-head); 
  font-size: 1.25rem; 
  font-weight: bold;
  padding: 20px; 
  text-align: center; 
  cursor: pointer; 
  transition: all 0.3s ease;
  display: flex; 
  align-items: center; 
  justify-content: center; 
  min-height: 160px; /* Big button height */
  text-decoration: none;
  text-shadow: 2px 2px 5px rgba(0,0,0,0.8); /* Ensures text readability over photos */
}

/* Tinted overlay to ensure text pops against the image */
.nsa-tab-btn::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: rgba(108, 115, 104, 0.4); /* Light smoke green tint */
  z-index: -1;
  transition: all 0.3s ease;
}

/* Darkens the tint when hovering or active */
.nsa-tab-btn:hover::before, .nsa-tab-btn.active::before {
  background-color: rgba(108, 115, 104, 0.85); 
}

.nsa-tab-btn:hover, .nsa-tab-btn.active {
  border-color: var(--nsa-primary);
}

.nsa-tab-content { display: none; animation: fadeIn 0.5s ease-in-out; }
.nsa-tab-content.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

.nsa-read-more-wrapper { text-align: center; margin: 30px 0 50px; }
.nsa-read-more-btn {
  background-color: transparent; 
  border: 2px solid var(--nsa-primary); 
  color: var(--nsa-primary);
  padding: 12px 35px; 
  font-family: var(--font-body); 
  font-weight: bold; 
  font-size: 1rem;
  cursor: pointer; 
  transition: all 0.3s ease; 
  text-transform: uppercase; 
  letter-spacing: 1px;
}
.nsa-read-more-btn:hover { background-color: var(--nsa-primary); color: #FFFFFF; }

.nsa-read-more-text { 
  display: none; 
  text-align: left; 
  background-color: #FFFFFF; 
  padding: 30px; 
  border: 1px solid var(--nsa-highlight); 
  border-left: 5px solid var(--nsa-primary);
  margin-top: 20px; 
  font-family: var(--font-body); 
  line-height: 1.7; 
  color: var(--text-dark); 
}
.nsa-read-more-text.expanded { display: block; animation: fadeIn 0.4s ease-in-out; }