* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background-color: #f4f6f8;
  color: #333;
}

.cv {
  display: flex;
  max-width: 1100px;
  margin: 40px auto;
  background-color: #ffffff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
}

/* LEFT COLUMN */
.sidebar {
  width: 30%;
  background-color: #eef3fa;
  padding: 30px;
}

.name {
  font-size: 26px;
  margin-bottom: 30px;
}

.sidebar h2 {
  font-size: 18px;
  margin-bottom: 10px;
}

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

.sidebar ul {
  padding-left: 18px;
}

.sidebar a {
  color: #1a73e8;
  text-decoration: none;
}

.sidebar a:hover {
  text-decoration: underline;
}

/* RIGHT COLUMN */
.content {
  width: 70%;
  padding: 40px;
}

.content h2 {
  font-size: 22px;
  margin-bottom: 15px;
}

.content p,
.content li {
  font-size: 15px;
  line-height: 1.6;
}

.content a {
  color: #1a73e8;
  text-decoration: none;
}

.content a:hover {
  text-decoration: underline;
}

.block {
  margin-bottom: 35px;
}

.education-item {
  margin-bottom: 15px;
}

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

.education-item span {
  font-size: 13px;
  color: #777;
}