/* Security page styles - Dark Mode Theme */
.site-main {
  background-color: #0f172a; /* Dark background for the whole security page */
  color: #fff;
}

.security-hero {
  text-align: center;
  padding: 6rem 0 4rem;
  background-color: #0f172a;
  position: relative;
  overflow: hidden;
}

/* Add a subtle glow effect */
.security-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
  z-index: 0;
}

.security-hero .layout-container {
  position: relative;
  z-index: 1;
}

.security-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  background: rgba(16, 185, 129, 0.15);
  color: #34d399;
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.security-hero h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: #fff;
  font-weight: 800;
}

.subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.security-content {
  padding-bottom: 6rem;
  background-color: #0f172a;
}

.security-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 768px) {
  .security-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.security-column {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.security-column h2 {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
  color: #fff;
}

.column-description {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1rem;
}

.security-items {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.security-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.item-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #34d399;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.item-icon svg {
  width: 24px;
  height: 24px;
}

.item-content {
  flex: 1;
}

.item-content h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0 0 0.5rem 0;
  color: #fff;
}

.item-content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
  font-size: 0.95rem;
}
