.aboutme-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  padding: 4rem 1rem 6rem;
}

.aboutme-hero h1 {
  font-size: 2.5rem;
  color: #66d9c4;
  margin-bottom: 0.5rem;
}

.aboutme-hero p {
  font-size: 1rem;
  color: #d1d5db;
  line-height: 1.6;
  text-align: left;
}

.aboutme-hero img {
  border-radius: 50%;
  height: 300px;
  width: 300px;
  object-fit: cover;
  object-position: center;
  display: block;
  margin: 0 auto;
  box-shadow: 0 0 20px rgba(0,0,0,0.15);
}

.aboutme-content {
  max-width: 700px;
  text-align: center;
}

.aboutme-content h2 {
  font-size: 1.5rem;
  color: #bf7973;
  margin-top: 2rem;
}

/*--------------------------This is for body styling-------------------------------------*/

.info-card {
    border-top: 2px solid #d1d5db05;
    padding-left: 1rem;
    padding-right: 1rem;
    padding-bottom: 6rem;
}

.testimonial {
  margin-bottom: 2rem;
  background: #2a2b31;
  border-left: 4px solid #66d9c4;
  padding: 1rem 1.5rem;
  border-radius: 0.5rem;
}

.testimonial .quote {
  font-style: italic;
  font-size: 1.05rem;
  color: #e0e0e0;
  margin-bottom: 0.5rem;
}

.testimonial .author {
  font-size: 0.9rem;
  color: #bf7973;
  font-weight: 600;
  text-align: right;
}









/*-----------------------------------------------------------------------------------------------------------------------------------------------------*/
/*--------------------------------------------------This is for @media 768px (tablet and higher) styling-----------------------------------------------*/
/*-----------------------------------------------------------------------------------------------------------------------------------------------------*/
@media (min-width: 933px) {
  .aboutme-hero {
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    text-align: left;
  }

  .aboutme-content {
    text-align: left;
  }

  .social-links {
    justify-content: center;
  }
}