body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  background: #f9f9f9;
  color: #333;
}

.container {
  width: 85%;
  max-width: 1000px;
  margin: auto;
  padding: 20px;
  background: #fff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  border-radius: 10px;
}

header {
  text-align: center;
  margin-bottom: 30px;
}

.profile-pic {
  width: 150px;
  border-radius: 50%;
  margin-bottom: 15px;
}

h1 {
  margin: 10px 0 5px;
  font-size: 28px;
}

h2 {
  margin: 0 0 10px;
  font-size: 18px;
  color: #666;
}

a {
  color: #0073e6;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.btn {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 15px;
  background: #0073e6;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
}

.btn:hover {
  background: #005bb5;
}

section {
  margin-bottom: 25px;
}

h3 {
  border-bottom: 2px solid #0073e6;
  padding-bottom: 5px;
  margin-bottom: 10px;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}

table, th, td {
  border: 1px solid #ccc;
}

th, td {
  padding: 10px;
  text-align: left;
}

th {
  background: #0073e6;
  color: white;
}

footer {
  text-align: center;
  margin-top: 30px;
  font-size: 14px;
  color: #555;
}
