body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  background: #f9f9f9;
  color: #333;
}

header {
  background: #1e1e2f;
  color: white;
  padding: 1em 2em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1.5em;
  padding-left: 0;
  margin: 0;
}

nav a {
  color: #fff;
  text-decoration: none;
}

.hero {
  background: linear-gradient(to right, #6a11cb, #2575fc);
  color: white;
  text-align: center;
  padding: 5em 2em;
}

.hero-content h1 {
  font-size: 2.8em;
  margin: 0.2em 0;
  font-weight: bold;
}

.hero-content h2 {
  font-size: 1.5em;
  font-weight: 400;
  margin-bottom: 0.5em;
  color: #f0f0f0;
}

.hero-content p {
  font-size: 1.1em;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}



section {
  padding: 2em;
  max-width: 900px;
  margin: auto;
}

.cv-button {
  display: inline-block;
  padding: 0.5em 1em;
  background: #2575fc;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  margin-top: 1em;
}

.project {
  background: white;
  padding: 1em;
  border-left: 4px solid #2575fc;
  margin-bottom: 1em;
}

form input, form textarea {
  width: 100%;
  padding: 0.75em;
  margin-bottom: 1em;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: inherit;
}

form button {
  background: #2575fc;
  color: white;
  border: none;
  padding: 0.75em 2em;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1em;
}

footer {
  text-align: center;
  padding: 1em;
  background: #1e1e2f;
  color: white;
}
.profile-img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin: 1em auto;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
