    /* Page-specific styles for the About page */
    .hero-section-about {
        /* Using a different class name to avoid conflicts with other hero sections */
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        padding: 60px 0;
    }
    .content-section {
        padding: 60px 0;
    }
    .card {
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
        border: none;
        margin-bottom: 20px;
        height: 100%; /* Ensures cards in a row have the same height */
    }
    .list-unstyled li {
        padding: 8px 0;
        font-size: 1.1rem;
        color: #333;
    }
    .list-unstyled li::before {
        content: '✓';
        color: #28a745; /* A nice green checkmark color */
        font-weight: bold;
        display: inline-block;
        width: 1.5em;
        margin-left: -1.5em;
    }
