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

body {
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f9f9f9;
}

.container {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px 0;
}

header {
  background: #333;
  color: #fff;
  text-align: center;
  padding: 50px 0;
}

header h1 {
  font-size: 3rem;
}

header p {
  font-size: 1.2rem;
}

section {
  padding: 40px 0;
}

.about, .projects, .contact {
  background-color: #fff;
  margin-bottom: 20px;
  border-radius: 5px;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.projects .project-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.project h3 {
  margin-bottom: 5px;
  color: #007BFF;
}

.contact a {
  color: #007BFF;
  text-decoration: none;
}

footer {
  background: #222;
  color: #bbb;
  text-align: center;
  padding: 20px 0;
}

/* Responsive layout */
@media (min-width: 600px) {
  .projects .project-list {
    flex-direction: row;
    justify-content: space-between;
  }
  .projects .project {
    width: 48%;
  }
}
