

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 50px;
  border-bottom: 1px solid #eee;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-box {
  width: 12px;
  height: 12px;
  background: blue;
  display: inline-block;
}
.name {
  font-weight: 800;
  font-size: 20px;
}

.title {
  font-weight: 400;
  font-size: 16px;
  color: #333;
}
nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #111;
  font-weight: 500;
}

nav a:hover {
  color: blue;
}
.resume-section {
  padding: 50px 20px;
  background: #f9f9f9;
  text-align: center;
}

.resume-section h2 {
  font-size: 32px;
  margin-bottom: 30px;
}

.resume-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.resume-content h3 {
  margin-top: 30px;
  font-size: 20px;
  color: #333;
}

.resume-content ul {
  list-style: disc;
  padding-left: 30px;
  margin-bottom: 20px;
}

.resume-content p {
  line-height: 1.6;
  margin-top: 10px;
}

.resume-download {
  margin-top: 40px;
}

.resume-download .btn {
  background-color: blue;
  color: #fff;
  padding: 10px 25px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  display: inline-block;
}

.resume-download .btn i {
  margin-right: 8px;
}

footer {
  background: #fff;
  padding: 30px 50px;
  font-size: 14px;
  border-top: 1px solid #eee;
  text-align: center;
}

.footer-info {
  display: flex;
  justify-content: center; /* căn giữa theo chiều ngang */
  text-align: center;       /* căn giữa nội dung từng cột */
  gap: 60px;                /* khoảng cách giữa các cột */
  margin-top: 20px;
  flex-wrap: wrap;
}

footer a {
  color: blue;
  text-decoration: none;
}

.socials a {
  margin: 0 5px;
}

.copyright {
  margin-top: 30px;
  font-size: 14px;
  color: #555;
}