body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #ffffff;
  color: #333;
}

header,
#header,
.header-two {
  background-color: #ffba00 !important;
}

header {
  background-color: #ffffff;
  padding: 40px;
  text-align: center;
  border-bottom: 5px solid #ffb600;
}

header h1 {
  color: #ffcc00;
  margin: 0;
}

header h2 {
  color: #ffb600;
}

header h3 {
  color: #663300;
}

section {
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

h2 {
  color: #ffb600;
  border-bottom: 2px solid #ffb600;
  padding-bottom: 10px;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}

th,
td {
  border: 1px solid #000;
  padding: 10px;
  text-align: left;
}

th {
  background-color: #ffb600;
  color: white;
}

ol,
ul {
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  margin: 10px 0;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
}

.project-list {
  list-style-type: decimal;
}

footer {
  background-color: #ffb600;
  color: white;
  text-align: center;
  padding: 20px;
  margin-top: 40px;
}

.project-list-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  margin-top: 24px;
}

.project-card-large {
  width: 90%;
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  padding: 24px 16px 16px 16px;
  text-align: left; /* căn lề trái toàn bộ nội dung */
}

.project-title-large {
  font-size: 1.35rem;
  font-weight: bold;
  color: #1a237e;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
  text-align: left; /* căn lề trái tên dự án */
}

.project-img-large {
  width: 100%;
  max-width: 860px;
  height: auto;
  max-height: 420px;
  object-fit: cover;
  border-radius: 10px;
  border: 1.5px solid #e0e0e0;
  background: #fafbfc;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  display: block;
  margin-left: 0; /* căn lề trái hình ảnh */
}

/* Ảnh nhà xưởng */
#nhaxuong_images {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 18px;
  align-items: flex-start;
}

.nhaxuong-img {
  width: 100%;
  max-width: 1100px;
  min-width: 320px;
  height: auto;
  max-height: 520px;
  object-fit: cover;
  border-radius: 16px;
  border: 2px solid #ffb600;
  background: #fafbfc;
  box-shadow: 0 4px 24px rgba(0,0,0,0.10);
  display: block;
  margin-left: 0;
  margin-bottom: 0;
  margin-top: 0;
  transition: box-shadow 0.2s, transform 0.2s;
}

.nhaxuong-img:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  transform: scale(1.02);
}

/* Responsive cho mobile */
@media (max-width: 900px) {
  .nhaxuong-img {
    max-width: 100%;
    max-height: 320px;
    min-width: 0;
  }
}
@media (max-width: 600px) {
  #nhaxuong_images {
    gap: 12px;
  }
  .nhaxuong-img {
    max-width: 100%;
    max-height: 180px;
    min-width: 0;
    border-radius: 10px;
  }
}