  /* Custom Styling */
  .treatment-section img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.treatment-card {
    text-align: center;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    margin-bottom: 30px;
    border-radius: 8px;
}

.treatment-card h3 {
    color: #28a745;
    font-weight: 600;
}

.treatment-card p {
    font-size: 1rem;
    color: #555;
}
 /* Custom styling for the button */
 .call-now-btn {
    display: inline-block;
    padding: 15px 30px;
    background-color: #28a745;
    color: white;
    font-size: 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    text-align: center;
}

.call-now-btn:hover {
    background-color: #218838;
}

.call-now-btn:active {
    background-color: #1e7e34;
}