* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f9;
    color: #333;
    line-height: 1.6;
  }
  
  .container {
    display: flex;
    max-width: 1200px;
    margin: 20px auto;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    border-radius: 8px;
  }
  
  .sidebar {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 20px;
    width: 30%;
    text-align: center;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
  }
  
  .profile img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 4px solid #ecf0f1;
  }
  
  .profile h1 {
    font-size: 24px;
    margin: 10px 0 5px;
  }
  
  .profile h3 {
    font-size: 16px;
    color: #95a5a6;
    margin-bottom: 20px;
  }
  
  .contact-info, .skills {
    margin: 20px 0;
  }
  
  .contact-info h2, .skills h2 {
    font-size: 18px;
    color: #ecf0f1;
    border-bottom: 2px solid #95a5a6;
    padding-bottom: 5px;
  }
  
  .contact-info p, .skills ul {
    margin: 10px 0;
  }
  
  .skills ul {
    list-style: none;
    padding-left: 0;
  }
  
  .skills li {
    background-color: #34495e;
    margin-bottom: 8px;
    padding: 10px;
    border-radius: 5px;
  }
  
  .main-content {
    padding: 30px;
    width: 70%;
  }
  
  .section {
    margin-bottom: 30px;
  }
  
  .section h2 {
    font-size: 24px;
    border-bottom: 2px solid #2c3e50;
    padding-bottom: 5px;
    margin-bottom: 20px;
  }
  
  .job {
    margin-bottom: 20px;
  }
  
  .job h3 {
    font-size: 20px;
    margin-bottom: 5px;
  }
  
  .job p {
    margin-bottom: 10px;
  }
  
  .section p {
    font-size: 16px;
  }
  
  .section strong {
    font-weight: bold;
  }
  
  