.hero {
  background: linear-gradient(135deg, rgba(0, 86, 179, 0.9) 0%, rgba(0, 168, 150, 0.7) 100%),
    url("../images/bribery-bg.jpg") center/cover no-repeat;
  color: white;
  padding: 120px 2rem 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path fill="rgba(255,255,255,0.05)" d="M0,0 L100,0 L100,100 L0,100 Z" /><path fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5" d="M0,50 Q25,25 50,50 T100,50" /></svg>');
  background-size: cover;
  opacity: 0.8;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero h2 {
  font-size: 2rem;
  font-weight: 300;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.hero p {
  font-size: 1.25rem;
  max-width: 800px;
  margin: 0 auto 3rem;
  opacity: 0.85;
}

.breadcumb-area.bribery {
  background: linear-gradient(135deg, rgba(0, 86, 179, 0.9) 0%, rgba(0, 168, 150, 0.7) 100%),
    url("../image/bribery-bg.jpg") center/cover no-repeat;
}
.bribery-policy .policy-article {
  max-width: 800px;
  margin: 0 auto;
}
.bribery-policy .policy-article h3 {
  font-size: 1.8rem;
  color: var(--secondary);
  margin: 40px 0 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--light);
}
.bribery-policy .policy-article p {
  margin-bottom: 20px;
  color: #555;
  font-size: 1.1rem;
  line-height: 1.8;
}
.bribery-policy .policy-article ul {
  margin-bottom: 30px;
  padding-left: 20px;
}
.bribery-policy .policy-article li {
  margin-bottom: 10px;
  color: #555;
}

.bribery-report {
  background: var(--light);
  text-align: center;
}
.bribery-report .report-box {
  max-width: 600px;
  margin: 0 auto;
  background: white;
  border-radius: 15px;
  padding: 50px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border-top: 5px solid var(--integrity-red);
}
.bribery-report .report-icon {
  width: 80px;
  height: 80px;
  background: rgba(217, 83, 79, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  font-size: 2rem;
  color: var(--integrity-red);
}
.bribery-report .report-box h3 {
  font-size: 1.8rem;
  color: var(--integrity-red);
  margin-bottom: 20px;
}
.bribery-report .report-box p {
  color: #666;
  margin-bottom: 30px;
}
.bribery-report .report-email {
  display: inline-block;
  background: rgba(217, 83, 79, 0.1);
  color: var(--integrity-red);
  padding: 15px 30px;
  border-radius: 30px;
  font-size: 1.2rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
}
.bribery-report .report-email:hover {
  background: rgba(217, 83, 79, 0.2);
  transform: translateY(-3px);
}

/* 承诺部分 */
.bribery-commitment .commitment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-top: 50px;
}
.bribery-commitment .commitment-card {
  background: var(--light);
  border-radius: 15px;
  padding: 40px;
  text-align: center;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
  border-top: 4px solid var(--secondary);
}
.bribery-commitment .commitment-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}
.bribery-commitment .commitment-icon {
  font-size: 2.5rem;
  color: var(--secondary);
  margin-bottom: 25px;
}
.bribery-commitment .commitment-card h4 {
  font-size: 1.5rem;
  color: var(--secondary);
  margin-bottom: 15px;
}
