    .course-card {
        background-color: #d8e5fa;
        border-radius: 8px;
        padding: 12px;
        margin-bottom: 15px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }

    .chapter-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
        margin: 12px 0;
    }

    .chapter-card {
        background: #fff;
        border-radius: 8px;
        padding: 15px;
        text-align: center;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
        transition: transform 0.2s ease;
    }

    .chapter-card:hover {
        cursor: pointer;
        background: #e3f2fd;
        transform: scale(1.05);
    }

    .chapter-card i {
        font-size: 45px;
        margin-bottom: 8px;
        color: #007bff;
    }
	.chapter-card p {
        font-weight:700;        
        
    }

    .course-title {
        color: #333;
        font-size: 1.8em;
        margin-bottom: 10px;
        font-weight: bold;
    }

    .view-course-btn, .all-chapters-btn {
        background-color: #007bff;
		font-weight:700;
        color: white;
        border: none;
        padding: 10px 15px;
        border-radius: 5px;
        cursor: pointer;
        transition: background-color 0.2s;
    }

    .view-course-btn:hover {
        background-color: #0056b3;
    }

    .all-chapters-btn {
        background-color: #28a745;
    }

    .all-chapters-btn:hover {
        background-color: #1c7c31;
    }

    .button-container {
        display: flex;
        justify-content: space-between;
        gap: 10px;
        margin-top: 20px;
    }

    a {
        text-decoration: none;
    }

    @media (max-width: 600px) {
        .chapter-grid {
            grid-template-columns: repeat(2, 1fr);
        }

        .view-course-btn, .all-chapters-btn {
            font-size: 12px;
            padding: 8px;
        }
    }