nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: #ffffff;
  padding: 10px;
}
nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
}
nav ul li {
    margin-right: 25px;
}
nav ul li a {
    font-size: 25px;
    text-decoration: none;
    color: #333;
}
nav a.current {
    font-weight: bold;
    color: red;
}

h1.lab {
    text-align: left;
    padding-left: 10px;
}

body {
  overflow-y: scroll; /* Tạo thanh cuộn dọc */
}

.welcome_image{
  max-width: 100%; /* Chiều rộng tối đa là 100% của container cha */
  height: auto; /* Chiều cao tự động điều chỉnh để giữ tỷ lệ khung hình */
}

.container_research {
  margin-top: 200px; /* Đặt margin top để tránh bị đè bởi navigation bar */
  margin-left: 250px; /* Căn lề bên trái của nội dung */
  margin-right: 250px;
  font-size: 20px; /* Tăng kích thước của văn bản trong container */
  z-index: 1; /* Đảm bảo container nằm phía dưới navigation bar */
}

footer {
    background-color: #005f5f;
    color: #ffffff;
    padding: 30px 0;
    margin-top: 50px;
}
.footer-content {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
}
.footer-column {
    flex: 1;
    margin: 0 20px;
}
.footer-column h3 {
    font-size: 20px;
    margin-bottom: 10px;
}
.footer-column p {
    font-size: 16px;
    margin: 5px 0;
}
.footer-column:nth-child(1) {
    margin-left: 250px; /* Dịch cột 1 vào giữa một chút */
}
.footer-column:nth-child(2) {
    margin-left: -100px; /* Di chuyển cột 2 sang trái */
}
.footer-column:nth-child(3) {
    margin-right: 120px; /* Dịch cột 1 vào giữa một chút */
}

/* About 1 */
.content-box {
  width: 90%;
  background-color: #cfe1f2; /* Màu xanh dương nhạt */
  padding: 20px;
  border-radius: 25px;
  margin-bottom: 25px; /* Khoảng cách dưới 20px */
}
.content-box h2 {
  color: #005a8c; /* Màu xanh dương đậm */
}
.read-more {
  text-align: right;
}
.read-more a {
  color: red; /* Màu xanh dương đậm */
  text-decoration: none;
  font-weight: bold;
}
.read-more a:hover {
  text-decoration: underline;
}
.full-width-section {
  width: 95%;
  background-color: #fff; /* Màu nền trắng */
  padding: 20px;
}
.full-width-section h2 {
  color: #005a8c; /* Màu xanh đậm */
}
.columns {
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
}
.column {
  width: 30%;
  padding: 5px;
  text-align: center;
  border-right: 3px solid #1e1212; /* Đường kẻ dọc ngăn cách */
  height: 200px; /* Chiều cao của đường kẻ */
}
.column:last-child {
  border-right: none; /* Loại bỏ đường kẻ dọc ngăn cách cho cột cuối cùng */
}
.column h3 {
  color: #0a1014; /* Màu xanh đậm */
  font-size: 30px;
  margin-bottom: 0px;
  text-align: center;
}
.column p {
  font-size: 80px; /* Tăng kích thước của số */
  color: #005a8c;
  margin-top: 20px;
}
/* About 2*/

/* Goal 1 */
.purpose {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px; /* Khoảng cách giữa các mục đích */
}

.circle_goal {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #2ecc71; /* Màu xanh lá cây */
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 30px;
}

.content_goal {
  margin-left: 20px;
  margin-right: 100px;
}

.line_goal {
  position: absolute;
  background-color: #2ecc71;
  width: 3px;
  height: 100%;
  left: 285px; /* Điểm bắt đầu của đường thẳng, tùy chỉnh để vị trí đúng giữa hình tròn */
  z-index: -1; /* Đảm bảo đường thẳng nằm dưới các phần tử khác */
}
/* Goal 2*/

/* Project 1*/
table {
    border-collapse: collapse;
    width: 100%;
  }
  th, td {
    padding: 15px;
    text-align: center;
    border-bottom: 2px solid #ddd;
  }
  th {
    background-color: #f2f2f2;
  }
  tr:hover {
    background-color: #f5f5f5;
  }
  table {
    background-color: #f9f9f9;
  }
  th {
    background-color: #eaeaea;
    color: #d21313;
    font-size: 30px;
  }
  td {
    font-size: 25px;
  }
  tr:hover {
    background-color: #f2f2f2;
  }
/* Project 1 */