/* style/partners.css */
/* 
  Màu sắc chính: #8B0000 (Đỏ đậm)
  Màu sắc phụ: #FFD700 (Vàng kim)
  Màu nền body: #121212 (Đen xám đậm) - Do đó, màu chữ chính sẽ là #ffffff để đảm bảo độ tương phản.
*/

.page-partners {
  font-family: 'Arial', sans-serif;
  color: #ffffff; /* Mặc định chữ màu trắng cho nền body tối */
  background-color: #121212; /* Nền body đã được shared.css định nghĩa, đây là để đảm bảo màu chữ phù hợp */
  line-height: 1.6;
  font-size: 16px;
}

.page-partners__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-partners__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Tiêu đề chính dùng màu vàng kim */
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.page-partners__section-description {
  font-size: 1.1em;
  color: #f0f0f0;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px auto;
  line-height: 1.8;
}

/* Hero Section */
.page-partners__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  padding-top: var(--header-offset, 120px); /* Đảm bảo không bị header che */
  background-color: #8B0000; /* Màu nền chính */
  overflow: hidden;
}