	.atf_single_service {
		height: 100%;
		display: flex;
		flex-direction: column;
		justify-content: space-between;
	}

	.atf-service-area .row .fadeIn {
		margin-bottom: 20px !important;
	}
	
	
	.fee-chart-banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fcfaf5; /* Soft beige to match your site's background */
  border: 1px solid #c19b6c; /* Gold accent border */
  border-radius: 12px;
  padding: 40px 50px;
  margin: 50px auto; /* Centers the banner and adds space above/below */
  max-width: 1200px; /* Aligns with standard container widths */
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
  flex-wrap: wrap;
  gap: 20px;
}

.banner-content h2 {
  font-size: 32px;
  color: #1e253c; /* Dark blue matching your existing headers */
  margin-top: 0;
  margin-bottom: 12px;
  font-family: 'Playfair Display', Georgia, serif; /* Elegant serif font */
  font-weight: 600;
}

.banner-content p {
  font-size: 16px;
  color: #555555;
  margin: 0;
  font-family: Arial, sans-serif;
  line-height: 1.5;
}

.banner-action .download-btn {
  display: inline-block;
  background-color: #c19b6c; /* Gold color matching your site's buttons */
  color: #ffffff;
  padding: 16px 32px;
  font-size: 16px;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  font-family: Arial, sans-serif;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.banner-action .download-btn:hover {
  background-color: #a68459; /* Slightly darker gold on hover */
  transform: translateY(-2px); /* Slight lift effect */
  box-shadow: 0 4px 12px rgba(193, 155, 108, 0.3);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .fee-chart-banner {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
  }
  
  .banner-action {
    width: 100%;
    margin-top: 10px;
  }
  
  .banner-action .download-btn {
    display: block;
    width: 100%;
    box-sizing: border-box;
  }
}