/* Global Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Base Styles */
body {
  font-family: Arial, Helvetica, sans-serif;
  background-color: #f4f6f8;
  color: #333;
  line-height: 1.6;
  
}

/* Header */
.header {
  display: flex;
  justify-content: space-between;
  background: #ffffff;
  padding: 20px;
  border-bottom: 3px solid #2c7be5;
}

.header h1 {
  color: #2c7be5;
}

.role {
  font-weight: bold;
  margin-top: 5px;
}

/* Navigation */
.nav {
  background: #2c7be5;
  padding: 10px;
  text-align: center;
}

.nav a {
  color: white;
  margin: 0 15px;
  text-decoration: none;
  font-weight: bold;
}

.nav a:hover {
  text-decoration: underline;
}

/* Sections */
.section {
  background: #ffffff;
  margin: 20px;
  padding: 20px;
  border-radius: 6px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.section h2 {
  margin-bottom: 15px;
  border-bottom: 2px solid #ddd;
  padding-bottom: 5px;
}

/* Lists */
ul {
  margin-left: 20px;
}

/* Footer */
.footer {
  text-align: center;
  padding: 15px;
  background: #2c7be5;
  color: white;
}

.footer .div {
  text-align: left;
  padding: 15px;
  background: #2c7be5;
  color: white;
}
