/* Use the common section-heading class */
.section-heading {
  font-size: 24px;
  font-weight: bold;
  color: #333;
  margin-bottom: 30px;
  text-align: center;
  font-family: 'Georgia', serif;
  letter-spacing: 2px;
  border-bottom: 2px solid #4682b4;
  padding-bottom: 10px;
  transition: color 0.3s ease;
}

.section-heading:hover {
  color: #4682b4;
}

/* CV-specific styles */
#cv {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

.cv-container {
  text-align: center;
  font-family: 'Arial', sans-serif;
  font-size: 18px;
  color: #333;
}

.cv-link {
  color: inherit;
  text-decoration: none;
  font-weight: bold;
  position: relative;
  transition: color 0.3s ease;
  cursor: pointer;
}

.cv-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  background-color: #4682b4;
  left: 0;
  bottom: -2px;
  transition: width 0.3s ease-in-out;
}

.cv-link:hover::after {
  width: 100%;
}