body {
  font-family: "Segoe UI", Tahoma, Arial, sans-serif;
  background: #f4f6f8;
  margin: 0;
  padding: 40px;
  color: #333;
}

.cv-container {
  max-width: 900px;
  margin: auto;
  background: #ffffff;
  padding: 45px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.header {
  text-align: center;
  margin-bottom: 35px;
}

.header h1 {
  margin: 0;
  font-size: 34px;
  letter-spacing: 1px;
}

.subtitle {
  font-size: 16px;
  color: #555;
  margin: 8px 0;
}

.contact {
  font-size: 14px;
  color: #555;
}

.contact a {
  color: #0073b1;
  text-decoration: none;
  transition: color 0.3s ease;
}
.contact a:hover {
  color: #004974;
}

section {
  margin-bottom: 30px;
}

h2 {
  font-size: 18px;
  border-bottom: 2px solid #e3e3e3;
  padding-bottom: 6px;
  margin-bottom: 14px;
  text-transform: uppercase;
}

h3 {
  margin: 0;
  font-size: 16px;
}

h4 {
  margin-bottom: 6px;
  font-size: 15px;
}

.meta {
  font-size: 13px;
  color: #666;
  margin-bottom: 8px;
}

.entry ul {
  margin-top: 8px;
  padding-left: 18px;
}

.entry p {
  margin-top: 8px; /* Added spacing for paragraphs inside .entry */
}

.skills-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

ul {
  margin: 0;
  padding-left: 18px;
}

p {
  line-height: 1.65;
}

/* -------- Featured Projects styles --------- */

.entry p {
  font-family: Arial, "Segoe UI", Tahoma, sans-serif;
  font-size: 14px;
  color: #444;
}

/* Style GitHub URLs as monospace and subtle color to stand out but not too bright */
.entry p a,
.entry p code,
.entry p .url-text {
  font-family: monospace, monospace;
  background: #f0f0f0;
  padding: 2px 6px;
  border-radius: 3px;
  color: #222;
  user-select: text;
}

/* Since you want GitHub URLs as plain text, style those spans */
.url-text {
  font-family: monospace, monospace;
  background: #f0f0f0;
  padding: 2px 6px;
  border-radius: 3px;
  color: #222;
  user-select: text;
  display: inline-block;
  margin-top: 4px;
}

/* Button style for future 'Download CV' or CTAs */
.btn {
  display: inline-block;
  background-color: #0073b1;
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
  margin-bottom: 20px;
}
.btn:hover {
  background-color: #004974;
}
