body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
  }
  
  main {
    flex: 1; /* This ensures the main content takes up available space */
  }
  
  .about__wrapper {
    margin-bottom: 40px; /* Adds space between the content and the footer */
  }
  
  footer {
    background-color: var(--bg-body2);
    padding-block: 40px;
    margin-top: auto; /* Pushes the footer to the bottom */
  }
  


.profile-pic {
    background-image: url('https://placehold.co/100x100');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto;
  }

  .about__wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

  .about__info {
    background-color: var(--bg-body2);
    padding: 40px;
    border-radius: 10px;
  }

  .about__contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .about__contact-item {
    display: flex;
    align-items: center;
    background: var(--bg-body2);
    padding: 10px;
    border-radius: 5px;
  }

  .about__contact-item i {
    margin-right: 10px;
    color: var(--accent);
  }

  .about__skills {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .about__skills-item {
    background-color: var(--bg-body2);
    padding: 20px;
    border-radius: 5px;
    text-align: center;
  }