.nav-list {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 0;
  margin: 0;
  border-bottom: 2px solid #eaeaea;
}

.tab-content-section {
  text-align: left;
}

.tab-btn {
  background: transparent;
  border: none;
  padding: 10px 15px;
  font-size: 16px;
  cursor: pointer;
  color: #333;
  border-bottom: 3px solid transparent;
  outline: none;
  transition: border-color 0.2s ease;
}

.tab-btn:focus {
  outline: none;
}

.tab-item:hover .tab-btn,
.tab-item.active .tab-btn {
  color: #333;
  font-weight: bold;
}

.tab-pane {
  display: none;
  padding: 20px 0;
}

.tab-pane.active {
  display: block;
}

.about-section {
  width: 60%;
  margin: 0 auto;
  margin-left: auto !important;
  margin-bottom: 60px !important;
  font-family: inherit;
  line-height: 1.6;
  color: #333333;
  text-align: left;
}

.about-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 24px;
  color: #000000;
}

.about-section p {
  margin-bottom: 20px;
}

.about-section p:last-child {
  margin-bottom: 0;
}

.about-section a {
  color: #000000;
  text-decoration: none;
  font-weight: bold;
}

.about-section a:hover {
  text-decoration: underline;
}

.card-container {
  display: flex;
  gap: 20px;
  width: 100%;
  max-width: 1200px;
  margin: 40px auto 0 auto;
  font-family: Arial, sans-serif;
}

.custom-card {
  position: relative;
  flex: 1;
  border-radius: 6px;
  overflow: hidden;
  text-decoration: none;
  color: #ffffff;
  display: flex;
  aspect-ratio: 1 / 1;
}

.card-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.card-overlay {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0) 60%);
  text-align: left;
}

.card-number {
  font-size: 64px;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 4px;
}

.card-subtext {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 4px;
  color: #fff
}

.card-title {
  font-size: 24px;
  font-weight: bold;
  margin: 0;
}

@media (max-width: 768px) {
  .about-section {
    width: 90%;
  }
  .card-container {
    flex-direction: column;
  }
}

.tab-btn:focus,
.tab-btn:active,
.tab-item:focus,
.tab-item:active {
  outline: none !important;
  box-shadow: none !important;
}

.custom-card:hover,
.custom-card:focus,
.custom-card:active {
  text-decoration: none !important;
}

.reports-container {
  width: 60%;
  margin: 0 auto;
  margin-left: auto !important;
  text-align: left;
  font-family: inherit;
  color: #333333;
}

.report-section {
  margin-bottom: 30px;
}

.report-section.divider {
  border-top: 1px solid #eaeaea;
  padding-top: 30px;
}

.report-title {
  font-size: 24px;
  font-weight: bold;
  color: #000000;
  margin-bottom: 20px;
}

.red-square-list {
  padding-left: 20px;
  margin: 0;
}

.red-square-list li {
  margin-bottom: 12px;
}

.red-square-list a {
  color: #e3000f;
  text-decoration: none;
}

.red-square-list a:hover {
  text-decoration: underline;
}

.report-share-widget {
  margin-top: 40px;
}

@media (max-width: 768px) {
  .reports-container {
    width: 90%;
  }
}