        /* General Styles */
        body {
            font-family: 'Arial', sans-serif;
            background-color: #fff;
            margin: 0;
            padding: 20px;
            display: block;
            justify-content: center;
        }
        .container {
            max-width: 900px;
            width: 100%;
            margin: 0 auto;
        }

        
        /* Breadcrumb Navigation */
        .breadcrumb {
            font-size: 18px;
            margin-bottom: 30px;
            margin-top: 30px;
            display: block;
            align-items: left;
            color: #1565C0;
        }
        .breadcrumb a {
            text-decoration: none;
            color: #1565C0;
            font-weight: bold;
            transition: color 0.3s;
        }
        .breadcrumb a:hover {
            color: #0D47A1;
        }
        .breadcrumb i {
            margin: 0 8px;
            color: #1565C0;
        }

        /* Section Headings */
        .section-title {
            font-size: 22px;
            font-weight: bold;
            color: #1565C0;
            border-left: 5px solid #1565C0;
            padding-left: 10px;
            margin: 30px 0 10px;
        }

        /* Card-Based List */
        .card {
            background: #E3F2FD; /* Light Blue */
            padding: 15px;
            margin: 10px 0;
            border-radius: 8px;
            box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
            display: flex;
            align-items: center;
            justify-content: space-between;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border-left: 5px solid #1565C0;
        }
        .card:hover {
            transform: translateY(-3px);
            box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.15);
        }

        /* Text and Icon Wrapper */
        .text-wrapper {
            display: flex;
            align-items: center;
            flex-grow: 1;
            min-width: 0; /* Prevent text from pushing the badge */
        }

        .icon {
            font-size: 20px;
            color: #1565C0;
            margin-right: 15px;
        }
        
        .text {
            font-size: 16px;
            word-wrap: break-word;
            white-space: normal; /* Allow text to wrap */
            text-align: left;
            flex-grow: 1; /* Allows text to take available space */
        }

        /* Badge Styling */
        .badge {
            background-color: #424242; /* Dark Grey */
            color: white;
            font-size: 12px;
            padding: 5px 12px;
            border-radius: 15px;
            font-weight: bold;
            white-space: nowrap; /* Keep badge in one line */
            margin-left: 10px; /* Space between text and badge */
        }

        /* Alternating Backgrounds */
        .card:nth-child(even) {
            background-color: #BBDEFB; /* Lighter Blue */
        }

        /* Responsive Design */
        @media (max-width: 600px) {
            .card {
                display: flex;
                flex-direction: row;
                align-items: center;
                justify-content: space-between;
                flex-wrap: nowrap;
            }
            .text-wrapper {
                flex-grow: 1;
                display: flex;
                align-items: center;
                min-width: 0; /* Prevent text from pushing the badge */
            }
            .badge {
                margin-left: auto; /* Keeps badge aligned to the right */
            }
        }