* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  min-height: 100vh;
}

header {
  background: linear-gradient(135deg, #2c5f7f 0%, #1e4a62 100%);
  color: white;
  text-align: center;
  padding: 20px 0 0;
}

header h1 {
  font-size: 28px;
  font-weight: normal;
  margin-bottom: 20px;
  
}

.name-title {
  color: #ffd700;
}

.nav-links{
  background-color: #3b3b3b;
}
nav {
  display: flex;
  justify-content: space-around;
  background: #3b3b3b;
  font-family: sans-serif;
}

nav a {
  color: #fff;
  padding: 1rem 2rem;
  text-decoration: none;
  font-weight: 500;
}

nav {
  display: flex;
  justify-content: space-around;
  background: #3b3b3b;
  font-family: sans-serif;
}

nav a {
  color: #fff;
  padding: 1rem 2rem;
  text-decoration: none;
  font-weight: 500;
}

nav {
  background: rgba(0, 0, 0, 0.329);
  padding: 0;
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  margin: 0;
  padding: 0;
}

nav ul li {
  flex: 1;
  max-width: 250px;
}

nav ul a {
  display: block;
  color: white;
  text-decoration: none;
  padding: 15px 20px;
  text-align: center;
  font-size: 16px;
  border-right: 1px solid rgba(88, 88, 88, 0.2);
  transition: background-color 0.3s ease;
}

.nav-list li:last-child a {
  border-right: none;
}

nav ul a:hover {
  background: rgba(255, 255, 255, 0.1);
}

.main-content {
  max-width: 1200px;
  margin: 30px auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 20px;
}

.card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.card-header {
  background-color: #2c5f7f;
  color: white;
  padding: 15px 20px;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
}

.card-content {
  padding: 25px;
}

.about-section {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 15px;
}

.image-edit {
  width: 120px;
  height: 130px;
  border-radius: 3px;
  object-fit: cover;
  flex-shrink: 0;
}

.resources-list {
  list-style: none;
  padding: 0;
}

.resources-list li {
  margin-bottom: 12px;
  padding-left: 20px;
  position: relative;
}

.resources-list li::before {
  content: "•";
  color: #2c5f7f;
  font-size: 20px;
  position: absolute;
  left: 0;
  top: -2px;
}

.resources-list a {
  color: #0066cc;
  text-decoration: none;
  font-size: 16px;
}

.resources-list a:hover {
  text-decoration: underline;
}

footer {
  background: linear-gradient(135deg, #1e4a62 0%, #2c5f7f 100%);
  color: white;
  text-align: center;
  padding: 20px;
  margin-top: 40px;
}

.footer-content {
  margin-bottom: 10px;
  font-size: 16px;
}

.last-modified {
  font-size: 14px;
  color: #ffd700;
}