body {
  font-family: Arial, sans-serif;
  background-color: #1e1e1e; 
  color: #f5f5f5; 
  line-height: 1.6;
  margin: 20px;
}
h1, h2 {
  color: #d2f5e3; 
}
.container {
  max-width: 1200px;
  margin: auto;
  padding: 20px;
  background-color: #2c2c2c; 
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  border-radius: 8px;
}
.section {
  margin-bottom: 40px;
}
.achievements ul {
  list-style-type: none;
  padding: 0;
}
.achievements ul li {
  background: #3a3a3a; 
  padding: 10px;
  margin: 5px 0;
  border-radius: 5px;
  color: #d2f5e3; 
}
.projects .project-item {
  margin-bottom: 20px;
}
.projects .project-item a {
  color: #d2f5e3;
}
.projects .project-item a:hover {
  color: #a8d4b1;
}
footer {
  text-align: center;
  margin-top: 40px;
  color: #888; 
}
a {
  color: #d2f5e3;
  text-decoration: underline; 
  font-weight: bold; 
  transition: color 0.3s ease, text-decoration-color 0.3s ease; 
}

a:hover {
  color: #a8d4b1;
  text-decoration-color: #a8d4b1; 
}

pre {
  white-space: pre-wrap; 
  word-wrap: normal; 
  overflow-x: auto; 
  background-color: #1c1c1c; 
  padding: 10px; 
  border-radius: 5px; 
  color: #f5f5f5; 
  max-width: 100%; 
  box-sizing: border-box;
}

code {
  white-space: pre-wrap; 
  word-wrap: normal;
  /* background-color: #2e2e2e;  */
  color: #f5f5f5;
  padding: 2px 4px; 
  border-radius: 3px; 
}

/* Blockquote styling for better visual appearance */
blockquote {
  border-left: 4px solid #4aa96c;
  margin: 1em 0;
  padding: 0.5em 1em;
  background: rgba(74, 169, 108, 0.06); /* subtle tint */
  color: #e8f7ee;
  font-style: italic;
  border-radius: 4px;
}

blockquote p {
  margin: 0;
}

/* Nested blockquotes get a slightly darker border */
blockquote blockquote {
  border-left-color: #2f7a46;
  background: rgba(47, 122, 70, 0.04);
}
