* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background-color: #000000;
  color: #ffffff;
  line-height: 1.6;
}

.about-section {
  margin-top: 2rem;
  padding: 4rem 2rem;
  background-color: #111111;
}

.about-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: start;
}

.profile-images {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.profile-image {
  width: 100%;
 
  transition: transform 0.3s ease;
  box-shadow: 0 0 20px rgba(0,0,0,0.3);
}

.profile-image.main {
  margin-top: 1rem;
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.profile-image:hover {
  transform: scale(1.02);
}

.about-text h2 {
  color: #ffffff;
  margin-bottom: 1.5rem;

}

.about-text p {
  margin-bottom: 2rem;
  line-height: 1.8;
  color: #ffffff;

}

h3 {
  text-align: center;
}

.accomplishments {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
  color: #ffffff;
}

.accomplishments li {
  padding: 1.5rem;
  background: rgba(155, 135, 245, 0.1);
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.accomplishments li:hover {
  border-color: #83aaf4;
  box-shadow: 0 0 20px rgba(29, 143, 242, 0.3);
}

@media (max-width: 768px) {
  .about-content {
    grid-template-columns: 1fr;
  }

  .profile-images {
    max-width: 600px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .about-section {
    padding: 2rem 1rem;
  }

  .image-grid {
    grid-template-columns: 1fr;
  }

  .accomplishments {
    grid-template-columns: 1fr;
  }
}