@import url("../../styles/components/base.css");


a[href^="mailto:"] {
  color: #a855f7; /* Tailwind-style purple (you can tweak) */
  font-weight: 500;
  text-decoration: underline;
  text-decoration-color: rgba(168, 85, 247, 0.6);
  transition: color 0.3s ease, text-decoration-color 0.3s ease;
  text-decoration: none;
}

a[href^="mailto:"]:hover {
  color: #c084fc; /* lighter purple on hover */
  text-decoration-color: #c084fc;
}

a[href^="https://ico.org.uk"] {
  color: #a855f7; /* Tailwind-style purple (you can tweak) */
  font-weight: 500;
  text-decoration: underline;
  text-decoration-color: rgba(168, 85, 247, 0.6);
  transition: color 0.3s ease, text-decoration-color 0.3s ease;
  text-decoration: none;
}

a[href^="https://ico.org.uk"]:hover {
  color: #c084fc; /* lighter purple on hover */
  text-decoration-color: #c084fc;
}
body {
  background: var(--bg-dark);
  color: var(--text-primary);
}

.title-container {
  text-align: center;
  margin-bottom: 3rem;
  padding-top: 3rem;
}

.title-container .last-updated {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
}

.title {
  font-size: 2.6rem;
  font-weight: 800;
  background: linear-gradient(
    45deg,
    var(--primary-color),
    var(--primary-light)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.75rem;
}

.page-title {
  font-size: 1.4rem;
  color: var(--text-secondary);
}

main {
  max-width: 1000px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

h2 {
  font-size: 1.5rem;
  margin: 2.5rem 0 1.25rem;
  color: var(--primary-light);
}

p,
ul,
ol {
  color: var(--text-secondary);
}

ul,
ol {
  padding-left: 2rem;
}

.last-updated {
  margin-top: 2.5rem;
  font-style: italic;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.btn {
  display: inline-block;
  padding: 12px 28px;
  background: var(--primary-color);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: none;
}

.btn:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(108, 50, 172, 0.3);
}

@media (max-width: 768px) {
  .page-title {
    font-size: 1.15rem;
  }
  main {
    padding: 2.5rem 1.25rem;
  }
}
