body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  background: #f9f9f9;
  color: #333;
 }

 .personal-info {
  margin-bottom: 20px;
}

.personal-info h2 {
  font-size: 1.5rem;
  color: #004080;
  border-bottom: 2px solid #2a4d9b;
  padding-bottom: 5px;
  margin-bottom: 15px;
}

.info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.info-list li {
  margin-bottom: 8px;
  font-size: 1rem;
  color: #333;
}

.info-list li strong {
  width: 170px;
  display: inline-block;
  color: #1e2a47;
}




 .container {
  max-width: 900px;
  margin: auto;
  padding: 20px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  border-radius: 10px;
 }
 .bio-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 20px;
 }
 .bio-header img {
  border-radius: 10px;
  width: 180px;
  height: auto;
  margin-right: 20px;
 }
 .bio-header h1 {
  margin: 0;
  font-size: 28px;
  color: #004080;
 }
 .bio-header h2 {
  margin: 5px 0 0;
  font-size: 18px;
  font-weight: normal;
  color: #666;
 }
 section {
  margin-bottom: 25px;
 }
 h3 {
  color: #004080;
  border-bottom: 2px solid #eee;
  padding-bottom: 5px;
 }
 ul {
  padding-left: 20px;
 }
 .cv-download {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 20px;
  background: #004080;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.3s;
 }
 .cv-download:hover {
  background: #0066cc;
 }
 
 .date_cv {
  text-align: right;
  font-style: italic;
  font-size: 0.95rem;
  color: #2a4d9b; /* softer blue */
  margin: 0.5em 0;
  letter-spacing: 0.5px;
 }
 
 .date_cv span {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 8px;
  background: rgba(42, 77, 155, 0.1);
  border-radius: 8px;
  font-weight: 500;
  font-style: normal;
 }
 
 
 
 
 
 .cv-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #1e2a47; /* deep professional blue-gray */
  margin: 1em 0 0.5em;
  position: relative;
  letter-spacing: 0.5px;
 }
 
 .cv-title::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background: #2a4d9b; /* accent line */
  margin-top: 6px;
  border-radius: 2px;
 }
 
 
 .cv-list {
 list-style: none;/* remove default bullets */
 padding: 0;
 margin: 0.8em 0;
 }
 
 .cv-list li {
 position: relative;
 padding-left: 1.5em;/* space for custom marker */
 margin-bottom: 0.6em;
 font-size: 1rem;
 color: #333;
 }
 
 .cv-list li::before {
  content: "•"; /* custom bullet */
  position: absolute;
  left: 0;
  top: 0;
  color: #2a4d9b; /* professional accent color */
  font-weight: bold;
  font-size: 1.1rem;
  line-height: 1;
 }
 
 .cv-list strong {
  color: #1e2a47;
  font-weight: 600;
 }
 
 .cv-list span {
  display: inline-block;
  margin-left: 6px;
  padding: 2px 8px;
  font-size: 0.9rem;
  background: rgba(42, 77, 155, 0.08);
  border-radius: 6px;
  font-style: italic;
  color: #2a4d9b;
 }
 
 
 .languages {
  margin: 1.5em 0;
 }
 
 .languages h3 {
  font-size: 1.3rem;
  margin-bottom: 0.8em;
  color: #222;
  border-bottom: 2px solid #0077cc;
  display: inline-block;
  padding-bottom: 4px;
 }
 
 .language-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 1.2em; /* space between languages */
  flex-wrap: wrap; /* responsive */
 }
 
 .language-list li {
  background: #f4f8fc;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 0.95rem;
  color: #333;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
  transition: background 0.3s ease;
 }
 
 .language-list li:hover {
  background: #e2f0ff;
 }