/*
 * About Page Enhancements
 *
 * This stylesheet adds subtle gradients and header effects to the
 * cards and headings on the About Us page to make them feel more
 * dynamic and engaging.  It does not affect other pages.
 */

.restored-content .card {
    /* Soft gradient background from off‑white to a very pale green */
    background: linear-gradient(135deg, #ffffff 0%, #f5fbf5 100%);
    border: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border-radius: 12px;
}

.restored-content .card + .card {
    margin-top: 1.5rem;
}

.restored-content .card-body h2 {
    /* Apply a subtle outline stroke to headings by layering text shadows */
    font-weight: 700;
    position: relative;
    margin-bottom: 0.75rem;
    /* Use a dark green drop shadow to simulate a stroke */
    text-shadow: 0 2px 3px rgba(0,0,0,0.25);
}

.restored-content .card-body ul li {
    margin-bottom: 0.5rem;
}