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

/* Body Styling */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f3f4f6;
  color: #333;
  line-height: 1.6;
}

/* Container */
.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Header */
header {
  text-align: center;
  margin-bottom: 20px;
}

header h1 {
  font-size: 2.5rem;
  color: #0078d4;
  font-weight: 600;
}

header p {
  font-size: 1.2rem;
  color: #666;
}

/* Navigation */
nav {
  margin: 20px 0;
  border-bottom: 2px solid #e1e1e1;
}

nav ul {
  list-style-type: none;
  display: flex;
  justify-content: center;
}

nav ul li {
  margin: 0 15px;
}

nav a {
  text-decoration: none;
  color: #0078d4;
  font-weight: 500;
}

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

/* Section Titles */
h2 {
  font-size: 2rem;
  color: #0078d4;
  font-weight: bold;
  margin-top: 25px;
  margin-bottom: 15px;
}

/* Subheadings */
h3 {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 10px;
}

/* Text and List Styling */
p, ul {
  font-size: 1.1rem;
  margin: 10px 0;
  color: #666;
}

ul {
  list-style-type: disc;
  padding-left: 20px;
}

ul li {
  margin: 5px 0;
}

/* Job and Education Blocks */
.education, .job {
  margin-bottom: 20px;
}
