#prevention {
  max-width: 1300px;
  margin: 5rem auto;
  padding: 1.5rem 2rem;
  background-color: var(--white);
  border-radius: 12px;
  box-shadow: 0 10px 25px var(--blue-light);
}

#prevention h2,
#prevention h3 {
  color: var(--blue);
  font-weight: 700;
  font-size: 2rem;
  text-align: center;
  margin-bottom: 2rem;
}

#prevention p,
#prevention li {
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--text);
}

#prevention strong {
  font-weight: 700;
  color: var(--blue);
}

#prevention .highlight-box {
  background-color: var(--blue-light);
  border-left: 5px solid var(--blue);
  padding: 1.25rem 1.75rem;
  border-radius: 8px;
  margin-bottom: 2rem;
  color: var(--dark-blue);
}

#prevention .highlight-box h3 {
  margin-top: 0;
  margin-bottom: 0.75rem;
  font-weight: 600;
  font-size: 1.25rem;
}

#prevention .highlight-box ul {
  list-style-type: disc;
  margin: 0 0 0 1.5rem;
  font-size: 1rem;
  line-height: 1.5;
}

#prevention .titles-row {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1rem;
  gap: 3rem;
}

#prevention .titles-row h3,
.mobile-col h3 {
  color: var(--blue);
  font-weight: 700;
  font-size: 1.5rem;
  text-align: center;
  font-family: Arial, sans-serif;
  margin: 0 0 1rem 0;
  border-bottom: 2px solid var(--blue);
  padding-bottom: 0.3rem;
}

#prevention .table-container {
  width: 100%;
  margin-bottom: 3rem;
}

#prevention .table-row {
  display: flex;
  position: relative;
  margin-bottom: 1.5rem;
  gap: 3rem;
}

#prevention .table-row::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background-color: var(--blue);
  transform: translateX(-50%);
  z-index: 1;
  border-radius: 1px;
}

#prevention .table-cell {
  flex: 1;
  padding: 0;
  box-sizing: border-box;
  position: relative;
  z-index: 2;
}

#prevention details {
  background: var(--background-light, #f7f9fc);
  border-left: 4px solid var(--blue);
  padding: 1rem 1.25rem;
  border-radius: 8px;
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--text);
  margin: 0 0 1.25rem 0;
}

#prevention summary {
  font-weight: 600;
  font-size: 1.125rem;
  color: var(--legal-blue);
  cursor: pointer;
  outline: none;
  user-select: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
}

#prevention summary::-webkit-details-marker {
  display: none;
}

#prevention summary::before {
  content: "▶";
  color: var(--blue);
  display: inline-block;
  transform-origin: center;
  transition: transform 0.3s ease;
}

#prevention details[open] summary::before {
  transform: rotate(90deg);
}

#prevention ul {
  list-style-type: disc;
  margin-left: 1.5rem;
  color: var(--text);
}

.mobile-container {
  display: none;
}

@media (max-width: 1000px) {
  #prevention .titles-row,
  #prevention .table-container {
    display: none;
  }

  .mobile-container {
    display: block;
    max-width: 1000px;
    margin-bottom: 3rem;
  }

  .mobile-col {
    margin-bottom: 2.5rem;
  }

  .mobile-col h3 {
    color: var(--blue);
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--blue);
    padding-bottom: 0.3rem;
  }

  .mobile-col details {
    margin-bottom: 1.5rem;
  }
}