/* ==========================================================================
   utilities.css — Shared utility styles used across multiple main pages
   ========================================================================== */

/* --------------------------------------------------------------------------
   Hero & Section Heading Color Overrides
   Repeated across: index.html, about.html, capabilities.html, careers.html,
   contact.html, contact-success.html, privacy.html, terms.html
   -------------------------------------------------------------------------- */

.hero-section h1 {
  color: #ffffff !important;
  background: none !important;
  -webkit-text-fill-color: #ffffff !important;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.section-heading h2 {
  color: #ff4d2e !important;
  background: none !important;
  -webkit-text-fill-color: unset !important;
}

/* --------------------------------------------------------------------------
   Policy Content Styles
   Repeated across: privacy.html, terms.html
   -------------------------------------------------------------------------- */

.policy-content {
  background: #fff;
  border-radius: 8px;
  padding: 2.5rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}

.policy-section {
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e9ecef;
}

.policy-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.policy-content h2 {
  color: #ff4d2e;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.policy-content h3 {
  color: #333;
  font-size: 1.2rem;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.policy-content ul {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.policy-content li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.last-updated {
  background: #e3f2fd;
  padding: 1rem;
  border-radius: 6px;
  border-left: 4px solid #2196f3;
  margin-bottom: 2rem;
}

.table-of-contents {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 6px;
  margin-bottom: 2rem;
}

.table-of-contents h3 {
  color: #ff4d2e;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.table-of-contents ul {
  list-style: none;
  padding-left: 0;
}

.table-of-contents li {
  margin-bottom: 0.5rem;
}

.table-of-contents a {
  color: #333;
  text-decoration: none;
  padding: 0.25rem 0;
  display: block;
}

.table-of-contents a:hover {
  color: #ff4d2e;
}

@media (max-width: 768px) {
  .policy-content {
    padding: 1.5rem;
  }
}
