.page-index-brand-advantages {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  background-color: #f8f8f8;
}

.page-index-brand-advantages .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.page-index-brand-advantages .hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  background-color: var(--primary-color); /* Sử dụng màu chủ đạo */
  color: #ffffff;
}

.page-index-brand-advantages .hero-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.page-index-brand-advantages .hero-image {
  width: 100%;
  margin-bottom: 30px;
}

.page-index-brand-advantages .hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-index-brand-advantages .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
}

.page-index-brand-advantages .hero-content h1 {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: var(--secondary-color);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}

.page-index-brand-advantages .hero-content p {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 30px auto;
  color: #e0e0e0;
}

.page-index-brand-advantages .cta-button {
  display: inline-block;
  padding: 18px 45px;
  background: var(--secondary-color);
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.3em;
  font-weight: bold;
  margin-top: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  border: 2px solid transparent;
}

.page-index-brand-advantages .cta-button:hover {
  background: #ffc400; /* Màu vàng nhạt hơn */
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  border-color: #ffffff;
}

/* Advantages Section */
.page-index-brand-advantages .advantages-section {
  padding: 80px 0;
  background-color: #ffffff;
}

.page-index-brand-advantages .advantages-section h2 {
  font-size: 2.8em;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 20px;
  position: relative;
}

.page-index-brand-advantages .advantages-section h2::after {
  content: '';
  width: 80px;
  height: 4px;
  background-color: var(--secondary-color);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -10px;
  border-radius: 2px;
}

.page-index-brand-advantages .advantages-section p {
  text-align: center;
  font-size: 1.1em;
  max-width: 900px;
  margin: 0 auto 60px auto;
  color: #555;
}

.page-index-brand-advantages .advantage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.page-index-brand-advantages .advantage-item {
  background-color: #f0f5f9;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-index-brand-advantages .advantage-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-index-brand-advantages .advantage-icon {
  width: 150px; /* Tăng kích thước ảnh */
  height: 150px;
  object-fit: contain;
  margin-bottom: 25px;
  border-radius: 50%;
  background-color: var(--primary-color);
  padding: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-index-brand-advantages .advantage-item h3 {
  font-size: 1.8em;
  color: var(--primary-color);
  margin-bottom: 15px;
  font-weight: bold;
}

.page-index-brand-advantages .advantage-item p {
  font-size: 1em;
  color: #666;
  text-align: left;
  flex-grow: 1;
}

.page-index-brand-advantages .button-link {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 25px;
  background-color: var(--secondary-color);
  color: var(--primary-color);
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-index-brand-advantages .button-link:hover {
  background-color: #ffc400;
  transform: translateY(-2px);
}

/* CTA Banner */
.page-index-brand-advantages .cta-banner {
  background: linear-gradient(135deg, var(--primary-color), #003366);
  padding: 100px 0;
  text-align: center;
  color: #ffffff;
}

.page-index-brand-advantages .cta-banner h2 {
  font-size: 3em;
  margin-bottom: 25px;
  color: var(--secondary-color);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-index-brand-advantages .cta-banner p {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #e0e0e0;
}

.page-index-brand-advantages .cta-banner .cta-button {
  margin: 0 15px;
  padding: 18px 45px;
  font-size: 1.3em;
  border-radius: 8px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  text-decoration: none;
}

.page-index-brand-advantages .cta-banner .cta-button.primary {
  background: var(--secondary-color);
  color: var(--primary-color);
  border: 2px solid transparent;
}

.page-index-brand-advantages .cta-banner .cta-button.primary:hover {
  background: #ffc400;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  border-color: #ffffff;
}

.page-index-brand-advantages .cta-banner .cta-button.secondary {
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.page-index-brand-advantages .cta-banner .cta-button.secondary:hover {
  background: #ffffff;
  color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-index-brand-advantages .hero-content h1 {
    font-size: 2.8em;
  }
  .page-index-brand-advantages .advantages-section h2 {
    font-size: 2.4em;
  }
  .page-index-brand-advantages .advantage-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  .page-index-brand-advantages .cta-banner h2 {
    font-size: 2.5em;
  }
}

@media (max-width: 768px) {
  .page-index-brand-advantages .hero-section {
    padding: 40px 15px;
  }
  .page-index-brand-advantages .hero-content h1 {
    font-size: 2.2em;
  }
  .page-index-brand-advantages .hero-content p {
    font-size: 1em;
  }
  .page-index-brand-advantages .cta-button {
    padding: 15px 35px;
    font-size: 1.1em;
    margin-top: 20px;
  }
  .page-index-brand-advantages .advantages-section {
    padding: 60px 0;
  }
  .page-index-brand-advantages .advantages-section h2 {
    font-size: 2em;
  }
  .page-index-brand-advantages .advantages-section p {
    font-size: 0.95em;
    margin-bottom: 40px;
  }
  .page-index-brand-advantages .advantage-item {
    padding: 25px;
  }
  .page-index-brand-advantages .advantage-icon {
    width: 120px;
    height: 120px;
  }
  .page-index-brand-advantages .advantage-item h3 {
    font-size: 1.5em;
  }
  .page-index-brand-advantages .cta-banner {
    padding: 80px 0;
  }
  .page-index-brand-advantages .cta-banner h2 {
    font-size: 2em;
  }
  .page-index-brand-advantages .cta-banner p {
    font-size: 1em;
  }
  .page-index-brand-advantages .cta-banner .cta-button {
    margin: 10px;
    padding: 15px 30px;
    font-size: 1.1em;
  }
}

@media (max-width: 480px) {
  .page-index-brand-advantages .hero-content h1 {
    font-size: 1.8em;
  }
  .page-index-brand-advantages .hero-content p {
    font-size: 0.9em;
  }
  .page-index-brand-advantages .cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-index-brand-advantages .advantages-section h2 {
    font-size: 1.8em;
  }
  .page-index-brand-advantages .advantage-item h3 {
    font-size: 1.3em;
  }
  .page-index-brand-advantages .cta-banner h2 {
    font-size: 1.8em;
  }
  .page-index-brand-advantages .cta-banner .cta-button {
    display: block;
    margin: 10px auto;
    width: 80%;
  }
}

/* Variables for color scheme */
.page-index-brand-advantages {
  --primary-color: #0A2342; /* Deep Blue */
  --secondary-color: #FFD700; /* Gold */
  --text-dark: #333333;
  --text-light: #ffffff;
  --background-light: #f8f8f8;
  --background-dark: #0A2342;
}