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

body {
  font-family: 'Poppins', sans-serif;
  background-color: #fafafa;
  color: #111;
  line-height: 1.6;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: #fff;
  border-bottom: 1px solid #eee;
}

.logo {
  font-weight: 700;
  font-size: 1.2rem;
}

.socials a {
  color: #000;
  margin-left: 1rem;
  font-size: 1.1rem;
  transition: all 0.3s;
  text-decoration: none;
}

.socials a:hover {
  color: #555;
}

.intro {
  text-align: center;
  padding: 3rem 2rem;
  max-width: 700px;
  margin: auto;
}

.intro h1 {
  font-size: 2rem;
  font-weight: 600;
}

.intro p {
  margin-top: 1rem;
  color: #555;
}

.projects {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  padding: 2rem;
  margin-bottom: 2rem;
  max-width: 1100px;
  margin: auto;
}

.project-card {
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 1.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  background-color: #fff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.project-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
  text-align: center;
}

.project-card p {
  font-size: 0.95rem;
  color: #666;
  text-align: center;
}

.cta {
  background: #000;
  color: #fff;
  padding: 3rem 1rem;
  text-align: center;
}

.cta h2 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.cta p {
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.cta a {
  background: #fff;
  color: #000;
  padding: 0.7rem 1.5rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
}

footer {
  padding: 1rem;
  text-align: center;
  font-size: 0.9rem;
  color: #888;
  background-color: #fff;
}

@media (max-width: 500px) {
  .intro h1 {
    font-size: 1.5rem;
  }
  .cta h2 {
    font-size: 1.3rem;
  }
}

@media (max-width: 768px) {
  .projects {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .logo {
    font-size: 1.1rem;
  }

  .socials {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
  }

  .socials a {
    font-size: 1rem;
    margin-left: 0;
  }
}