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


body {
  font-family: Arial, sans-serif;
  background-color: #ffffff;
  color: #222;
  line-height: 1.6;
}


.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px;
  background-color: #f4f4f4;
  flex-wrap: wrap;
}

.header-text {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.profile-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
}


section {
  padding: 30px;
}

h2 {
  margin-bottom: 10px;
}

.list {
  list-style: disc;
  padding-left: 20px;
}

.list li {
  margin-bottom: 12px;
}

.list li p {
  margin-top: 4px;
}

.skills-block p {
  margin-bottom: 8px;
}


a {
  color: #0066cc;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}


button {
  padding: 8px 12px;
  cursor: pointer;
}


.download-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 20px;
  background-color: #222;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.download-btn:hover {
  background-color: #555;
}


footer {
  text-align: center;
  padding: 20px;
  background-color: #f4f4f4;
}


body.dark {
  background-color: #121212;
  color: #f1f1f1;
}

body.dark header,
body.dark footer {
  background-color: #1f1f1f;
}

body.dark a {
  color: #4da3ff;
}

body.dark .download-btn {
  background-color: #f1f1f1;
  color: #121212;
}


@media (max-width: 768px) {
  .header {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
}


.project-link {
  font-weight: bold;
  color: #222;
}

.project-link:hover {
  text-decoration: underline;
}

body.dark .project-link {
  color: #f1f1f1;
}


.education-item {
  margin-bottom: 18px;
}

.edu-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.edu-title {
  max-width: 75%;
}

.edu-date {
  white-space: nowrap;
  font-weight: bold;
}

.edu-achievement {
  margin-top: 4px;
  font-size: 0.9rem;
  color: #555;
}

body.dark .edu-achievement {
  color: #ccc;
}
