body {
  font-family: 'Segoe UI', Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #e9e2dd;
  color: #333;
  line-height: 1.6;
}

header {
  background: linear-gradient(135deg, #ffc0f9, #d9cea0);
  color: #420337;
  padding: 20px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

header h1 {
  margin: 0;
  font-size: 1.8rem;
}

header nav ul {
  list-style: none;
  padding: 0;
  margin: 15px 0 0;
  display: flex;
  justify-content: center;
  gap: 20px;
}

header nav ul li a {
  color: #840959;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

header nav ul li a:hover {
  color: #5f003a;
}

section {
  padding: 60px 20px;
  max-width: 1000px;
  margin: auto;
}

section.alt {
  background: #f0f2f9;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}

h1, h2, h3 {
  margin-bottom: 15px;
  font-weight: 700;
  color: #222;
}

.skills-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  list-style: none;
}

.skills-list li {
  background: #911869;
  color: #fff;
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 0.9rem;
  transition: transform 0.2s;
}

.skills-list li:hover {
  transform: scale(1.05);
}

.btn, button {
  display: inline-block;
  padding: 10px 20px;
  background: #4f46e5;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
}

.btn:hover, button:hover {
  background: #4338ca;
}

.project {
  background: #fff;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: transform 0.2s;
}

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

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

.contact-form input:focus, .contact-form textarea:focus {
  border-color: #4f46e5;
  outline: none;
  box-shadow: 0 0 0 3px rgba(79,70,229,0.2);
}

footer {
  text-align: center;
  padding: 20px;
  background: #333;
  color: #fff;
  margin-top: 20px;
}
