p {
  text-indent: 0 !important;
}
.full-width-section {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.container-content {
  max-width: 1280px;
  margin: 0 auto;
}

.edu-card {
  background: #fff;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  position: relative;
  cursor: pointer;
}

.edu-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.12);
}

.edu-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.edu-card:hover .edu-img {
  transform: scale(1.05);
}

.edu-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  background: linear-gradient(to bottom, #ffffff, #f9fafb);
}

.edu-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1e3a8a;
  margin-bottom: 0.5rem;
  position: relative;
}

.edu-title::before {
  content: "";
  display: block;
  width: 40px;
  height: 4px;
  background-color: #facc15; /* yellow-400 */
  border-radius: 2px;
  margin-bottom: 0.5rem;
}

.edu-link {
  margin-top: auto;
  display: inline-block;
  color: #f59e0b;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border-bottom: 1px solid transparent;
}

.edu-link:hover {
  color: #d97706;
  border-bottom-color: #d97706;
}
.section-compact {
  padding-top: 24px;  /* hoặc ít hơn nữa nếu cần */
  padding-bottom: 24px;
}

.section-compact h2 {
  font-size: 1.75rem; /* tương đương text-2xl */
  margin-bottom: 12px;
}

.section-compact p {
  font-size: 0.95rem;
  line-height: 1.4; /* thay cho leading-relaxed */
  margin-bottom: 16px;
}

.section-compact a {
  padding: 6px 16px;
  font-size: 0.875rem;
}

.section-compact .highlight-item {
  margin-bottom: 12px;
}

.section-compact .highlight-item h4 {
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.section-compact .highlight-item p {
  font-size: 0.8rem;
  line-height: 1.3;
}
.section-compact {
  position: relative;
}
.section-compact::after {
  content: "";
  background-image: url('your-image.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.section-compact::after {
  content: "";
  background-image: url('your-image.jpg'); /* thay bằng đường dẫn thật */
  background-size: cover;
  background-position: center;
  opacity: 0.05; /* 👈 chỉnh mờ tại đây — càng nhỏ càng mờ */
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.full-width-section {
  position: relative;
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.full-width-section img {
  object-fit: cover;
  opacity: 0.08; /* mờ hơn một chút */
  pointer-events: none;
  z-index: 0;
}

.full-width-section .highlight {
  background-color: #fef08a; /* màu vàng nhạt */
  padding: 0 0.3em;
  border-radius: 0.3em;
}

.full-width-section .section-heading {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.2;
  color: #1e3a8a; /* text-blue-900 */
}

.full-width-section .section-subheading {
  font-size: 1.25rem;
  color: #374151; /* text-gray-700 */
  line-height: 1.75;
}

.full-width-section .feature-item {
  display: flex;
  align-items: start;
  gap: 1rem;
  font-size: 1.1rem;
  color: #374151;
  margin-bottom: 1.5rem;
}

.full-width-section .feature-item strong {
  color: #1e40af; /* text-blue-800 */
}

.full-width-section .cta-button {
  display: inline-block;
  background-color: #facc15; /* bg-yellow-400 */
  color: #1e3a8a;
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 9999px;
  transition: background-color 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.full-width-section .cta-button:hover {
  background-color: #fbbf24; /* hover:bg-yellow-500 */
}
