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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  line-height: 1.6;
  background-color: #fff;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

section {
  margin-bottom: 4rem;
}

h2 {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

p {
  color: #555;
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: inherit;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4rem;
}

header h1 {
  font-size: 1.25rem;
  font-weight: 500;
}

nav ul {
  display: flex;
  list-style: none;
}

nav ul li {
  margin: 0 0.25rem;
  color: #666;
}

nav a {
  color: #666;
}

nav a:hover {
  color: #333;
}

.intro {
  display: flex;
  gap: 2rem;
  margin-bottom: 4rem;
}

.intro-text {
  flex: 2;
}

.intro h2 {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.profile-image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}

.profile-image img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 4px solid #f5f5f5;
  object-fit: cover;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.tech-icons {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(70px, 1fr));
  gap: 1.5rem;
}

.tech-icon {
  width: 3rem;
  height: 3rem;
  background-color: #f5f5f5;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.75rem;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.card {
  border: 1px solid #eee;
  border-radius: 0.5rem;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.card:hover {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.card-content {
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.card h3 {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.card p {
  font-size: 0.875rem;
  color: #666;
  margin-bottom: 0;
}

.card i {
  color: #ccc;
  font-size: 0.75rem;
}

.card:hover i {
  color: #666;
}

.connect p {
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.social-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border: 1px solid #eee;
  border-radius: 0.25rem;
  font-size: 0.875rem;
  color: #555;
  transition: all 0.2s ease;
}

.social-button:hover {
  background-color: #f5f5f5;
  color: #333;
}

footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid #eee;
  font-size: 0.875rem;
  color: #666;
}

.footer-icons {
  display: flex;
  gap: 1rem;
}

.footer-icons a {
  color: #666;
}

.footer-icons a:hover {
  color: #333;
}

@media (max-width: 768px) {
  .intro {
    flex-direction: column;
  }

  .profile-image {
    justify-content: center;
    margin-top: 2rem;
  }

  .tech-icons {
    grid-template-columns: repeat(auto-fill, minmax(60px, 1fr));
  }

  .social-links {
    flex-direction: column;
  }

  .social-button {
    width: 100%;
  }
}
