* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}

body {
  background-color: #f4f6f8;
  color: #333;
  line-height: 1.6;
}

header {
  background-color: #1c2833;
  color: white;
  text-align: center;
  padding: 60px 20px;
}

header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}

header p {
  font-size: 1.1rem;
  font-style: italic;
}

section {
  max-width: 900px;
  margin: 40px auto;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.05);
}

section h2 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.about {
  background: white;
}

.education {
  background-color: #d6ebff;
}

.edu-item {
  background: white;
  padding: 12px;
  margin: 12px auto;
  border-radius: 8px;
  width: 60%;
  font-weight: 500;
}

.skills {
  background-color: #fff2cc;
}

.skill-item {
  background: white;
  padding: 12px;
  margin: 12px auto;
  border-radius: 8px;
  width: 60%;
  font-weight: 600;
  text-transform: uppercase;
}

.projects {
  background-color: #ebe6ff;
}

.project-item {
  background: white;
  padding: 12px;
  margin: 12px auto;
  border-radius: 8px;
  width: 70%;
  font-style: italic;
}

.contact {
  background-color: #d9f7e8;
}

.contact-item {
  background: white;
  padding: 12px;
  margin: 12px auto;
  border-radius: 8px;
  width: 70%;
}

footer {
  background-color: #1c2833;
  color: white;
  text-align: center;
  padding: 15px;
  font-size: 0.9rem;
  margin-top: 30px;
}
