/* Specific styles for About page */
.intro-section {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2rem;
}


.intro-image img {
  max-width: 250px;
  border-radius: 8px;
  height: auto;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.intro-text h2 {
  margin-top: 0;
  margin-bottom: 5px;
  
  font-size: 4rem;
}

.name-unicode {
  font-size: 1.1rem;
  color: #666;
  margin-top: 0;
  margin-bottom: 15px;
}

.centered-content {
  text-align: center;
}


.awards-section {
  max-width: 600px;
  margin: 0 auto 20px auto;
}

/* Headings within the class */
.awards-section h3, 
.awards-section h4 {
  text-align: center;
}

/* Parent lists: left-aligned and square bullets */
.awards-section ul {
  text-align: left;
  list-style-type: square; 
  padding-left: 20px; /* Optional: gives a nice breathing room indentation */
}

/* Sub-lists: filled circle bullets */
.awards-section ul ul {
  list-style-type: disc; 
  margin-top: 5px;
}



.box {
  border: 1px solid #eaeaea;
  padding: 1.5rem;
  border-radius: 8px;
  background-color: #f8f9fa;
  margin: 1rem auto;
  max-width: 600px;
  text-align: left;
}

.box ul {
  margin: 0;
  padding-left: 1.5rem;
}

.box li {
  margin-bottom: 0.5rem;
}