/* AsynkLabs — Shared Stylesheet */

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #222;
}

/* ── Header ── */
header {
  background: #0a192f;
  color: #fff;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header h1 {
  margin: 0;
}

nav a {
  color: #fff;
  margin-left: 20px;
  text-decoration: none;
}

nav a:hover {
  color: #64ffda;
}

/* ── Hero ── */
.hero {
  background: #112240;
  color: white;
  padding: 80px 40px;
  text-align: center;
}

.hero h2 {
  font-size: 40px;
  margin-bottom: 10px;
}

/* ── Generic section ── */
.section {
  padding: 60px 40px;
  text-align: center;
}

/* ── Service cards ── */
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.card {
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 10px;
}

/* ── Button ── */
.btn {
  background: #64ffda;
  color: #000;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 15px;
  font-size: 15px;
}

.btn:hover {
  background: #52d4b8;
}

/* ── Footer ── */
footer {
  background: #0a192f;
  color: white;
  text-align: center;
  padding: 20px;
}

footer a {
  color: #64ffda;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

/* ── Privacy Policy page ── */
.policy-hero {
  background: #112240;
  color: #fff;
  padding: 60px 40px;
  text-align: center;
}

.policy-hero h2 {
  font-size: 36px;
  margin-bottom: 8px;
}

.policy-hero p {
  color: #a8b2d8;
  margin: 0;
}

.policy-content {
  max-width: 860px;
  margin: 0 auto;
  padding: 60px 40px;
}

.policy-content h3 {
  color: #0a192f;
  margin-top: 40px;
  margin-bottom: 8px;
  font-size: 20px;
  border-left: 4px solid #64ffda;
  padding-left: 12px;
}

.policy-content p,
.policy-content ul {
  color: #444;
  margin-bottom: 16px;
}

.policy-content ul {
  padding-left: 24px;
}

.policy-content ul li {
  margin-bottom: 6px;
}

.policy-content .last-updated {
  display: inline-block;
  background: #e8fdf8;
  color: #0a8a6a;
  border: 1px solid #64ffda;
  border-radius: 4px;
  padding: 4px 12px;
  font-size: 13px;
  margin-bottom: 32px;
}
