/* style/phuong-thuc-thanh-toan.css */
.page-phuong-thuc-thanh-toan {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Default text color for light backgrounds */
  background-color: #ffffff; /* Default background */
}

.page-phuong-thuc-thanh-toan__container {
  max-width: 1170px;
  margin: 0 auto;
  padding: 40px 16px;
}

/* HERO Section */
.page-phuong-thuc-thanh-toan__hero-section {
  padding-top: 10px; /* Small top padding, assuming body has header offset */
  padding-bottom: 60px;
  background-color: #f8f8f8;
}

.page-phuong-thuc-thanh-toan__hero-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: 1170px;
  margin: 0 auto;
  padding: 40px 16px;
}

.page-phuong-thuc-thanh-toan__hero-content {
  flex: 1 1 45%;
  min-width: 300px;
  color: #333333;
}

.page-phuong-thuc-thanh-toan__main-title {
  font-size: 2.5em; /* Use clamp if specific font-size is required */
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #017439;
  max-width: 600px;
}

.page-phuong-thuc-thanh-toan__hero-description {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #555555;
}

.page-phuong-thuc-thanh-toan__cta-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.page-phuong-thuc-thanh-toan__btn-primary,
.page-phuong-thuc-thanh-toan__btn-secondary {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  text-align: center;
  box-sizing: border-box;
  max-width: 100%; /* Ensure responsiveness */
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word;
}

.page-phuong-thuc-thanh-toan__btn-primary {
  background-color: #C30808; /* Custom color for register/login */
  color: #FFFF00; /* Custom color for register/login font */
  border: 2px solid #C30808;
}

.page-phuong-thuc-thanh-toan__btn-primary:hover {
  background-color: #a00606;
  border-color: #a00606;
}

.page-phuong-thuc-thanh-toan__btn-secondary {
  background-color: #017439;
  color: #ffffff;
  border: 2px solid #017439;
}

.page-phuong-thuc-thanh-toan__btn-secondary:hover {
  background-color: #005a2e;
  border-color: #005a2e;
}

.page-phuong-thuc-thanh-toan__hero-image {
  flex: 1 1 45%;
  min-width: 300px;
  text-align: center;
}

.page-phuong-thuc-thanh-toan__hero-side-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
}

/* Section Titles & Descriptions */
.page-phuong-thuc-thanh-toan__section-title {
  font-size: 2em;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  color: #017439;
}

.page-phuong-thuc-thanh-toan__section-description {
  font-size: 1.1em;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #555555;
}

/* Method Grid Section */
.page-phuong-thuc-thanh-toan__methods-overview-section {
  padding: 60px 0;
  background-color: #fefefe;
}

.page-phuong-thuc-thanh-toan__method-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}