* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Roboto', sans-serif;
    background-color: #f4f4f9;
    color: #333;
  }
  
  .profile-container {
    width: 80%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
  }
  
  header {
    text-align: center;
    margin-bottom: 30px;
  }
  
  .profile-picture img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  }
  
  .name {
    font-size: 2.5rem;
    color: #333;
  }
  
  .title {
    font-size: 1.2rem;
    color: #777;
  }
  
  section {
    margin-bottom: 40px;
  }
  
  h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #333;
  }
  
  .about p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
  }
  
  .skills .skill-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }
  
  .skills .skill-list span {
    background-color: #e0e7ff;
    color: #1e3a8a;
    padding: 10px 15px;
    border-radius: 5px;
    font-weight: 500;
  }
  
  .projects .project-card {
    background-color: #fff;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }
  
  .project-card h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: #1e40af;
  }
  
  .project-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
  }
  
  .contact p {
    font-size: 1rem;
    margin-bottom: 10px;
  }
  
  .contact a {
    color: #2563eb;
    text-decoration: none;
  }
  
  footer {
    text-align: center;
    padding: 20px;
    background-color: #1e3a8a;
    color: #fff;
    border-radius: 8px;
    margin-top: 30px;
  }
  
  footer p {
    font-size: 0.9rem;
  }
  