@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');
body {
  margin: 0;
  font-family: 'Roboto', sans-serif;
  background-color: #f5f7fa;
  color: #333;
}
.resume-container {
  display: flex;
  max-width: 1000px;
  margin: 40px auto;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
}
.sidebar {
  background-color: #2c3e50;
  color: white;
  padding: 30px;
  width: 30%;
}
.sidebar h2 {
  margin-top: 0;
  font-size: 2em;
}
.content {
  padding: 30px;
  width: 70%;
}
.section {
  margin-bottom: 30px;
}
.section h3 {
  background-color: #3498db;
  color: white;
  padding: 10px;
  border-radius: 5px;
  text-decoration: underline;
}
ul {
  padding-left: 20px;
}
li {
  margin-bottom: 8px;
}