/* About Me Page */
.about-me {
    padding: 100px 0;
    background-color: #f9f9f9;
  }
  
  .section-title {
    font-size: 3rem;
    text-align: center;
    color: #333;
    margin-bottom: 20px;
  }
  
  .about-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 50px 0;
  }
  
  /* About Image */
  .about-image {
    flex: 1;
    margin-right: 20px;
  }
  
  .about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }
  
  /* About Text */
  .about-text {
    flex: 2;
  }
  
  .about-text p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
  }
  
  /* Skills Section */
  .skills-title {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin: 50px 0 20px;
  }
  
  .skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    justify-items: center;
  }
  
  /* Skill Item */
  .skill {
    text-align: center;
  }
  
  .skill img {
    margin-bottom: 10px;
  }
  
  .skill h3 {
    font-size: 1rem;
    color: #333;
  }
  
  /* Media Queries */
  @media (max-width: 768px) {
    .section-title {
      font-size: 2.5rem;
    }
  
    .about-text p {
      font-size: 1rem;
    }
  
    .skills-title {
      font-size: 2rem;
    }
  }
  