/* General page styles */
.about-page {
    background-color: #f9f9f9; /* Light background for the About page */
    padding-top: 2rem;
  }
  
  .about-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
  }
  
  .sidebar {
    flex: 1 1 300px; /* Sidebar takes 300px width */
  }
  
  .main-content {
    flex: 2 1 700px; /* Main content takes more space */
  }
  
  /* Bio Section */
  .bio {
    margin-bottom: 2rem;
  }
  
  .bio-img {
    width: 100%;
    max-width: 250px;
    height: auto;
    display: block;
    margin: 0 auto 1rem;
    border-radius: 8px;
  }
  
  /* Skills Section */
  .skills h2, .bio h2 {
    font-size: 1.8rem;
    color: #1b3a2f;
  }
  
  .skills ul {
    list-style-type: none;
  }
  
  .skills li {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
  }
  
  /* Main Content Sections */
  .main-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
  
  .main-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
  }
  
  /* Education Section */
  .education {
    margin-bottom: 2rem;
  }
  
  /* Work Experience Section */
  .work-experience ul {
    list-style-type: none;
  }
  
  .work-experience li {
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }
  
  .work-experience li ul {
    margin-left: 20px;
  }
  
  .work-experience li ul li {
    font-size: 1rem;
  }
  
  /* Footer */
  footer {
    text-align: center;
    padding: 1rem;
    background-color: #1b3a2f;
    color: white;
    margin-top: 2rem;
    font-family: 'Helvetica', sans-serif;
  }
  
  footer ul {
    list-style: none;
    padding: 0;
  }
  
  footer li {
    display: inline;
    margin-right: 1rem;
  }
  
  footer a {
    color: white;
    text-decoration: none;
  }
  
  footer a:hover {
    text-decoration: underline;
  }
  
  /* Mobile Styling */
  @media screen and (max-width: 768px) {
    .about-content {
      flex-direction: column; /* Stack sidebar and main content vertically */
    }
  
    .sidebar, .main-content {
      flex: 1 1 100%; /* Make both sections full width on small screens */
    }
  }