body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(to bottom right, #e0f7fa, #ffe0e0);
  color: #333;
}

.cv-container {
  max-width: 800px;
  margin: 40px auto;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.1);
}

.header {
  text-align: center;
  padding: 40px 20px 20px;
  background: linear-gradient(to right, #00bcd4, #ff4081);
  color: white;
}

.profile-img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #fff;
  margin-bottom: 10px;
}

.title {
  font-size: 1.2em;
  font-weight: 300;
}

.content {
  padding: 30px 40px;
}

.section {
  margin-bottom: 30px;
}

.section h2 {
  color: #00bcd4;
  border-bottom: 2px solid #eee;
  padding-bottom: 5px;
  margin-bottom: 10px;
}

.section i {
  margin-right: 8px;
  color: #ff4081;
}

.item h3 {
  margin: 0;
  font-weight: 600;
}

.item span {
  font-size: 0.9em;
  color: #777;
}

.tags {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tags li {
  background: #ff4081;
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.9em;
}

.contact p {
  margin: 8px 0;
}

.contact i {
  margin-right: 8px;
  color: #00bcd4;
}

@media (max-width: 600px) {
  .content {
    padding: 20px;
  }

  .tags {
    flex-direction: column;
  }
}
