.page-tin-tuc {
  font-family: 'Arial', sans-serif;
  color: #1F2D3D; /* Text Main */
  background-color: #F4F7FB; /* Background */
}

.page-tin-tuc__container {
  max-width: 1170px;
  margin: 0 auto;
  padding: 0 16px;
  box-sizing: border-box;
}

.page-tin-tuc__hero-section {
  padding-top: 10px; /* Small top padding as per shared.css body padding-top */
  padding-bottom: 60px;
  background-color: #F4F7FB;
  color: #1F2D3D;
}

.page-tin-tuc__hero-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  padding: 40px 0;
}

.page-tin-tuc__hero-content {
  flex: 1 1 50%;
  min-width: 300px;
  text-align: left;
}

.page-tin-tuc__hero-title {
  font-size: 2.8em;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #1F2D3D;
  max-width: 600px;
}

.page-tin-tuc__hero-description {
  font-size: 1.1em;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #1F2D3D;
}

.page-tin-tuc__hero-image {
  flex: 1 1 40%;
  min-width: 300px;
  text-align: center;
}

.page-tin-tuc__hero-main-image {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-tin-tuc__cta-button {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 8px;
  font-size: 1.1em;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-tin-tuc__btn-primary {
  background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
  color: #ffffff;
  border: none;
  box-shadow: 0 4px 10px rgba(47, 107, 255, 0.3);
}

.page-tin-tuc__btn-primary:hover {
  background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%);
  box-shadow: 0 6px 15px rgba(47, 107, 255, 0.4);
}

.page-tin-tuc__btn-secondary {
  background-color: #ffffff; /* Card B G */
  color: #2F6BFF; /* Main Color */
  border: 2px solid #2F6BFF; /* Main Color */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.page-tin-tuc__btn-secondary:hover {
  background-color: #f0f4f8; /* Slightly darker than Background */
  color: #2F6BFF;
  border-color: #2F6BFF;
}

.page-tin-tuc__articles-section {
  padding: 60px 0;
  background-color: #FFFFFF; /* Card B G */
  color: #1F2D3D;
}

.page-tin-tuc__section-title {
  font-size: 2.2em;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: #000000; /* Custom Color_1776249996415 */
}

.page-tin-tuc__article-card {
  display: flex;
  background-color: #FFFFFF; /* Card B G */
  border: 1px solid #D6E2FF; /* Border */
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 40px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.page-tin-tuc__article-card:hover {
  transform: translateY(-5px);
}

.page-tin-tuc__article-image {
  width: 40%;
  height: auto;
  object-fit: cover;
  display: block;
}

.page-tin-tuc__article-content {
  flex: 1;
  padding: 30px;
}

.page-tin-tuc__article-title {
  font-size: 1.6em;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.3;
}

.page-tin-tuc__article-title a {
  color: #1F2D3D; /* Text Main */
  text-decoration: none;
}

.page-tin-tuc__article-title a:hover {
  color: #2F6BFF; /* Main Color */
  text-decoration: underline;
}

.page-tin-tuc__article-meta {
  font-size: 0.9em;
  color: #666666;
  margin-bottom: 15px;
}

.page-tin-tuc__article-description {
  font-size: 1em;
  line-height: 1.6;
  color: #333333;
  margin-bottom: 20px;
}

.page-tin-tuc__read-more {
  display: inline-block;
  color: #2F6BFF; /* Main Color */
  text-decoration: none;
  font-weight: 600;
}

.page-tin-tuc__read-more:hover {
  text-decoration: underline;
}

.page-tin-tuc__view-all-button-container {
  text-align: center;
  margin-top: 40px;
}

.page-tin-tuc__why-choose-section {
  padding: 60px 0;
  background-color: #2F6BFF; /* Main Color */
  color: #ffffff;
}

.page-tin-tuc__why-choose-section .page-tin-tuc__section-title {
  color: #ffffff;
}

.page-tin-tuc__text-block {
  font-size: 1.1em;
  line-height: 1.7;
  margin-bottom: 25px;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.page-tin-tuc__faq-section {
  padding: 60px 0;
  background-color: #F4F7FB; /* Background */
  color: #1F2D3D;
}

.page-tin-tuc__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.page-tin-tuc__faq-item {
  background-color: #FFFFFF; /* Card B G */
  border: 1px solid #D6E2FF; /* Border */
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-tin-tuc__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2em;
  font-weight: 600;
  color: #1F2D3D; /* Text Main */
  cursor: pointer;
  list-style: none;
  position: relative;
  user-select: none;
}

.page-tin-tuc__faq-question::-webkit-details-marker {
  display: none;
}

.page-tin-tuc__faq-qtext {
  flex-grow: 1;
}

.page-tin-tuc__faq-toggle {
  font-size: 1.5em;
  line-height: 1;
  margin-left: 15px;
  color: #2F6BFF; /* Main Color */
}

.page-tin-tuc__faq-item[open] .page-tin-tuc__faq-toggle {
  content: '−';
}

.page-tin-tuc__faq-answer {
  padding: 0 25px 20px;
  font-size: 1em;
  line-height: 1.6;
  color: #333333;
}

.page-tin-tuc__faq-answer p {
  margin-bottom: 0;
}

.page-tin-tuc__final-cta-section {
  padding: 60px 0;
  background-color: #2F6BFF; /* Main Color */
  color: #ffffff;
  text-align: center;
}

.page-tin-tuc__final-cta-section .page-tin-tuc__section-title {
  color: #ffffff;
}

.page-tin-tuc__final-cta-section .page-tin-tuc__text-block {
  color: #f0f4f8;
}

.page-tin-tuc img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
  .page-tin-tuc__hero-section {
    padding-top: 10px !important;
    padding-bottom: 40px;
  }

  .page-tin-tuc__hero-container {
    flex-direction: column;
    gap: 30px;
    padding: 30px 0;
  }

  .page-tin-tuc__hero-content {
    text-align: center;
    flex: 1 1 100%;
  }

  .page-tin-tuc__hero-title {
    font-size: 2em;
    margin-bottom: 15px;
  }

  .page-tin-tuc__hero-description {
    font-size: 1em;
    margin-bottom: 25px;
  }

  .page-tin-tuc__hero-image {
    flex: 1 1 100%;
  }

  .page-tin-tuc__cta-button {
    max-width: 100% !important;
    width: 100% !important;
    padding: 12px 20px;
    font-size: 1em;
  }

  .page-tin-tuc__section-title {
    font-size: 1.8em;
    margin-bottom: 30px;
  }

  .page-tin-tuc__articles-section,
  .page-tin-tuc__why-choose-section,
  .page-tin-tuc__faq-section,
  .page-tin-tuc__final-cta-section {
    padding: 40px 0;
  }

  .page-tin-tuc__article-card {
    flex-direction: column;
    margin-bottom: 30px;
  }

  .page-tin-tuc__article-image {
    width: 100%;
    height: auto;
  }

  .page-tin-tuc__article-content {
    padding: 20px;
  }

  .page-tin-tuc__article-title {
    font-size: 1.4em;
  }

  .page-tin-tuc__text-block {
    font-size: 1em;
    margin-bottom: 20px;
  }

  .page-tin-tuc__faq-question {
    font-size: 1.1em;
    padding: 18px 20px;
  }

  .page-tin-tuc__faq-answer {
    padding: 0 20px 18px;
  }

  .page-tin-tuc img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  .page-tin-tuc__container,
  .page-tin-tuc__article-card,
  .page-tin-tuc__faq-list,
  .page-tin-tuc__view-all-button-container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }

  .page-tin-tuc__view-all-button-container .page-tin-tuc__cta-button {
    max-width: 100% !important;
    width: 100% !important;
  }
}