@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

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

body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(180deg, #e6f4f1, #dcece8);
  color: #333;
  font-size: 20px;
}

.resume-container {
  display: flex;
  width: 90%;
  max-width: 1000px;
  margin: 40px auto;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  overflow: hidden;
}

.sidebar {
  background-color: #c4d7d1;
  width: 30%;
  padding: 30px 20px;
  color: #1c1c1c;
}

.profile-pic img {
  width: 150px;
  height: 150px;
  border-radius: 70%;
  display: block;
  margin: 0 auto 15px;
  border: 20px groove black;
  box-shadow: 0 0 10px rgba(0,0,0,0.15);
}

.name {
  text-align: center;
  font-size: 1.5em;
  font-weight: 600;
}
.role {
  text-align: center;
  color: #555;
  font-size: 0.95em;
  margin-bottom: 20px;
}

.sidebar h2 {
  font-size: 1em;
  color: #2c3e50;
  border-bottom: 2px solid #2c3e50;
  padding-bottom: 5px;
  margin: 15px 0 8px;
  text-transform: uppercase;
}

.sidebar p, .sidebar li {
  font-size: 0.9em;
  line-height: 1.5;
  color: #333;
}

.sidebar ul {
  list-style: none;
  padding-left: 10px;
}

.sidebar li::before {
  color: #2c3e50;
}

.main-content {
  width: 70%;
  padding: 40px;
  border-left: 3px solid #e6f1ef;
}

.main-content h2 {
  font-size: 1.3em;
  color: #2c3e50;
  border-bottom: 2px solid #c4d7d1;
  padding-bottom: 5px;
  margin-bottom: 15px;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 1px;
}

.item {
  margin-bottom: 22px;
}

.item h3 {
  font-size: 1em;
  color: #34495e;
}

.item p {
  font-size: 0.9em;
  color: #555;
}

ul {
  margin-top: 8px;
  padding-left: 15px;
}

@media (max-width: 768px) {
  .resume-container {
    flex-direction: column;
  }
  .sidebar, .main-content {
    width: 100%;
  }
  .sidebar {
    text-align: center;
  }
}
