/* RESET & BASE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-color: #f0f4f8;
    --text-main: #334155;
    --text-light: #64748b;
    --heading-color: #0f172a;
    --primary-color: #047857;
    --primary-hover: #059669;
    --border-color: #e2e8f0;
    --white: #ffffff;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1);
    --footer-bg: #0f172a;
    --footer-bottom: #020617;
    
    /* Card Colors */
    --c-green-bg: #ecfdf5; --c-green-border: #a7f3d0; --c-green-text: #065f46;
    --c-yellow-bg: #fffbeb; --c-yellow-border: #fde68a; --c-yellow-text: #92400e;
    --c-red-bg: #fef2f2; --c-red-border: #fecaca; --c-red-text: #991b1b;
    --c-blue-bg: #eff6ff; --c-blue-border: #bfdbfe; --c-blue-text: #1e40af;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

/* HEADER */
header, .main-header {
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    z-index: 100;
    position: sticky;
    top: 0;
}

.header-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    font-size: 24px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-weight: 800;
    font-size: 1.1rem;
    color: #b91c1c; /* A deep red for branding */
}

.tagline {
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 500;
}

.main-nav, .nav-links {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
}

.main-nav::-webkit-scrollbar, .nav-links::-webkit-scrollbar {
    display: none; /* Chrome, Safari and Opera */
}

.main-nav a, .nav-links a {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-main);
    transition: color 0.2s;
}

.main-nav a:hover, .nav-links a:hover {
    color: var(--primary-color);
}

/* MAIN WRAPPER */
.content-wrapper {
    max-width: 760px; /* Slimmer, readable width like the image */
    margin: 30px auto;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.main-container {
    padding: 40px 40px;
}

/* TYPOGRAPHY IN MAIN */
.title-section {
    text-align: center;
    margin-bottom: 30px;
}

.title-section h1 {
    color: var(--heading-color);
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 10px;
    line-height: 1.3;
}

.title-section p {
    font-size: 0.95rem;
    color: var(--text-light);
}

h2 {
    font-size: 1.25rem;
    color: var(--heading-color);
    margin: 25px 0 15px;
    font-weight: 700;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 8px;
    display: inline-block;
}

h3 {
    font-size: 1.1rem;
    color: var(--heading-color);
    margin: 20px 0 10px;
    font-weight: 700;
}

.info-section {
    margin: 35px 0;
}

.info-section p {
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.info-section ul, .info-section ol {
    margin-left: 20px;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.info-section li {
    margin-bottom: 8px;
}

.highlight-box {
    background-color: var(--c-yellow-bg);
    border-left: 4px solid var(--c-yellow-text);
    padding: 15px;
    margin: 20px 0;
    border-radius: 0 4px 4px 0;
    font-size: 0.95rem;
    color: var(--heading-color);
}

/* FORM BOX */
.form-box {
    background-color: #ffffff;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 6px;
}

.form-group input, .form-group select {
    padding: 10px 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 0.95rem;
    font-family: inherit;
    color: var(--heading-color);
    transition: border-color 0.2s;
}

.form-group input:focus, .form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.btn-primary {
    width: 100%;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 4px;
    padding: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 10px;
    transition: background-color 0.2s;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
}

.alert-note {
    margin-top: 20px;
    background-color: var(--c-green-bg);
    border-left: 4px solid var(--primary-color);
    padding: 12px 15px;
    font-size: 0.85rem;
    color: var(--c-green-text);
    border-radius: 0 4px 4px 0;
}

/* BANNER IMAGE REPLACEMENT */
.banner-image {
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    border-radius: 8px;
    padding: 30px;
    color: var(--white);
    margin: 30px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.banner-content h2 {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 5px;
    font-weight: 800;
    border: none;
}

.main-container .banner-content p {
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 0.9rem;
    margin-bottom: 20px;
    color: #ffffff !important;
}

.banner-badges {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.banner-badges span {
    background-color: rgba(255,255,255,0.2);
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* DATA TABLE */
.table-wrap {
    overflow-x: auto;
    margin: 20px 0;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

table {
    width: 100%;
    border-collapse: collapse;
}

th, td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.9rem;
}

th {
    background-color: #f8fafc;
    font-weight: 700;
    color: var(--heading-color);
}

tr:last-child td {
    border-bottom: none;
}

.badge {
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
}
.badge-green { background: var(--c-green-bg); color: var(--c-green-text); }
.badge-gold { background: var(--c-yellow-bg); color: var(--c-yellow-text); }

/* STAT BOXES */
.stat-boxes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 20px 0;
}

.stat-box {
    background: #f8fafc;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.stat-box:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.stat-box .num {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color);
}

.stat-box .desc {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-light);
}

/* GRIDS (ELIGIBILITY, DOCUMENTS, BENEFITS) */
.grid-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 20px 0;
}

.grid-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 20px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.grid-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.grid-card-icon {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.grid-card h3 {
    margin: 0 0 10px 0;
    font-size: 1rem;
    border: none;
    padding: 0;
}

.grid-card ul {
    margin: 0 0 0 15px;
    font-size: 0.85rem;
}

.grid-card p {
    font-size: 0.85rem;
    margin: 0;
}

/* STEPS LIST */
.steps-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin: 20px 0;
}

.step {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
}

.step:last-child {
    border-bottom: none;
}

.step-num {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: var(--c-green-bg);
    color: var(--c-green-text);
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    border: 2px solid var(--primary-color);
}

.step-body h3 {
    margin: 0 0 5px 0;
    border: none;
    padding: 0;
    font-size: 1.05rem;
}

.step-body p {
    margin: 0 0 8px 0;
    font-size: 0.9rem;
}

.step-note {
    font-size: 0.8rem;
    background: var(--c-yellow-bg);
    color: var(--c-yellow-text);
    padding: 4px 8px;
    border-radius: 4px;
    display: inline-block;
}

/* MOCKUP SECTION */
.mockup-section {
    background-color: #f8fafc;
    border: 1px dashed #cbd5e1;
    border-radius: 8px;
    padding: 25px;
    margin: 30px 0;
}

.status-dashboard-mock {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 20px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 15px;
}

.status-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.status-badge {
    font-weight: 700;
    font-size: 0.9rem;
    padding: 4px 10px;
    border-radius: 4px;
}
.status-badge.success { background: var(--c-green-bg); color: var(--c-green-text); }

.btn-outline {
    border: 1px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
}

.passenger-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.passenger-slot {
    border: 2px solid;
    border-radius: 6px;
    padding: 15px 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.passenger-slot.success { border-color: var(--primary-color); background: var(--c-green-bg); }
.passenger-slot.warning { border-color: #f59e0b; background: var(--c-yellow-bg); }
.passenger-slot.pending { border-color: #94a3b8; background: #f1f5f9; color: #64748b; }

.slot-num { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; margin-bottom: 5px; }
.slot-status { font-size: 0.85rem; font-weight: 800; margin-bottom: 5px; }
.slot-date { font-size: 0.75rem; }

.passenger-slot.success .slot-status { color: var(--primary-color); }
.passenger-slot.warning .slot-status { color: #d97706; }

.mockup-caption {
    font-size: 0.85rem;
    color: var(--text-light);
    text-align: center;
    font-style: italic;
}

/* FAQ ACCORDION */
.faq-section {
    margin: 40px 0 20px;
}

.faq-accordion {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
}
.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 15px 20px;
    background: var(--white);
    border: none;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--heading-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.2s;
}

.faq-question:hover {
    background: #f8fafc;
}

.faq-icon {
    font-size: 1.2rem;
    color: var(--text-light);
    transition: transform 0.3s;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: #f8fafc;
}

.faq-answer p {
    padding: 15px 20px;
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-main);
    border-top: 1px solid var(--border-color);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}
.faq-item.active .faq-answer {
    max-height: 500px; /* arbitrary max-height for animation */
}

/* BOTTOM LINKS */
.bottom-links {
    max-width: 1000px;
    margin: 0 auto 40px;
    padding: 0 20px;
}

.bottom-links-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.action-link {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s, box-shadow 0.2s;
}

.action-link:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.al-icon {
    background: #f1f5f9;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 1.2rem;
}

.al-text strong {
    display: block;
    font-size: 0.9rem;
    color: var(--heading-color);
    margin-bottom: 2px;
}

.al-text span {
    display: block;
    font-size: 0.75rem;
    color: var(--text-light);
}

/* FOOTER */
.main-footer {
    background: var(--footer-bg);
    color: var(--white);
}

.footer-container {
    max-width: 1000px;
    margin: 0 auto;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 20px;
}

.footer-brand .brand-name {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 5px;
    display: block;
}

.footer-brand p {
    color: #94a3b8;
    font-size: 0.85rem;
}

.footer-newsletter {
    display: flex;
}

.footer-newsletter input {
    padding: 10px 15px;
    border: none;
    border-radius: 4px 0 0 4px;
    font-family: inherit;
    width: 250px;
}

.footer-newsletter input:focus {
    outline: none;
}

.footer-newsletter button {
    background: #f59e0b; /* Orange button like in the image */
    color: var(--white);
    border: none;
    padding: 10px 20px;
    border-radius: 0 4px 4px 0;
    font-weight: 600;
    cursor: pointer;
}

.footer-bottom {
    background: var(--footer-bottom);
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: #64748b;
}

.footer-links {
    display: flex;
    gap: 15px;
}

.footer-links a:hover {
    color: var(--white);
}

/* RESPONSIVE */
@media (max-width: 800px) {
    .form-row { flex-direction: column; gap: 15px; }
    .bottom-links-container { grid-template-columns: repeat(2, 1fr); }
    .footer-top { flex-direction: column; gap: 20px; text-align: center; }
}

@media (max-width: 600px) {
    .main-container { padding: 25px 20px; }
    .grid-container, .stat-boxes, .passenger-grid { grid-template-columns: 1fr; }
    .bottom-links-container { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
    .main-nav { display: none; } /* Simplified mobile header */
}

/* STATUS TRACKER */
.status-tracker-container {
    background: #fff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
}

.status-tracker-header {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.status-tracker-header h3 {
    margin: 0 0 5px 0;
    font-size: 1.1rem;
    color: var(--heading-color);
    border: none;
    padding: 0;
}

.status-tracker-header p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-light);
}

.tracker-timeline {
    position: relative;
    padding-left: 30px;
}

.tracker-timeline::before {
    content: '';
    position: absolute;
    top: 5px;
    bottom: 0;
    left: 9px;
    width: 2px;
    background: #e2e8f0;
}

.tracker-step {
    position: relative;
    margin-bottom: 25px;
}

.tracker-step:last-child {
    margin-bottom: 0;
}

.tracker-icon {
    position: absolute;
    left: -30px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #cbd5e1;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tracker-icon.completed {
    background: var(--primary-color);
    border-color: var(--primary-color);
}
.tracker-icon.completed::after {
    content: '✓';
    color: #fff;
    font-size: 0.7rem;
    font-weight: bold;
}

.tracker-icon.active {
    border-color: #3b82f6;
    background: #eff6ff;
}
.tracker-icon.active::after {
    content: '';
    width: 8px;
    height: 8px;
    background: #3b82f6;
    border-radius: 50%;
}

.tracker-content h4 {
    margin: 0 0 5px 0;
    font-size: 1rem;
    color: #475569;
}
.tracker-step.completed .tracker-content h4 {
    color: var(--heading-color);
}
.tracker-step.active .tracker-content h4 {
    color: #1e40af;
}

.tracker-content p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--text-light);
}

/* EXACT PROJECT HEADER & FOOTER CSS OVERRIDES */
header {
  background: var(--bg-color);
  border-bottom: 1px solid var(--border-color);
  z-index: 100;
  box-shadow: var(--shadow-sm);
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: var(--text-muted);
  font-weight: 500;
  position: relative;
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-main);
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--accent-primary);
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
  }
  
  .nav-links {
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 1.25rem;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.5rem;
    scrollbar-width: none;
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  .nav-links a {
    font-size: 0.9rem;
    white-space: nowrap;
    flex-shrink: 0;
  }

  .logo img {
    max-width: 100% !important;
    height: auto !important;
    max-height: 70px;
  }
}

/* FOOTER CSS */
.newsletter-section {
  background-color: #0f172a;
  padding: 3rem 1rem;
  color: white;
  border-top: 4px solid var(--accent-secondary, #d97706);
}
.newsletter-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  text-align: center;
}
@media (min-width: 768px) {
  .newsletter-container {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
    align-items: center;
  }
}
.newsletter-text h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: white;
  border: none;
  padding: 0;
}
.newsletter-text p {
  color: #e2e8f0;
  font-size: 0.95rem;
}
.newsletter-form-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
  max-width: 400px;
}
.newsletter-form {
  display: flex;
  background: white;
  border-radius: var(--radius-md, 8px);
  padding: 0.25rem;
}
.newsletter-form input {
  flex: 1;
  border: none;
  padding: 0.75rem 1rem;
  background: transparent;
  color: var(--text-main);
  outline: none;
  box-shadow: none;
  min-width: 0;
}
.newsletter-form button {
  background-color: #f59e0b;
  color: white;
  border: none;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-md, 8px);
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s;
  white-space: nowrap;
}
.newsletter-form button:hover {
  opacity: 0.9;
}
.newsletter-privacy {
  font-size: 0.75rem;
  color: #93c5fd;
  text-align: center;
}
@media (min-width: 768px) {
  .newsletter-privacy {
    text-align: left;
  }
}

.site-footer-main {
  background-color: #0f172a;
  padding: 3rem 2rem;
  text-align: center;
  color: #94a3b8;
  margin-top: 0;
  border-top: none;
}
.footer-links-container {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.footer-links-container a {
  color: #94a3b8;
  font-size: 0.9rem;
  text-decoration: none;
}
.footer-links-container a:hover {
  color: white;
}
.site-footer-main p {
  font-size: 0.85rem;
  color: #64748b;
}

/* LOGO AND HEADER FINE TUNING */
.nav-links a {
  font-size: 1.05rem !important;
  font-weight: 600 !important;
}

.header-container {
  padding: 1.5rem 2rem !important;
}
/* EXACT ARTICLE SIZING AND WIDTH OVERRIDES */
:root {
  --max-width: 900px;
  --radius-lg: 16px;
  --shadow-lg: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.01);
}

.content-wrapper {
  max-width: var(--max-width) !important;
  border-radius: var(--radius-lg) !important;
  box-shadow: var(--shadow-lg) !important;
  padding: 0 0 2rem 0 !important;
}

.main-container, .article-container {
  padding: 0 3rem 2rem !important;
}

/* Typography Overrides (Hero) */
.title-section {
  padding: 3rem 2rem 1rem !important;
  margin-bottom: 2rem !important;
}

.title-section h1 {
  font-size: 2.5rem !important;
  font-weight: 800 !important;
  margin-bottom: 0.5rem !important;
}

.title-section p {
  font-size: 1.1rem !important;
  max-width: 600px !important;
  margin: 0 auto !important;
  color: var(--text-muted, #475569) !important;
}

/* Form Container Style Match (from reference .tool-container) */
.form-box, .tool-container {
  background: #ffffff !important;
  border: 1px solid var(--border-color) !important;
  border-radius: var(--radius-lg) !important;
  padding: 2.5rem !important;
  margin: 0 2rem 2rem !important;
  position: relative !important;
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1) !important;
}

.form-box::before, .tool-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-primary, #059669), var(--accent-secondary, #d97706));
}

/* Article Content Text Sizes */
.main-container h2, .article-content h2 {
  font-size: 1.5rem !important;
  font-weight: 700 !important;
  margin: 2rem 0 1rem !important;
  border-bottom: none !important; /* chart vacancy doesn't have the green line */
}

.main-container p, .article-content p {
  font-size: 1.05rem !important;
  margin-bottom: 1.2rem !important;
  color: #475569 !important; /* text-muted */
}

.main-container ul, .main-container ol, .article-content ul, .article-content ol {
  font-size: 1.05rem !important;
  color: #475569 !important;
  margin-bottom: 1.5rem !important;
  padding-left: 1.5rem !important;
}

.main-container li, .article-content li {
  margin-bottom: 0.5rem !important;
}

/* Responsive */
@media (max-width: 768px) {
  .title-section h1 {
    font-size: 2rem !important;
  }
  .main-container, .article-container {
    padding: 0 1.5rem 1.5rem !important;
  }
  .form-box, .tool-container {
    margin: 0 1rem 2rem !important;
    padding: 1.5rem !important;
  }
}
