.enhanced-content {
  font-family: "Segoe UI", sans-serif;
  color: #1f2937;
  line-height: 1.7;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}
.section-header .icon {
  width: 60px;
  margin-bottom: 10px;
}
.section-header h2 {
  font-size: 2rem;
  color: #111827;
}
.section-header p {
  color: #6b7280;
  margin-top: 8px;
}

.grid-two-column {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  align-items: center;
  margin-bottom: 40px;
}
.rounded-img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.benefit-cards {
  display: flex;
  gap: 20px;
  justify-content: space-around;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.card {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 20px;
  width: 100%;
  max-width: 280px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.03);
}
.card:hover::before {
 content: '';
  position: absolute;
  top: -5px; left: -5px; right: -5px; bottom: -5px;
  border-radius: 16px;
  background: linear-gradient(45deg, #00f0ff, #00ff85, #ff00f0, #ff6600);
  background-size: 400% 400%;
  animation: neonGlow 6s ease infinite;
  z-index: -1;
  filter: blur(8px);
	}
	.card:hover {
  transform: translateY(-8px) scale(1.05);
  border-color: #00b894;
  box-shadow: 0 12px 24px rgba(0,0,0,0.15);
  background: rgba(255,255,255,0.6);
}
.card img {
  width: 40px;
  margin-bottom: 10px;
}
.card h4 {
  margin-bottom: 8px;
  color: #111827;
}

.table-area {
  margin: 40px 0;
}
.table-area table {
  width: 100%;
  border-collapse: collapse;
}
.table-area th,
.table-area td {
  padding: 12px 16px;
  border: 1px solid #d1d5db;
}
.table-area th {
  background: #f3f4f6;
  text-align: left;
}

.highlight-box {
  background: #ecfdf5;
  padding: 20px;
  border-left: 4px solid #10b981;
  border-radius: 8px;
  color: #065f46;
}
.highlight-box a {
  color: #047857;
  font-weight: 600;
  text-decoration: none;
}