body {
  font-family: 'Open Sans', sans-serif;
  background-color: #000000;
  color: #ffffff;
  margin: 0;
  overflow-x: hidden;
}
h1, h2, h3, h4 {
  font-family: 'Merriweather', serif;
  color: #b8860b;
}
h1 {
  font-size: 2rem;
  font-weight: 700;
  white-space: normal;
  word-break: break-word;
  z-index: 10;
}
h2 {
  font-size: 1.8rem;
  font-weight: 700;
}
.report-title {
  margin-top: 2rem;
}
h3 {
  font-size: 1.4rem;
  font-weight: 400;
}
h4 {
  font-size: 1.2rem;
  font-weight: 400;
}
.navbar {
  background-color: #000000;
  padding: 1rem 0;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}
.navbar-brand, .nav-link {
  color: #b8860b !important;
  font-weight: 600;
  transition: color 0.3s ease;
}
.nav-link:hover {
  color: #d4a017 !important;
}
.nav-link:active, a:active {
  color: #b8860b !important;
  outline: none;
}
.hero {
  min-height: 70vh;
  background: url('/imgs/header.jpg') no-repeat center center/cover;
  display: flex;
  align-items: center;
  text-align: center;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}
.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 6rem;
  padding-bottom: 2rem;
}
.btn-primary {
  background-color: #b8860b;
  border-color: #b8860b;
  color: #000000;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  transition: background-color 0.3s ease, transform 0.2s ease;
}
.btn-primary:hover {
  background-color: #d4a017;
  border-color: #d4a017;
  transform: translateY(-2px);
}
.section {
  padding: 6rem 0;
  animation: fadeIn 1s ease-in;
}
.alert-section {
  background: #1a1a1a;
  border: 2px solid #b8860b;
  border-radius: 8px;
  padding: 2rem 0;
  margin-top: 2rem;
}
.hidden {
  display: none;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes glow {
  0% {
    box-shadow: 0 0 5px rgba(184, 134, 11, 0.4);
  }
  50% {
    box-shadow: 0 0 15px rgba(184, 134, 11, 0.8);
  }
  100% {
    box-shadow: 0 0 5px rgba(184, 134, 11, 0.4);
  }
}
.glow-button {
  color: #b8860b;
  text-decoration: none;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  display: inline-block;
  animation: glow 2s ease-in-out infinite;
  transition: color 0.3s ease, transform 0.2s ease;
}
.glow-button:hover {
  color: #d4a017;
  transform: translateY(-2px);
}
.ncmd-logo {
  height: 150px;
  width: auto;
  display: inline-block;
  vertical-align: middle;
  border-radius: 4px;
  margin: 0 0.5rem;
  padding-bottom: 2.5rem;
}
.find-card {
  background: #1a1a1a;
  border: 1px solid #b8860b;
  border-radius: 8px;
  padding: 1.5rem;
  text-align: left;
  transition: transform 0.3s ease;
}
.find-card:hover {
  transform: translateY(-5px);
}
.find-card h4 {
  margin-bottom: 1rem;
}
.find-card p {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}
.find-images {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 1rem;
}
.find-image {
  width: 100%;
  max-width: 150px;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  border: 1px solid #b8860b;
}
.bg-dark {
  background-color: #000000 !important;
}
.portfolio-filter .btn {
  margin: 0.5rem;
  background-color: #1a1a1a;
  border-color: #b8860b;
  color: #b8860b;
  transition: all 0.3s ease;
}
.portfolio-filter .btn.active, .portfolio-filter .btn:hover {
  background-color: #b8860b;
  color: #000000;
}
.portfolio-item {
  margin-bottom: 1.5rem;
  padding: 0.5rem;
}
.portfolio-item img {
  width: 100%;
  max-height: 240px;
  object-fit: contain;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.portfolio-item img:hover {
  transform: scale(1.05);
}
.portfolio-item a {
  text-decoration: none;
  color: #ffffff;
  display: block;
}
.portfolio-item p {
  font-size: 0.9rem;
  margin-top: 0.5rem;
  text-align: center;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
}
.benefit-card {
  padding: 1.5rem;
  background: #1a1a1a;
  border-radius: 8px;
  margin: 1rem;
  border: 1px solid #b8860b;
  transition: transform 0.3s ease;
}
.benefit-card:hover {
  transform: translateY(-5px);
}
.benefit-card i {
  color: #b8860b;
}
.blockquote {
  background: #1a1a1a;
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid #b8860b;
  margin: 0 auto;
  max-width: 500px;
  text-align: center;
}
.blockquote-footer {
  color: #b8860b;
}
.cta-banner {
  background: #b8860b;
  color: #000000;
  padding: 2rem 0;
}
.cta-banner h3 {
  color: #000000;
}
.contact-icon {
  color: #b8860b;
  margin-bottom: 0.5rem;
}
.contact-link {
  color: #b8860b;
  text-decoration: none;
  font-weight: 600;
}
.contact-link:hover {
  color: #d4a017;
}
footer {
  background-color: #000000;
  padding: 1.5rem 0;
  text-align: center;
  color: #b8860b;
  font-size: 0.9rem;
}
.source {
  font-size: 0.8rem;
  color: #b8860b;
  font-style: italic;
}
.faq-item {
  background: #1a1a1a;
  border: 1px solid #b8860b;
  border-radius: 8px;
  margin-bottom: 1rem;
}
.faq-item .accordion-button {
  background: #1a1a1a;
  color: #b8860b;
  font-family: 'Merriweather', serif;
  font-size: 1.2rem;
  font-weight: 400;
}
.faq-item .accordion-button:not(.collapsed) {
  background: #b8860b;
  color: #000000;
}
.faq-item .accordion-body {
  color: #ffffff;
  font-size: 0.9rem;
}
.contact-form {
  max-width: 500px;
  margin: 30px auto;
  padding: 1.5rem;
  background: #1a1a1a;
  border: 2px solid #b8860b;
  border-radius: 8px;
  animation: fadeIn 1s ease-in;
}
.contact-form .form-control {
  background-color: #000000;
  border: 1px solid #b8860b;
  border-radius: 4px;
  color: #ffffff;
  padding: 0.75rem;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.9rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.contact-form .form-control:focus {
  border-color: #d4a017;
  box-shadow: 0 0 10px rgba(212, 160, 23, 0.5);
  background-color: #000000;
  color: #ffffff;
}
.contact-form .form-control::placeholder {
  color: #b8860b;
  opacity: 0.7;
}
.contact-form .form-label {
  font-family: 'Merriweather', serif;
  font-weight: 600;
  color: #b8860b;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}
.contact-form .btn-primary {
  background-color: #b8860b;
  border-color: #b8860b;
  color: #000000;
  font-family: 'Merriweather', serif;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  width: 100%;
  animation: glow 2s ease-in-out infinite;
  transition: background-color 0.3s ease, transform 0.2s ease;
}
.contact-form .btn-primary:hover {
  background-color: #d4a017;
  border-color: #d4a017;
  transform: translateY(-2px);
}
.alert-success, .alert-danger {
  max-width: 500px;
  margin: 20px auto;
  padding: 1rem;
  background: #1a1a1a;
  border: 2px solid #b8860b;
  border-radius: 8px;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.9rem;
  color: #ffffff;
  animation: fadeIn 1s ease-in;
}
.alert-success {
  border-color: #b8860b;
}
.alert-danger {
  border-color: #d4a017;
}
.g-recaptcha {
  display: inline-block;
  margin: 1rem 0;
}
@media (max-width: 575px) {
  h1 {
    font-size: 1.3rem;
    line-height: 1.2;
    margin-top: 1rem;
  }
  h2 {
    font-size: 1.3rem;
  }
  h3 {
    font-size: 1.1rem;
  }
  h4 {
    font-size: 0.9rem;
  }
  .hero {
    min-height: 50vh;
  }
  .hero-content {
    padding-top: 6rem;
    padding-bottom: 3rem;
  }
  .alert-section {
    margin-top: 3rem;
  }
  .portfolio-item {
    max-width: 100%;
  }
  .portfolio-item img {
    max-height: 180px;
  }
  .portfolio-item p {
    font-size: 0.8rem;
    max-width: 100%;
    white-space: normal;
    word-break: break-word;
  }
  .benefit-card {
    margin: 0.5rem;
  }
  .ncmd-logo {
    height: 120px;
    margin: 0 0.3rem;
    padding-bottom: 0.3rem;
  }
  .find-card {
    margin: 0.5rem;
  }
  .find-image {
    max-width: 120px;
  }
  .faq-item .accordion-button {
    font-size: 0.9rem;
  }
  .faq-item .accordion-body {
    font-size: 0.8rem;
  }
  .contact-form {
    padding: 1rem;
    margin: 20px 10px;
  }
  .contact-form .form-control {
    font-size: 0.8rem;
    padding: 0.5rem;
  }
  .contact-form .form-label {
    font-size: 0.9rem;
  }
  .contact-form .btn-primary {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }
  .alert-success, .alert-danger {
    margin: 10px;
    font-size: 0.8rem;
  }
}