* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body {
  background: #fffefc;
  color: #333;
  line-height: 1.6;
}

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

header .logo {
  font-size: 1.5rem;
  font-weight: bold;
}

header nav a {
  color: white;
  margin-left: 1.5rem;
  text-decoration: none;
}

.hero {
  text-align: center;
  padding: 4rem 2rem;
  background-color: #f3f3f3;
}

.profile-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin-bottom: 1rem;
}

.projects {
  padding: 3rem 2rem;
  background-color: #fff;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}

.project-card {
  background-color: #fafafa;
  padding: 1rem;
  border: 1px solid #ccc;
  border-radius: 10px;
}

.contact {
  padding: 3rem 2rem;
  background-color: #f5f5f5;
}

.contact form {
  max-width: 500px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact input,
.contact textarea {
  padding: 0.8rem;
  border-radius: 5px;
  border: 1px solid #ccc;
  font-size: 1rem;
}

.contact button {
  background-color: #222;
  color: white;
  border: none;
  padding: 0.8rem;
  border-radius: 5px;
  cursor: pointer;
}

.page-header {
  text-align: center;
  padding: 3rem 2rem;
  background-color: #f3f3f3;
}

.project-list {
  display: flex;
  flex-wrap: wrap;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  justify-content: center;
  padding: 3rem,2rem;
}

.project-card {
  background: #ffffff;
  padding: 1.5rem;
  border: 1px solid #ddd;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.contact-form {
  max-width: 600px;
  margin: auto;
  padding: 2rem;
}

.contact-form form input,
.contact-form form textarea {
  width: 100%;
  margin-bottom: 1rem;
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}

.contact-info {
  margin-top: 2rem;
  text-align: center;
}
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #f4f4f4;
}

.project-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding: 3rem 2rem;
}

.project-card {
  background: #fff;
  padding: 2rem;
  width: 280px;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 20px rgba(0,0,0,0.15);
}

.project-card h3 {
  margin-top: 0;
  color: #333;
}

.project-card p {
  color: #666;
}

.project-card a {
  display: inline-block;
  margin-top: 1rem;
  color: #007BFF;
  text-decoration: none;
}

.project-card a:hover {
  text-decoration: underline;
}

.page-header {
  text-align: center;
  padding: 2rem 1rem;
  background: #121212;
  color: #fff;
}
footer {
  background-color: #222;
  color: white;
  text-align: center;
  padding: 1rem;
}
.site-footer {
  background-color: #111;
  color: #fff;
  text-align: center;
  padding: 0.75rem 0;
  font-size: 0.9rem;
}