* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Arial", sans-serif;
}

html,
body {
  height: 100%;
}

body {
  background-color: #f5f5f5;
  color: #333;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
}

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

header {
  background-color: #2c3e50;
  color: white;
  padding: 2rem 0;
  text-align: center;
}

.header-content {
  max-width: 800px;
  margin: 0 auto;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.subtitle {
  font-size: 1.2rem;
  color: #ecf0f1;
}

.social-link {
  color: #ecf0f1;
  text-decoration: none;
  margin-left: 0.5rem;
  transition: color 0.3s ease;
}

.social-link:hover {
  color: #0077b5;
}

.social-link i {
  margin-right: 0.3rem;
}

.projects {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

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

.project-card {
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  min-width: 0;
}

.project-card:hover {
  transform: translateY(-5px);
}

.project-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: center;
}

.project-content {
  padding: 1.5rem;
}

.project-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #2c3e50;
}

.project-description {
  color: #777;
  margin-bottom: 1rem;
  font-size: 0.85rem;
  line-height: 1.4;
  list-style: none;
  padding-left: 0;
}

.project-description li {
  position: relative;
  padding-left: 1.2rem;
  margin-bottom: 0.6rem;
}

.project-description li:before {
  content: "•";
  color: #999;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.project-description li:last-child {
  margin-bottom: 0;
}

.tech-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tech-tag {
  background-color: #e0e0e0;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  color: #555;
}

footer {
  background-color: #2c3e50;
  color: white;
  text-align: center;
  padding: 2rem;
  flex-shrink: 0;
}

.about-me {
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
  color: #666;
}

.about-me h2 {
  color: #666;
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.about-me h3 {
  color: #777;
  font-size: 1.3rem;
  margin: 2.5rem 0 1rem;
  padding-top: 1rem;
  border-top: 1px solid #eee;
  font-weight: 500;
}

.about-me h3:first-of-type {
  margin-top: 1.5rem;
  border-top: none;
  padding-top: 0;
}

.about-me h4 {
  color: #888;
  font-size: 1.1rem;
  margin: 1rem 0;
  font-weight: 500;
}

.about-intro {
  font-size: 1.1rem;
  line-height: 1.6;
  /* color: #444; */
  margin-bottom: 2rem;
}

.about-section {
  margin-bottom: 2rem;
}

.about-section p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.about-list {
  list-style: none;
  padding-left: 0;
  margin: 1rem 0;
}

.about-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.8rem;
  color: #666;
  line-height: 1.5;
}

.about-list li:before {
  content: "•";
  color: #888;
  position: absolute;
  left: 0;
  font-weight: bold;
}
