/* CV Stylesheet */
body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  background: #f5f5f5;
  color: #333;
}

header {
  background: lightcoral;
  color: #fff;
  text-align: center;
  padding: 30px 20px;
}

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

header p {
  margin: 10px 0 0 0;
  font-size: 1rem;
}

header a {
  color: #fff;
  text-decoration: underline;
}

section {
  background: #fff;
  margin: 20px auto;
  padding: 20px 30px;
  border-radius: 10px;
  width: 90%;
  max-width: 1000px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

section h2 {
  color: lightcoral;
  margin-bottom: 15px;
  font-size: 1.8rem;
  border-bottom: 2px solid lightcoral;
  display: inline-block;
  padding-bottom: 5px;
}

section h3 {
  margin: 10px 0 5px 0;
  color: #333;
}

ul {
  list-style-type: disc;
  margin-left: 20px;
}

.skill-bar {
  margin-bottom: 15px;
}

.skill-bar p {
  display: flex;
  justify-content: space-between;
  font-weight: 500;
  margin-bottom: 5px;
}

.bar {
  width: 100%;
  height: 20px;
  background: #ddd;
  border-radius: 10px;
  overflow: hidden;
}

.progress {
  height: 100%;
  background: lightcoral;
  border-radius: 10px;
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  background: lightcoral;
  color: #fff;
  margin-top: 20px;
}

/* Responsive */
@media (max-width: 768px) {
  header h1 {
    font-size: 2rem;
  }
  section {
    padding: 15px 20px;
  }
  .skill-bar p {
    font-size: 0.9rem;
  }
}