body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 2rem auto;
  max-width: 800px;
  background-color: #f7f9fb;
  color: #333;
  padding: 2rem;
  box-shadow: 0 0 20px rgba(0,0,0,1);
  border-radius: 10px;
}
h1 {
  text-align: center;
  font-size: 2.5rem;
<!--  color: #1a73e8;-->
  color: #000000;
  margin-bottom: 0.2rem;
}
.contact {
  text-align: center;
  font-size: 0.95rem;
  margin-bottom: 2rem;
  color: #555;
}
h2 {
  color: #1a1a1a;
  border-bottom: 2px solid #1a73e8;
  padding-bottom: 0.2rem;
  margin-top: 2rem;
}
ul {
  padding-left: 1.2rem;
}
ul li {
  margin-bottom: 0.5rem;
}
p {
  margin: 0.4rem 0;
}
strong {
  color: #333;
}
/* Download Button */
.download-button {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  padding: 0.8rem 1.5rem;
  font-size: 1.1rem;
  background-color: #1a73e8;
  color: white;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: background-color 0.3s, transform 0.2s;
  z-index: 1000;
}
.download-button:hover {
  background-color: #1558b0;
  transform: scale(1.05);
}
.about {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-top: 1rem;
  text-align: center;
  color: #444;
}
.resume-link {
  display: block;
  text-align: center;
  margin-top: 2rem;
  font-size: 1.1rem;
  color: #1a73e8;
}
.resume-link a {
  text-decoration: none;
  color: #1a73e8;
  font-weight: bold;
}
.resume-link a:hover {
  text-decoration: underline;
}
