body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    background: #f0f2f5;
    color: #333;
  }
  .cv-container {
    display: flex;
    max-width: 1000px;
    margin: 2em auto;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
  }
  .sidebar {
    background: #35495e;
    color: white;
    width: 30%;
    padding: 2em;
  }
  .sidebar h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8em;
    margin-bottom: 0.2em;
  }
  .sidebar p, .sidebar a {
    color: #cfd8dc;
    font-size: 0.9em;
    line-height: 1.5;
  }
  .content {
    padding: 2em;
    width: 70%;
  }
  .content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2em;
    margin-top: 0;
    color: #2c3e50;
  }
  .section {
    margin-bottom: 1.8em;
  }
  .section h3 {
    color: #35495e;
    margin-bottom: 0.4em;
  }
  .section p, .section li {
    font-size: 0.95em;
    margin: 0.2em 0;
  }
  ul {
    padding-left: 1.2em;
  }