@charset "UTF-8";
.security-content {
  padding: 2rem 1rem;
  background-color: #fafafa;
  min-height: 100vh;
}

main {
  max-width: 75rem;
  margin-inline: auto;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  padding: 3rem;
}
@media (max-width: 768px) {
  main {
    padding: 1.5rem;
    margin: 0 0.5rem;
  }
}
main h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1.5rem;
  border-bottom: 3px solid #3b82f6;
  padding-bottom: 0.75rem;
}
@media (max-width: 768px) {
  main h1 {
    font-size: 2rem;
  }
}
main h2 {
  font-size: 1.875rem;
  font-weight: 600;
  color: #374151;
  margin: 2.5rem 0 1.25rem 0;
}
main h2:first-of-type {
  margin-top: 1.5rem;
}
main h3 {
  font-size: 1.5rem;
  font-weight: 500;
  color: #4b5563;
  margin: 2rem 0 1rem 0;
}
main p {
  line-height: 1.7;
  color: #6b7280;
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
}
main ul,
main ol {
  margin: 1.25rem 0;
  padding-left: 1.5rem;
  line-height: 1.6;
}
main ul li,
main ol li {
  margin-bottom: 0.75rem;
  line-height: 1.7;
  color: #4b5563;
  position: relative;
}
main ul li:last-child,
main ol li:last-child {
  margin-bottom: 0;
}
main ul li ul,
main ul li ol,
main ol li ul,
main ol li ol {
  margin: 0.5rem 0 0.75rem 0;
  padding-left: 1.25rem;
}
main ul li ul li,
main ul li ol li,
main ol li ul li,
main ol li ol li {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  color: #6b7280;
}
main ul li strong,
main ol li strong {
  color: #1f2937;
  font-weight: 600;
}
main ul li em,
main ol li em {
  font-style: italic;
  color: #374151;
}
main ul {
  list-style: none;
}
main ul li {
  padding-left: 1.5rem;
  position: relative;
}
main ul li::before {
  content: "•";
  color: #3b82f6;
  font-weight: bold;
  font-size: 1.2em;
  position: absolute;
  left: 0;
  top: 0;
  line-height: 1.4;
}
main ul li ul li::before {
  content: "◦";
  color: #6b7280;
  font-size: 1em;
}
main ul li ul li ul li::before {
  content: "▪";
  color: #9ca3af;
  font-size: 0.9em;
}
main ul li:has(strong:first-child) {
  background: #f8fafc;
  border-left: 3px solid #3b82f6;
  padding: 0.75rem 1rem 0.75rem 1.5rem;
  margin: 0.5rem 0;
  border-radius: 0 6px 6px 0;
}
main ul li:has(strong:first-child)::before {
  color: #1d4ed8;
  left: 0.5rem;
}
main ul.definition-list li {
  border-bottom: 1px solid #f3f4f6;
  padding-bottom: 0.75rem;
  margin-bottom: 1rem;
}
main ul.definition-list li:last-child {
  border-bottom: none;
  margin-bottom: 0;
}
main ul.definition-list li::before {
  content: "→";
  color: #059669;
  font-size: 1.1em;
}
main ol {
  counter-reset: list-counter;
}
main ol li {
  counter-increment: list-counter;
  padding-left: 1.5rem;
  position: relative;
}
main ol li::before {
  content: counter(list-counter) ".";
  color: #3b82f6;
  font-weight: 600;
  font-size: 0.95em;
  position: absolute;
  left: 0;
  top: 0;
  line-height: 1.7;
  min-width: 1.25rem;
}
main ol li ol {
  counter-reset: nested-counter;
}
main ol li ol li {
  counter-increment: nested-counter;
}
main ol li ol li::before {
  content: counter(list-counter) "." counter(nested-counter);
  color: #6b7280;
  font-size: 0.9em;
}
main ol li ol li ol {
  counter-reset: deep-counter;
}
main ol li ol li ol li {
  counter-increment: deep-counter;
}
main ol li ol li ol li::before {
  content: counter(list-counter) "." counter(nested-counter) "." counter(deep-counter);
  color: #9ca3af;
  font-size: 0.85em;
}
main ol.steps-list li {
  background: linear-gradient(135deg, #f8fafc, #f1f5f9);
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 1rem 1rem 1rem 2.5rem;
  margin-bottom: 1rem;
  position: relative;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: all 0.2s ease;
}
main ol.steps-list li:hover {
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  transform: translateY(-1px);
}
main ol.steps-list li::before {
  background: #3b82f6;
  color: white;
  border-radius: 50%;
  width: 1.75rem;
  height: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 600;
  left: 0.75rem;
  top: 1rem;
  min-width: auto;
}
main ol.steps-list li:last-child {
  margin-bottom: 0;
}
main .content-list li {
  background: #fafbfc;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  padding: 1rem;
  margin-bottom: 0.75rem;
}
main .content-list li::before {
  color: #059669;
  font-size: 1.1em;
}
main .content-list li p {
  margin-bottom: 0.5rem;
}
main .content-list li p:last-child {
  margin-bottom: 0;
}
main .contact-list li {
  display: flex;
  align-items: center;
  padding: 0.75rem 1rem;
  background: #f8fafc;
  border-radius: 6px;
  margin-bottom: 0.5rem;
  border-left: 3px solid #3b82f6;
}
main .contact-list li::before {
  content: "📧";
  margin-right: 0.75rem;
  font-size: 1.1em;
  position: static;
}
main .contact-list li:nth-child(2)::before {
  content: "📞";
}
main .contact-list li:nth-child(3)::before {
  content: "🏢";
}
main .contact-list li:nth-child(4)::before {
  content: "📍";
}
main .contact-list li strong {
  margin-right: 0.5rem;
  color: #374151;
}
@media (max-width: 768px) {
  main {
    font-size: 0.875rem;
    margin: 1.5rem 0;
    border-radius: 6px;
  }
  main thead th,
  main tbody td {
    padding: 0.75rem 0.5rem;
  }
  main ul,
  main ol {
    padding-left: 1.25rem;
  }
  main ul li,
  main ol li {
    font-size: 0.95rem;
    padding-left: 1.25rem;
  }
  main ul li ul,
  main ul li ol,
  main ol li ul,
  main ol li ol {
    padding-left: 1rem;
  }
  main ol.steps-list li {
    padding: 0.75rem 0.75rem 0.75rem 2rem;
  }
  main ol.steps-list li::before {
    width: 1.5rem;
    height: 1.5rem;
    font-size: 0.8rem;
    left: 0.5rem;
    top: 0.75rem;
  }
  main .contact-list li {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
  main .contact-list li::before {
    margin-bottom: 0.5rem;
    margin-right: 0;
  }
}
main table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
main table thead {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}
main table thead th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  color: white;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 2px solid #1e40af;
}
@media (max-width: 768px) {
  main table thead th {
    padding: 0.75rem 0.5rem;
    font-size: 0.85rem;
  }
}
main table tbody tr {
  transition: background-color 0.2s ease;
  border-bottom: 1px solid #e5e7eb;
}
main table tbody tr:hover {
  background-color: #f8fafc;
}
main table tbody tr:nth-child(even) {
  background-color: #f9fafb;
}
main table tbody tr:nth-child(even):hover {
  background-color: #f1f5f9;
}
main table tbody tr:last-child {
  border-bottom: none;
}
main table tbody td {
  padding: 1rem;
  color: #374151;
  font-size: 0.95rem;
  vertical-align: top;
}
@media (max-width: 768px) {
  main table tbody td {
    padding: 0.75rem 0.5rem;
    font-size: 0.9rem;
  }
}
main table tbody td:first-child {
  font-weight: 500;
  color: #1f2937;
}
main table tbody td:contains('Valid'), main table tbody td:contains('Active'), main table tbody td:contains('Certified') {
  color: #059669;
  font-weight: 500;
}
main table tbody td:contains('Expired'), main table tbody td:contains('Inactive') {
  color: #dc2626;
  font-weight: 500;
}
@media (max-width: 640px) {
  main table {
    border: none;
    box-shadow: none;
    background: transparent;
    margin: 1rem 0;
  }
  main table thead {
    display: none;
  }
  main table tbody {
    display: block;
  }
  main table tbody tr {
    display: block;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    margin-bottom: 1rem;
    padding: 1.25rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.2s ease;
    position: relative;
  }
  main table tbody tr:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(-1px);
    background-color: #fafbfc;
  }
  main table tbody tr:last-child {
    margin-bottom: 0;
  }
  main table tbody tr::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #1d4ed8);
    border-radius: 12px 12px 0 0;
  }
  main table tbody td {
    display: block;
    border: none;
    padding: 0.75rem 0;
    position: relative;
    text-align: left;
    border-bottom: 1px solid #f3f4f6;
  }
  main table tbody td:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
  main table tbody td:first-child {
    font-weight: 600;
    font-size: 1.1rem;
    color: #1f2937;
    padding-bottom: 1rem;
    margin-bottom: 0.5rem;
    border-bottom: 2px solid #e5e7eb;
  }
  main table tbody td:not(:first-child)::before {
    content: attr(data-label);
    display: block;
    font-weight: 600;
    color: #6b7280;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.25rem;
  }
  main table tbody td:not(:first-child) {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #374151;
  }
  main table tbody td[data-label*=Status]:contains('Valid'), main table tbody td[data-label*=Status]:contains('Active'), main table tbody td[data-label*=Status]:contains('Certified'), main table tbody td[data-label*=Valid]:contains('Valid'), main table tbody td[data-label*=Valid]:contains('Active'), main table tbody td[data-label*=Valid]:contains('Certified'), main table tbody td[data-label*=Active]:contains('Valid'), main table tbody td[data-label*=Active]:contains('Active'), main table tbody td[data-label*=Active]:contains('Certified') {
    color: #059669;
    font-weight: 600;
  }
  main table tbody td[data-label*=Status]:contains('Valid')::after, main table tbody td[data-label*=Status]:contains('Active')::after, main table tbody td[data-label*=Status]:contains('Certified')::after, main table tbody td[data-label*=Valid]:contains('Valid')::after, main table tbody td[data-label*=Valid]:contains('Active')::after, main table tbody td[data-label*=Valid]:contains('Certified')::after, main table tbody td[data-label*=Active]:contains('Valid')::after, main table tbody td[data-label*=Active]:contains('Active')::after, main table tbody td[data-label*=Active]:contains('Certified')::after {
    content: "✓";
    margin-left: 0.5rem;
    color: #10b981;
  }
  main table tbody td[data-label*=Status]:contains('Expired'), main table tbody td[data-label*=Status]:contains('Inactive'), main table tbody td[data-label*=Valid]:contains('Expired'), main table tbody td[data-label*=Valid]:contains('Inactive'), main table tbody td[data-label*=Active]:contains('Expired'), main table tbody td[data-label*=Active]:contains('Inactive') {
    color: #dc2626;
    font-weight: 600;
  }
  main table tbody td[data-label*=Status]:contains('Expired')::after, main table tbody td[data-label*=Status]:contains('Inactive')::after, main table tbody td[data-label*=Valid]:contains('Expired')::after, main table tbody td[data-label*=Valid]:contains('Inactive')::after, main table tbody td[data-label*=Active]:contains('Expired')::after, main table tbody td[data-label*=Active]:contains('Inactive')::after {
    content: "✕";
    margin-left: 0.5rem;
    color: #ef4444;
  }
}
@media (max-width: 480px) {
  .security-content {
    padding: 1rem 0.5rem;
  }
  main table tbody tr {
    padding: 1rem;
    margin-bottom: 0.75rem;
  }
  main table tbody td:first-child {
    font-size: 1rem;
    padding-bottom: 0.75rem;
  }
  main table tbody td:not(:first-child) {
    font-size: 0.9rem;
    padding: 0.5rem 0;
  }
  main table tbody td:not(:first-child)::before {
    font-size: 0.8rem;
  }
}
@media (max-width: 640px) {
  main table.force-scroll {
    display: table;
    width: 100%;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
  }
  main table.force-scroll thead {
    display: table-header-group;
  }
  main table.force-scroll tbody {
    display: table-row-group;
  }
  main table.force-scroll tbody tr {
    display: table-row;
    background: transparent;
    border: none;
    padding: 0;
    margin: 0;
    box-shadow: none;
  }
  main table.force-scroll tbody tr::before {
    display: none;
  }
  main table.force-scroll tbody td {
    display: table-cell;
    white-space: nowrap;
    min-width: 120px;
    border-bottom: 1px solid #e5e7eb;
  }
  main table.force-scroll tbody td::before {
    display: none;
  }
}
main .certificate-item {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 1.5rem;
  margin: 1rem 0;
  transition: all 0.2s ease;
}
main .certificate-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-color: #3b82f6;
}
main .certificate-item h4 {
  color: #1f2937;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
main a {
  color: #3b82f6;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}
main a:hover {
  color: #1d4ed8;
  text-decoration: underline;
}
main code {
  background: #f1f5f9;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-family: "Monaco", "Consolas", monospace;
  font-size: 0.9em;
  color: #dc2626;
}
main blockquote {
  border-left: 4px solid #3b82f6;
  padding-left: 1rem;
  margin: 1.5rem 0;
  font-style: italic;
  color: #6b7280;
  background: #f8fafc;
  padding: 1rem;
  border-radius: 0 8px 8px 0;
}