/* About Page Styles */
.about-page {
  padding-top: 12vh;
  padding-bottom: 80px;
  min-height: calc(100vh - 80px);
}

@keyframes fadeSlideIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.content-box,
.profile-image,
.who-section,
.goals-section,
.values-section,
.resume-box {
  opacity: 0;
  animation: fadeSlideIn 0.6s ease-out forwards;
}

.content-box { animation-delay: 0.3s; }
.profile-image { animation-delay: 0.4s; }
.who-section { animation-delay: 0.5s; }
.goals-section { animation-delay: 0.6s; }
.values-section { animation-delay: 0.7s; }
.resume-box { animation-delay: 0.8s; }

.about-section {
  max-width: 1400px;
  margin: 0 10rem;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 2rem;
  align-items: start;
}

.about-container {
  width: 100%;
}

.content-box {
  background-color: rgba(248, 248, 255, 0.98);
  padding: 1.5rem;
  position: relative;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(116, 92, 151, 0.1);
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) 2fr;
  gap: 2rem;
  align-items: start;
}

.profile-section {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.profile-image {
  width: 300px;
  height: 300px;
  margin: 0 auto 1rem auto;
  border-radius: 50%;
  overflow: hidden;
}

.profile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 30% 5%;
  display: block;
}

.location {
  text-align: center;
  font-size: 1.2rem;
  color: #745C97;
  font-family: 'Archivo', sans-serif;
  margin-bottom: 2rem;
}

.education {
  text-align: left;
  font-family: 'Archivo', sans-serif;
  margin-bottom: 2rem;
  margin-top: 1rem;
  padding-left: 1rem;
  padding-right: 1rem;
}

.education h3 {
  color: #333333;
  margin-bottom: 0.4rem;
  font-size: 1.3rem;
}

.education p {
  margin: 0.25rem 0;
  color: #333333;
}

.education .university {
  margin-bottom: 0.5rem;
}

.education .university strong {
  color: #92B4D2;
  font-size: 1.1rem;
}

.education .university i {
  color: #92B4D2;
  margin-left: 0.3rem;
  font-size: 0.9rem;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  font-family: 'Archivo', sans-serif;
  color: #333333;
}

.who-section, .goals-section, .values-section {
  margin-bottom: 1.5rem;
}

.who-section h2, .goals-section h2, .values-section h2 {
  color: #745C97;
  margin-bottom: 1rem;
  font-size: 1.8rem;
}

.who-section p {
  line-height: 1.6;
  color: #333333;
}

.about-content ul {
  list-style: none;
  padding: 0;
  color: #333333;
}

.about-content ul li {
  margin-bottom: 0.8rem;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
  font-family: 'Archivo', sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
}

.about-content ul li:before {
  content: "•";
  color: #745C97;
  position: absolute;
  left: 0;
  font-size: 1.2rem;
}

.resume-box {
  background-color: rgba(248, 248, 255, 0.98);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(116, 92, 151, 0.1);
  position: sticky;
  top: 2rem;
  text-align: center;
  height: fit-content;

}

.resume-box h2 {
  color: #745C97;
  margin-bottom: 2rem;
  font-size: 2rem;
}

.resume-options {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.resume-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 2rem 1.5rem;
  background-color: #745C97;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.icon-container {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
}

.resume-button:hover {
  background-color: #B8B8FF;
  transform: translateY(-3px);
  text-decoration: none;
  color: white;
}

.resume-button i {
  font-size: 1.8rem;
  color: white;
}

.resume-button span {
  font-family: 'Archivo', sans-serif;
  font-size: 1.1rem;
}

@keyframes fadeSlideIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .about-section {
    grid-template-columns: 1fr;
  }

  .resume-box {
    position: static;
    max-width: 400px;
    margin: 2rem auto 0;
  }
}

@media (max-width: 768px) {
  .about-container {
    grid-template-columns: 1fr;
  }
  
  .resume-box {
    position: relative;
    top: 0;
    max-width: 400px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .content-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .profile-section {
    margin-bottom: 1rem;
  }


  .about-container {
    grid-template-columns: 1fr;
  }
  
  .resume-box {
    position: relative;
    top: 0;
  }
}