/* style.css */

/* General body styling */
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  background-color: #f4f4f4;
  color: #333;
}

/* Header section */
header {
  background-color: #007acc;
  color: white;
  padding: 20px;
  text-align: center;
}

/* Profile image */
header img {
  border-radius: 50%;
  width: 150px;
  height: 150px;
  object-fit: cover;
  margin-top: 15px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

/* Navigation bar */
nav {
  background-color: #005f99;
  padding: 10px 0;
}

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

nav ul li {
  margin: 0 15px;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
}

nav ul li a:hover {
  text-decoration: underline;
}

/* Main content */
main {
  padding: 20px;
  max-width: 900px;
  margin: auto;
  background: white;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Sections */
section {
  margin-bottom: 30px;
}

/* Headings */
h2 {
  color: #007acc;
  border-bottom: 2px solid #007acc;
  padding-bottom: 5px;
  margin-bottom: 10px;
}

/* Lists */
ul {
  list-style-type: square;
  padding-left: 20px;
}

/* Links */
a {
  color: #007acc;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Footer */
footer {
  text-align: center;
  padding: 15px;
  background-color: #007acc;
  color: white;
  position: relative;
  bottom: 0;
  width: 100%;
}

/* Responsive tweak (optional) */
@media (max-width: 600px) {
  nav ul {
    flex-direction: column;
    align-items: center;
  }

  nav ul li {
    margin: 10px 0;
  }
}
