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

/* Body */
body {
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f9f9f9;
  max-width: 900px;       /* Center content with margins */
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
header {
  background: #2c3e50;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
}

header .logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

header .logo img {
  width: 40px;
  height: 40px;
}

header nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

header nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 2.5rem 1rem;
  background: #ecf0f1;
  margin: 1.5rem 0;
  border-radius: 6px;
}

.profile-pic {
  width: 160px;
  border-radius: 50%;
  margin-bottom: 1rem;
  border: 3px solid #2c3e50;
}

/* Sections */
section {
  padding: 2rem 0;
}

section h2 {
  margin-bottom: 1rem;
  color: #2c3e50;
  border-bottom: 2px solid #ddd;
  padding-bottom: 0.5rem;
}

section p {
  margin-bottom: 1rem;
}

/* Projects */
.project {
  margin-bottom: 1rem;
  padding: 1rem;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
}

/* Footer */
footer {
  background: #2c3e50;
  color: white;
  text-align: center;
  padding: 1.5rem;
  margin-top: 2rem;
  border-radius: 6px 6px 0 0;
}

footer .footer-logo img {
  width: 40px;
  margin-bottom: 10px;
}

footer a {
  color: #f1c40f;
  text-decoration: none;
}
