* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: linear-gradient(120deg, #f9e6ff, #e0f7ff);
  color: #333;
  min-height: 100vh;
}

header {
  text-align: center;
  padding: 50px 20px;
  background: #6c63ff;
  color: white;
  border-bottom: 4px solid #4a47a3;
}

header h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

header p {
  font-size: 1.2rem;
}

section {
  padding: 40px 20px;
  text-align: center;
}

.about p {
  max-width: 600px;
  margin: 10px auto;
  font-size: 1.1rem;
  line-height: 1.6;
}

.projects {
  background: white;
  border-radius: 20px;
  margin: 30px auto;
  max-width: 800px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.project-card {
  margin: 20px;
  padding: 20px;
  border-bottom: 1px solid #eee;
}

.project-card:last-child {
  border-bottom: none;
}

footer {
  text-align: center;
  padding: 20px;
  background: #6c63ff;
  color: white;
  font-weight: 500;
  border-top: 4px solid #4a47a3;
}
