body {
  font-family: Arial, sans-serif;
  background: #f4f4f4;
  color: #333;
}

.container {
  display: flex;
  max-width: 1000px;
  margin: 40px auto;
  background: white;
}

/* Left column */
.left {
  width: 35%;
  background: #2c3e50;
  color: #fff;
  padding: 20px;
}

.profilepic {
  text-align: center;
  margin-bottom: 40px;
}

.profilepic img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: #fff;
}

.section h2 {
  font-size: 16px;
  border-bottom: 1px solid #fff;
  margin-bottom: 10px;
  padding-bottom: 5px;
}

.left p, .left li {
  font-size: 14px;
  line-height: 1.5;
}

.left a {
  color: #1abc9c;
  font-weight: bold;
}

/* Right column */
.right {
  width: 65%;
  padding: 20px 30px;
}

.right h2 {
  font-size: 18px;
  color: #2c3e50;
  border-bottom: 2px solid #2c3e50;
  margin-bottom: 10px;
  padding-bottom: 5px;
}

.right p, .right li {
  font-size: 14px;
  line-height: 1.6;
}

ul {
  padding-left: 20px;
}

a {
  font-weight: bold;
  color: #2980b9;
  text-decoration: none;
  transition: color 0.3s ease,text-decoration 0.3s ease;
}
a:hover{
    text-decoration: underline;   
}




