  /* Section headings with bottom border */
h2 {
  border-bottom: 3px solid #FFC512;
  display: inline-block;
  padding-bottom: 10px;
}

/* Base styles */
body {
  margin: 0;
  font-family: 'Georgia', serif;
  background-color: #e6e6e6; /* Silver tone */
  color: #333;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background-color: #f8f8f8;
}

.logo {
  height: 80px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

nav a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
  border-bottom: 2px solid transparent;
}

nav a:hover {
  border-bottom: 2px solid #FFC512; /* Sunflower yellow */
}

.intro {
  text-align: center;
  padding: 40px 0;
}

.intro h1 {
  font-size: 3em;
  color: #444;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  padding: 40px;
}

/* Fix: Remove broken/incomplete width */
.profile-img {
  width: 500px;
  height: 500px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Fix: Should be .about, not about */
.about {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 40px;
  padding: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.about .text {
  max-width: 400px;
  text-align: left;
}
